diff --git a/.gitignore b/.gitignore index 42533eb..114eb43 100755 --- a/.gitignore +++ b/.gitignore @@ -79,6 +79,9 @@ prediction/image/**/*.pth frontend/public/hns-manual/pages/ frontend/public/hns-manual/images/ +# HNS import pipeline outputs (local, 1회성 생성물) +backend/scripts/hns-import/out/ + # Claude Code (team workflow tracked, override global gitignore) !.claude/ .claude/settings.local.json diff --git a/backend/package-lock.json b/backend/package-lock.json index 64418c7..480802a 100755 --- a/backend/package-lock.json +++ b/backend/package-lock.json @@ -22,6 +22,7 @@ "pg": "^8.19.0" }, "devDependencies": { + "@anthropic-ai/sdk": "^0.89.0", "@types/bcrypt": "^6.0.0", "@types/cookie-parser": "^1.4.10", "@types/cors": "^2.8.17", @@ -34,6 +35,37 @@ "typescript": "^5.7.3" } }, + "node_modules/@anthropic-ai/sdk": { + "version": "0.89.0", + "resolved": "https://registry.npmjs.org/@anthropic-ai/sdk/-/sdk-0.89.0.tgz", + "integrity": "sha512-nyGau0zex62EpU91hsHa0zod973YEoiMgzWZ9hC55WdiOLrE4AGpcg4wXI7lFqtvMLqMcLfewQU9sHgQB6psow==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-schema-to-ts": "^3.1.1" + }, + "bin": { + "anthropic-ai-sdk": "bin/cli" + }, + "peerDependencies": { + "zod": "^3.25.0 || ^4.0.0" + }, + "peerDependenciesMeta": { + "zod": { + "optional": true + } + } + }, + "node_modules/@babel/runtime": { + "version": "7.29.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.2.tgz", + "integrity": "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@esbuild/aix-ppc64": { "version": "0.27.3", "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.3.tgz", @@ -1689,6 +1721,20 @@ "bignumber.js": "^9.0.0" } }, + "node_modules/json-schema-to-ts": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/json-schema-to-ts/-/json-schema-to-ts-3.1.1.tgz", + "integrity": "sha512-+DWg8jCJG2TEnpy7kOm/7/AxaYoaRbjVB4LFZLySZlWn8exGs3A4OLJR966cVvU26N7X9TWxl+Jsw7dzAqKT6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.3", + "ts-algebra": "^2.0.0" + }, + "engines": { + "node": ">=16" + } + }, "node_modules/jsonwebtoken": { "version": "9.0.3", "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.3.tgz", @@ -2618,6 +2664,13 @@ "node": ">=0.6" } }, + "node_modules/ts-algebra": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ts-algebra/-/ts-algebra-2.0.0.tgz", + "integrity": "sha512-FPAhNPFMrkwz76P7cdjdmiShwMynZYN6SgOujD1urY4oNm80Ou9oMdmbR45LotcKOXoy7wSmHkRFE6Mxbrhefw==", + "dev": true, + "license": "MIT" + }, "node_modules/tsx": { "version": "4.21.0", "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.21.0.tgz", diff --git a/backend/package.json b/backend/package.json index 50ceb73..e8fd7e6 100755 --- a/backend/package.json +++ b/backend/package.json @@ -23,6 +23,7 @@ "pg": "^8.19.0" }, "devDependencies": { + "@anthropic-ai/sdk": "^0.89.0", "@types/bcrypt": "^6.0.0", "@types/cookie-parser": "^1.4.10", "@types/cors": "^2.8.17", diff --git a/backend/scripts/hns-import/README.md b/backend/scripts/hns-import/README.md new file mode 100644 index 0000000..3792279 --- /dev/null +++ b/backend/scripts/hns-import/README.md @@ -0,0 +1,140 @@ +# HNS 물질 Import 파이프라인 + +`C:\Projects\MeterialDB\유해물질 화물적부도 검색툴.xlsm` 외부 자료를 `HNS_SUBSTANCE` DB로 변환하는 1회성 파이프라인. + +## 파이프라인 구조 + +``` +[Excel xlsm] [PDF 물질정보집 (193종)] + ├─ (1) extract-excel.py (2b) extract-pdf.py + │ → out/base.json → out/pdf-data.json + └─ (2a) extract-images.py ──────────────────────────┐ + → out/images/*.png │ + ↓ │ + (3) ocr-images.ts │ + → out/ocr.json │ + ↓ ↓ + (4) merge-data.ts ←──────────────┘ + → frontend/src/data/hnsSubstanceData.json + ↓ + (5) tsx src/db/seedHns.ts + → HNS_SUBSTANCE 테이블 +``` + +**병합 우선순위**: `pdf-data.json` > `base.json` > `ocr.json` + +## 전제 조건 + +- Python 3.9+ with `openpyxl`, `PyMuPDF(fitz)` +- Node.js 20 +- `ANTHROPIC_API_KEY` 환경변수 (Claude Vision API, OCR 실행 시에만 필요) +- Excel 원본: `C:\Projects\MeterialDB\유해물질 화물적부도 검색툴.xlsm` +- PDF 원본: `C:\Projects\MeterialDB\해상화학사고_대응_물질정보집.pdf` + +## 실행 순서 + +### 1) Excel 메타 시트 파싱 + +```bash +cd backend +python scripts/hns-import/extract-excel.py +``` + +- 입력: `C:\Projects\MeterialDB\유해물질 화물적부도 검색툴.xlsm` +- 처리 시트: `화물적부도 화물코드`(1,345개), `동의어`(215개), `IBC CODE`(분류) +- 출력: `scripts/hns-import/out/base.json` + +### 2a) 이미지 225개 추출 (선택 — OCR 실행 시만 필요) + +```bash +python scripts/hns-import/extract-images.py +``` + +- 출력: `out/images/{nameKr}.png`, `out/image-map.json` + +### 2b) PDF 물질정보집 파싱 ★ 권장 + +```bash +python scripts/hns-import/extract-pdf.py +``` + +- 입력: `C:\Projects\MeterialDB\해상화학사고_대응_물질정보집.pdf` +- 해양경찰청 발행 193종, 텍스트 직접 추출 (OCR 불필요) +- 출력: `scripts/hns-import/out/pdf-data.json` + +### 3) Claude Vision OCR (선택 — pdf-data.json 없을 때 보조) + +```bash +export ANTHROPIC_API_KEY="sk-ant-..." +cd backend +npx tsx scripts/hns-import/ocr-images.ts +``` + +- 이미지 한 장당 Claude API 1회 호출, 동시 5개 병렬 +- 출력: `out/ocr.json` `{ [nameKr]: OcrResult }` + +### 4) 최종 JSON 병합 + +```bash +cd backend +npx tsx scripts/hns-import/merge-data.ts +``` + +- 입력: `out/base.json` + `out/pdf-data.json` + `out/ocr.json` (없으면 건너뜀) +- 출력: `frontend/src/data/hnsSubstanceData.json` (전량 덮어쓰기) + +### 5) DB 재시드 + +```bash +cd backend +npx tsx src/db/seedHns.ts +``` + +- 기존 `DELETE FROM HNS_SUBSTANCE` → 새 514종 INSERT + +## 빠른 재실행 (PDF 추출 → 병합 → 시드) + +```bash +cd backend +python scripts/hns-import/extract-pdf.py && \ +npx tsx scripts/hns-import/merge-data.ts && \ +npx tsx src/db/seedHns.ts +``` + +## 현재 데이터 현황 (2024-04 기준) + +| 항목 | 이전 (OCR) | 현재 (PDF) | +|------|-----------|-----------| +| 총 물질 수 | 514종 | 514종 | +| 상세정보 보유 (인화점 있음) | 152종 | 195종 | +| NFPA 코드 있음 | ~150종 | 201종 | +| CAS 번호 있음 | ~380종 | 504종 | +| 해양거동 있음 | ~0종 | 206종 | +| 한국어 유사명 있음 | ~200종 | 449종 | + +## 재실행 안내 + +- `out/` 디렉토리는 `.gitignore` 처리되어 커밋되지 않음 +- OCR 결과는 비결정적이므로 재실행 시 약간 달라질 수 있음 +- PDF 추출은 결정적(동일 입력 → 동일 출력)이므로 재실행 안전 + +## 알려진 이슈 + +### 1) PDF 매칭 실패 35종 + +PDF 국문명과 base.json 국문명이 달라 매칭되지 않는 항목이 35개 존재. +`out/pdf-unmatched.json`에서 목록 확인 가능. 해당 항목은 OCR 데이터로 보조. + +**원인:** +- 영문제품명이 국문명으로 등록된 경우 (예: `DER 383 Epoxy resin` ↔ `디이알 383`) +- 동일 CAS 충돌 (예: `컨덴세이트`와 `나프타`가 같은 CAS) +- 표기 차이 (예: `아이소파-G` ↔ `아이소파 G`) + +### 2) 2열 레이아웃 파싱 노이즈 (약 9건) + +PDF 물질특성 블록이 2열로 구성되어 있어, 일부 항목에서 비중 값이 온도값으로 오추출될 수 있음. +영향 범위 최소 (벤젠 등 9종, 값이 100 이상이면 의심). + +### 3) SEBC/CAS/UN 번호 varchar 길이 초과 + +`base.json` 생성 시 Excel에서 복수 CAS/UN 번호를 줄바꿈으로 결합해 저장하여, `HNS_SUBSTANCE` 테이블의 `VARCHAR(20)` 등 제약을 초과했음. 현재는 [`seedHns.ts`](../../../backend/src/db/seedHns.ts) 의 `firstToken()` 헬퍼로 첫 토큰만 검색 컬럼에 저장하고 원본 전체는 `DATA` JSONB에 보존. diff --git a/backend/scripts/hns-import/extract-excel.py b/backend/scripts/hns-import/extract-excel.py new file mode 100644 index 0000000..d8f30f5 --- /dev/null +++ b/backend/scripts/hns-import/extract-excel.py @@ -0,0 +1,236 @@ +"""Excel 메타 시트 → base.json 변환. + +처리 시트: +- 화물적부도 화물코드: 1,345개 기본 레코드 +- 동의어: 215개 한/영 유사명 +- IBC CODE: IMO IBC 분류 + +출력: HNSSearchSubstance 스키마(frontend/src/common/types/hns.ts)에 맞춘 JSON 배열. +""" +from __future__ import annotations + +import io +import json +import os +import re +import sys +from collections import defaultdict +from pathlib import Path + +import openpyxl + +sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8') + +SCRIPT_DIR = Path(__file__).parent.resolve() +OUT_DIR = SCRIPT_DIR / 'out' +OUT_DIR.mkdir(exist_ok=True) + +SOURCE_XLSX = Path(os.environ.get( + 'HNS_SOURCE_XLSX', + r'C:\Projects\MeterialDB\유해물질 화물적부도 검색툴.xlsm', +)) + + +def norm_key(s: str | None) -> str: + if not s: + return '' + return re.sub(r'\s+', '', str(s)).strip().lower() + + +def split_synonyms(raw: str | None) -> str: + if not raw: + return '' + # 원본은 "·" 또는 "/" 구분, 개행 포함 + parts = re.split(r'[·/\n]+', str(raw)) + cleaned = [p.strip() for p in parts if p and p.strip()] + return ' / '.join(cleaned) + + +def clean_text(v) -> str: + if v is None: + return '' + return str(v).strip() + + +def main() -> None: + print(f'[읽기] {SOURCE_XLSX}') + if not SOURCE_XLSX.exists(): + raise SystemExit(f'소스 파일 없음: {SOURCE_XLSX}') + + wb = openpyxl.load_workbook(SOURCE_XLSX, read_only=True, data_only=True, keep_vba=False) + + # ────────── 화물적부도 화물코드 ────────── + ws = wb['화물적부도 화물코드'] + rows = list(ws.iter_rows(values_only=True)) + # 헤더 row6: 연번, 약자/제품명, 영어명, 영문명 동의어, 국문명, 국문명 동의어, 주요 사용처, UN번호, CAS번호 + cargo_rows = [r for r in rows[6:] if r[0] is not None and isinstance(r[0], (int, float))] + print(f'[화물적부도] 데이터 행 {len(cargo_rows)}개') + + # ────────── 동의어 시트 ────────── + ws_syn = wb['동의어'] + syn_rows = list(ws_syn.iter_rows(values_only=True)) + # 헤더 row2: 연번, 국문명, 영문명, cas, un, 한글 유사명, 영문 유사명 + syn_map: dict[str, dict] = {} + for r in syn_rows[2:]: + if not r or r[0] is None: + continue + name_kr = clean_text(r[1]) + cas = clean_text(r[3]) + if not name_kr and not cas: + continue + key = norm_key(name_kr) or norm_key(cas) + syn_map[key] = { + 'synonymsKr': split_synonyms(r[5]) if len(r) > 5 else '', + 'synonymsEn': split_synonyms(r[6]) if len(r) > 6 else '', + } + print(f'[동의어] {len(syn_map)}개') + + # ────────── IBC CODE 시트 ────────── + ws_ibc = wb['IBC CODE'] + ibc_map: dict[str, dict] = {} + for i, r in enumerate(ws_ibc.iter_rows(values_only=True)): + if i < 2: + continue # header 2 rows + if not r or not r[0]: + continue + name_en = clean_text(r[0]) + key = norm_key(name_en) + if not key: + continue + ibc_map[key] = { + 'ibcHazard': clean_text(r[2]), # 위험성 S/P + 'ibcShipType': clean_text(r[3]), # 선박형식 + 'ibcTankType': clean_text(r[4]), # 탱크형식 + 'ibcDetection': clean_text(r[10]) if len(r) > 10 else '', # 탐지장치 + 'ibcFireFighting': clean_text(r[12]) if len(r) > 12 else '', # 화재대응 + 'ibcMinRequirement': clean_text(r[14]) if len(r) > 14 else '', # 구체적운영상 요건 + } + print(f'[IBC CODE] {len(ibc_map)}개') + + wb.close() + + # ────────── 통합 레코드 생성 ────────── + # 동일 CAS/국문명 기준으로 cargoCodes 그룹화 + groups: dict[str, list] = defaultdict(list) + for r in cargo_rows: + _, abbr, name_en, syn_en, name_kr, syn_kr, usage, un, cas = r[:9] + # 그룹 키: CAS 우선, 없으면 국문명 + cas_s = clean_text(cas) + group_key = cas_s if cas_s else norm_key(name_kr) + groups[group_key].append({ + 'abbreviation': clean_text(abbr), + 'nameKr': clean_text(name_kr), + 'nameEn': clean_text(name_en), + 'synonymsKr': split_synonyms(syn_kr), + 'synonymsEn': split_synonyms(syn_en), + 'usage': clean_text(usage), + 'unNumber': clean_text(un), + 'casNumber': cas_s, + }) + + records: list[dict] = [] + next_id = 1 + for group_key, entries in groups.items(): + # 대표 레코드: 가장 먼저 등장 (동의어 필드가 있는 걸 우선) + primary = max(entries, key=lambda e: (bool(e['synonymsKr']), bool(e['synonymsEn']), len(e['nameKr']))) + + name_kr_key = norm_key(primary['nameKr']) + name_en_key = norm_key(primary['nameEn']) + + # 동의어 병합 + syn_extra = syn_map.get(name_kr_key, {}) + synonyms_kr = ' / '.join(filter(None, [primary['synonymsKr'], syn_extra.get('synonymsKr', '')])) + synonyms_en = ' / '.join(filter(None, [primary['synonymsEn'], syn_extra.get('synonymsEn', '')])) + + # IBC 병합 (영문명 기준) + ibc = ibc_map.get(name_en_key, {}) + + # cargoCodes 집계 + cargo_codes = [ + { + 'code': e['abbreviation'], + 'name': e['nameEn'] or e['nameKr'], + 'company': '국제공통', + 'source': '적부도', + } + for e in entries + if e['abbreviation'] + ] + + record = { + 'id': next_id, + 'abbreviation': primary['abbreviation'], + 'nameKr': primary['nameKr'], + 'nameEn': primary['nameEn'], + 'synonymsKr': synonyms_kr, + 'synonymsEn': synonyms_en, + 'unNumber': primary['unNumber'], + 'casNumber': primary['casNumber'], + 'transportMethod': '', + 'sebc': '', + # 물리·화학 (OCR 단계에서 채움) + 'usage': primary['usage'], + 'state': '', + 'color': '', + 'odor': '', + 'flashPoint': '', + 'autoIgnition': '', + 'boilingPoint': '', + 'density': '', + 'solubility': '', + 'vaporPressure': '', + 'vaporDensity': '', + 'explosionRange': '', + # 위험도 + 'nfpa': {'health': 0, 'fire': 0, 'reactivity': 0, 'special': ''}, + 'hazardClass': '', + 'ergNumber': '', + 'idlh': '', + 'aegl2': '', + 'erpg2': '', + # 방제 + 'responseDistanceFire': '', + 'responseDistanceSpillDay': '', + 'responseDistanceSpillNight': '', + 'marineResponse': '', + 'ppeClose': '', + 'ppeFar': '', + # MSDS + 'msds': { + 'hazard': '', + 'firstAid': '', + 'fireFighting': '', + 'spillResponse': '', + 'exposure': '', + 'regulation': '', + }, + # IBC + 'ibcHazard': ibc.get('ibcHazard', ''), + 'ibcShipType': ibc.get('ibcShipType', ''), + 'ibcTankType': ibc.get('ibcTankType', ''), + 'ibcDetection': ibc.get('ibcDetection', ''), + 'ibcFireFighting': ibc.get('ibcFireFighting', ''), + 'ibcMinRequirement': ibc.get('ibcMinRequirement', ''), + # EmS (OCR에서 채움) + 'emsCode': '', + 'emsFire': '', + 'emsSpill': '', + 'emsFirstAid': '', + # cargoCodes / portFrequency + 'cargoCodes': cargo_codes, + 'portFrequency': [], + } + records.append(record) + next_id += 1 + + print(f'[통합] 그룹화 결과 {len(records)}종 (화물적부도 {len(cargo_rows)}행 기준)') + + # 저장 + out_path = OUT_DIR / 'base.json' + with open(out_path, 'w', encoding='utf-8') as f: + json.dump(records, f, ensure_ascii=False, indent=2) + print(f'[완료] {out_path} ({out_path.stat().st_size / 1024:.0f} KB)') + + +if __name__ == '__main__': + main() diff --git a/backend/scripts/hns-import/extract-images.py b/backend/scripts/hns-import/extract-images.py new file mode 100644 index 0000000..463e621 --- /dev/null +++ b/backend/scripts/hns-import/extract-images.py @@ -0,0 +1,170 @@ +"""물질별 시트에서 메인 카드 이미지(100KB+) 추출. + +엑셀 워크시트 → drawing → image 관계 체인을 추적해 +각 물질 시트의 핵심 이미지만 out/images/{nameKr}.png 로 저장. + +동시에 out/image-map.json 생성 (파일명 ↔ 시트명/국문명 매핑). +""" +from __future__ import annotations + +import io +import json +import os +import re +import sys +import zipfile +from pathlib import Path +from xml.etree import ElementTree as ET + +sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8') + +SCRIPT_DIR = Path(__file__).parent.resolve() +OUT_DIR = SCRIPT_DIR / 'out' +IMG_DIR = OUT_DIR / 'images' +IMG_DIR.mkdir(parents=True, exist_ok=True) + +SOURCE_XLSX = Path(os.environ.get( + 'HNS_SOURCE_XLSX', + r'C:\Projects\MeterialDB\유해물질 화물적부도 검색툴.xlsm', +)) + +NS = { + 'm': 'http://schemas.openxmlformats.org/spreadsheetml/2006/main', + 'r': 'http://schemas.openxmlformats.org/officeDocument/2006/relationships', + 'pr': 'http://schemas.openxmlformats.org/package/2006/relationships', +} + +# 메타 시트(데이터 시트)는 스킵 +SKIP_SHEETS = { + '화물적부도 화물코드', + '항구별 코드', + '동의어', + 'IBC CODE', + '경계선', +} +# 지침서 번호 시트(115~171) 패턴: 순수 숫자 +SKIP_PATTERN = re.compile(r'^\d{3}$') + +# 최소 이미지 크기 (주요 카드만 대상, 작은 아이콘 제외) +MIN_IMAGE_SIZE = 50_000 # 50 KB + + +def safe_filename(name: str) -> str: + name = name.strip().rstrip(',').strip() + name = re.sub(r'[<>:"/\\|?*]', '_', name) + return name + + +def norm_path(p: str) -> str: + return os.path.normpath(p).replace(os.sep, '/') + + +def main() -> None: + print(f'[읽기] {SOURCE_XLSX}') + if not SOURCE_XLSX.exists(): + raise SystemExit(f'소스 파일 없음: {SOURCE_XLSX}') + + image_map: dict[str, dict] = {} + saved = 0 + skipped = 0 + missing = 0 + + with zipfile.ZipFile(SOURCE_XLSX) as z: + # 1) workbook.xml → sheet 목록 + with z.open('xl/workbook.xml') as f: + wb_root = ET.parse(f).getroot() + sheets = [] + for s in wb_root.findall('m:sheets/m:sheet', NS): + sheets.append({ + 'name': s.get('name'), + 'rid': s.get('{http://schemas.openxmlformats.org/officeDocument/2006/relationships}id'), + }) + with z.open('xl/_rels/workbook.xml.rels') as f: + rels_root = ET.parse(f).getroot() + rid_target = {r.get('Id'): r.get('Target') for r in rels_root.findall('pr:Relationship', NS)} + for s in sheets: + s['target'] = rid_target.get(s['rid']) + + print(f'[시트] 총 {len(sheets)}개') + + for s in sheets: + name = s['name'] + if name in SKIP_SHEETS or SKIP_PATTERN.match(name or ''): + skipped += 1 + continue + + sheet_file = 'xl/' + s['target'] + rels_file = os.path.dirname(sheet_file) + '/_rels/' + os.path.basename(sheet_file) + '.rels' + try: + with z.open(rels_file) as f: + srels = ET.parse(f).getroot() + except KeyError: + missing += 1 + continue + + # 시트 → drawing + drawing_rel = None + for r in srels.findall('pr:Relationship', NS): + t = r.get('Target') or '' + if 'drawing' in (r.get('Type') or '').lower() and 'drawings/' in t: + drawing_rel = t + break + if not drawing_rel: + missing += 1 + continue + + drawing_path = norm_path(os.path.join(os.path.dirname(sheet_file), drawing_rel)) + drawing_rels_path = os.path.dirname(drawing_path) + '/_rels/' + os.path.basename(drawing_path) + '.rels' + try: + with z.open(drawing_rels_path) as f: + drels = ET.parse(f).getroot() + except KeyError: + missing += 1 + continue + + # drawing → images + image_paths: list[str] = [] + for r in drels.findall('pr:Relationship', NS): + t = r.get('Target') or '' + if 'image' in t.lower(): + img_path = norm_path(os.path.join(os.path.dirname(drawing_path), t)) + image_paths.append(img_path) + if not image_paths: + missing += 1 + continue + + # 가장 큰 이미지 선택 (실제 카드 이미지는 100KB+, 아이콘은 수 KB) + sized = [(z.getinfo(p).file_size, p) for p in image_paths] + sized.sort(reverse=True) + largest_size, largest_path = sized[0] + if largest_size < MIN_IMAGE_SIZE: + missing += 1 + continue + + # 저장 + safe = safe_filename(name) + ext = os.path.splitext(largest_path)[1].lower() or '.png' + out_name = f'{safe}{ext}' + out_path = IMG_DIR / out_name + with z.open(largest_path) as fin, open(out_path, 'wb') as fout: + fout.write(fin.read()) + image_map[out_name] = { + 'sheetName': name, + 'nameKr': safe, + 'source': largest_path, + 'sizeBytes': largest_size, + } + saved += 1 + if saved % 25 == 0: + print(f' {saved}개 저장 완료') + + print(f'\n[결과] 저장 {saved} / 스킵(메타) {skipped} / 이미지없음 {missing}') + + map_path = OUT_DIR / 'image-map.json' + with open(map_path, 'w', encoding='utf-8') as f: + json.dump(image_map, f, ensure_ascii=False, indent=2) + print(f'[완료] 매핑 파일: {map_path}') + + +if __name__ == '__main__': + main() diff --git a/backend/scripts/hns-import/extract-pdf.py b/backend/scripts/hns-import/extract-pdf.py new file mode 100644 index 0000000..4fe0b47 --- /dev/null +++ b/backend/scripts/hns-import/extract-pdf.py @@ -0,0 +1,707 @@ +"""PDF 물질정보집 → pdf-data.json 변환. + +원본: C:\\Projects\\MeterialDB\\해상화학사고_대응_물질정보집.pdf + 해양경찰청 발행 193종 물질 정보 + +PDF 구조: +- 페이지 1-21: 표지/머리말/목차 +- 페이지 22-407: 193종 × 2페이지 물질 카드 + - 요약 카드 (홀수 순서): 인화점·발화점·증기압·증기밀도·폭발범위·NFPA·해양거동 등 + - 상세 카드 (짝수 순서): 유사명·CAS·UN·GHS분류·물질특성·인체유해성·응급조치 +- 물질 NO(1-193) → 0-인덱스 시작 페이지: 21 + (NO-1) * 2 + +출력: out/pdf-data.json + { [nameKr]: OcrResult } — merge-data.ts 와 동일한 키 구조 +""" + +from __future__ import annotations + +import io +import json +import os +import re +import sys +from pathlib import Path + +import fitz # PyMuPDF + +sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8') + +SCRIPT_DIR = Path(__file__).parent.resolve() +OUT_DIR = SCRIPT_DIR / 'out' +OUT_DIR.mkdir(exist_ok=True) + +PDF_PATH = Path(os.environ.get( + 'HNS_PDF_PATH', + r'C:\Projects\MeterialDB\해상화학사고_대응_물질정보집.pdf', +)) + +# 전각 문자 → 반각 변환 테이블 +_FULLWIDTH = str.maketrans( + '()tC°℃ ,', + '()tC℃℃ ,', +) + + +def clean(s: str) -> str: + """텍스트 정리.""" + if not s: + return '' + s = s.translate(_FULLWIDTH) + # 온도 기호 통일: 仁/七/부/사 → ℃ (OCR 오인식) + s = re.sub(r'(?<=[0-9])\s*[仁七부사   ](?=\s|$|이|이하)', '℃', s) + s = re.sub(r'(?<=[0-9])\s*[tT](?=\s|$|이|이하)', '℃', s) + s = re.sub(r'\s+', ' ', s) + return s.strip() + + +def norm_key(s: str) -> str: + """정규화 키: 공백/특수문자 제거 + 소문자.""" + if not s: + return '' + return re.sub(r'[\s,./\-_()\[\]··]+', '', s).lower() + + +def normalize_cas(raw: str) -> str: + """CAS 번호 정규화: OCR 노이즈 제거 후 X-XX-X 형식 반환.""" + if not raw: + return '' + # 혼합물 + if '혼합물' in raw: + return '' + # 특수 대시 → - + s = raw.replace('—', '-').replace('-', '-').replace('–', '-') + # OCR 오인식: 이,이, 공백 등 → 0 + s = re.sub(r'[이oO0]', '0', s) + s = re.sub(r'["\'\s ]', '', s) # 잡자 제거 + # CAS 포맷 검증 후 반환 + m = re.match(r'^(\d{2,7}-\d{2}-\d)$', s) + if m: + return m.group(1).lstrip('0') or '0' # 앞자리 0 제거 + # 완전히 일치 안 하면 숫자+대시만 남기고 검증 + s2 = re.sub(r'[^0-9\-]', '', s) + m2 = re.match(r'^(\d{2,7}-\d{2}-\d)$', s2) + if m2: + return m2.group(1).lstrip('0') or '0' + return '' + + +def find_cas_in_text(text: str) -> str: + """텍스트에서 CAS 번호 패턴 검색.""" + # 표준 CAS 패턴: 숫자-숫자2자리-숫자1자리 + candidates = re.findall(r'\b(\d{1,7}[\-—-\s]{1,2}\d{2}[\-—-\s]{1,2}\d)\b', text) + for c in candidates: + cas = normalize_cas(c) + if cas and len(cas) >= 5: + return cas + return '' + + +def parse_nfpa(text: str) -> dict | None: + """NFPA 코드 파싱: '건강 : 3 화재 : 0 반응 : 1' 형태.""" + m = re.search(r'건강\s*[::]\s*(\d)\s*화재\s*[::]\s*(\d)\s*반응\s*[::]\s*(\d)', text) + if m: + return { + 'health': int(m.group(1)), + 'fire': int(m.group(2)), + 'reactivity': int(m.group(3)), + 'special': '', + } + # 대안 패턴: 줄바꿈 포함 + m2 = re.search(r'건강\s*[::]\s*(\d).*?화재\s*[::]\s*(\d).*?반응\s*[::]\s*(\d)', text, re.DOTALL) + if m2: + return { + 'health': int(m2.group(1)), + 'fire': int(m2.group(2)), + 'reactivity': int(m2.group(3)), + 'special': '', + } + return None + + +def extract_field_after(text: str, label: str, max_chars: int = 80) -> str: + """레이블 직후 값 추출 (단순 패턴).""" + idx = text.find(label) + if idx < 0: + return '' + snippet = text[idx + len(label): idx + len(label) + max_chars + 50] + # 첫 비공백 줄 추출 + lines = snippet.split('\n') + for line in lines: + v = clean(line) + if v and v not in (':', ':', ''): + return v[:max_chars] + return '' + + +def parse_summary_card(text: str, index_entry: dict) -> dict: + """요약 카드(첫 번째 페이지) 파싱.""" + result: dict = {} + + # 인화점 + m = re.search(r'인화점\s*\n([^\n화발증폭위※]+)', text) + if m: + val = clean(m.group(1)) + if val and '위험' not in val and len(val) < 40: + result['flashPoint'] = val + + # 발화점 + m = re.search(r'발화점\s*\n([^\n화발증폭위※인]+)', text) + if m: + val = clean(m.group(1)) + if val and len(val) < 40: + result['autoIgnition'] = val + + # 증기압 (요약 카드에서는 값이 더 명확하게 나옴) + m = re.search(r'(?:증기압|흥기압)\s*\n?([^\n증기밀도폭발인화발화]+)', text) + if m: + val = clean(m.group(1)) + # 파편화된 텍스트 제거 + if val and re.search(r'\d', val) and len(val) < 60: + result['vaporPressure'] = val + + # 증기밀도 숫자값 + m = re.search(r'증기밀도\s*\n?([0-9][^\n]{0,20})', text) + if m: + val = clean(m.group(1)) + if val and len(val) < 20: + result['vaporDensity'] = val + + # 폭발범위 (2열 레이아웃으로 값이 레이블에서 멀리 떨어질 수 있어 전문 탐색도 병행) + m = re.search(r'폭발범위\s*\n([^\n위험인화발화※]+)', text) + if m: + val = clean(m.group(1)) + if val and '%' in val and len(val) < 30: + result['explosionRange'] = val + # 2열 레이아웃 폴백: 텍스트 전체에서 "숫자~숫자%" 패턴 검색 + if not result.get('explosionRange'): + m = re.search(r'(\d+[\.,]?\d*\s*~\s*\d+[\.,]?\d*\s*%)', text) + if m: + result['explosionRange'] = clean(m.group(1)) + + # 화재시 대피거리 + m = re.search(r'화재시\s*대피거리\s*\n?([^\n]+)', text) + if m: + val = clean(m.group(1)) + if val: + result['responseDistanceFire'] = val + + # 해양거동 + m = re.search(r'해양거동\s*\n([^\n상온이격방호방제]+)', text) + if not m: + m = re.search(r'해양거동\s+([^\n]+)', text) + if m: + val = clean(m.group(1)) + if val and len(val) < 80: + result['marineResponse'] = val + + # 상온상태 + m = re.search(r'상온상태\s*\n([^\n이격방호비중색상휘발냄새]+)', text) + if m: + val = clean(m.group(1)) + if val and len(val) < 60: + result['state'] = val + + # 냄새 + m = re.search(r'냄새\s*\n([^\n이격방호색상비중상온휘발]+)', text) + if m: + val = clean(m.group(1)) + if val and len(val) < 60: + result['odor'] = val + + # 비중 + m = re.search(r'비중\s*\n[^\n]*\n([0-9][^\n]{0,25})', text) + if not m: + m = re.search(r'비중\s*\n([0-9][^\n]{0,25})', text) + if m: + val = clean(m.group(1)) + if val and len(val) < 30: + result['density'] = val + + # 색상 + m = re.search(r'색상\s*\n([^\n이격방호냄새비중상온휘발]+)', text) + if m: + val = clean(m.group(1)) + if val and len(val) < 40: + result['color'] = val + + # 이격거리 / 방호거리 거리 숫자 추출 + m_hot = re.search(r'(?:이격거리|Hot\s*Zone).*?\n([^\n방호거리]+(?:\d+m|반경[^\n]+))', text, re.IGNORECASE) + if m_hot: + result['responseDistanceSpillDay'] = clean(m_hot.group(1)) + + m_warm = re.search(r'(?:방호거리|Warm\s*Zone).*?\n([^\n이격거리]+(?:\d+m|방향[^\n]+))', text, re.IGNORECASE) + if m_warm: + result['responseDistanceSpillNight'] = clean(m_warm.group(1)) + + return result + + +def parse_detail_card(text: str) -> dict: + """상세 카드(두 번째 페이지) 파싱.""" + result: dict = {} + + # ── nameKr 헤더에서 추출 ────────────────────────────────────────── + # 형식: "001 과산화수소" or "0이 과산화수소" + first_lines = text.strip().split('\n')[:4] + for line in first_lines: + line = line.strip() + # 숫자/OCR숫자로 시작하고 뒤에 한글이 오는 패턴 + m = re.match(r'^[0-9이이아오0-9]{2,3}\s+([\w\s\-,./()()]+)$', line) + if m: + candidate = clean(m.group(1).strip()) + if candidate and re.search(r'[가-힣A-Za-z]', candidate): + result['nameKr'] = candidate + break + + # ── 분류 ────────────────────────────────────────────────────────── + m = re.search(r'(?:유해액체물질|위험물질|석유\s*및|해양환경관리법)[^\n]{0,60}', text) + if m: + result['hazardClass'] = clean(m.group(0)) + + # ── 물질요약 ─────────────────────────────────────────────────────── + # 물질요약 레이블 이후 ~ 유사명/CAS 번호 전까지 + m = re.search(r'(?:물질요약|= *닐으서|진 O야)(.*?)(?=유사명|CAS|$)', text, re.DOTALL) + if not m: + # 분류값 이후 ~ 유사명 전 + m = re.search(r'(?:유해액체물질|석유 및)[^\n]*\n(.*?)(?=유사명|CAS)', text, re.DOTALL) + if m: + summary = re.sub(r'\s+', ' ', m.group(1)).strip() + if summary and len(summary) > 15: + result['materialSummary'] = summary[:500] + + # ── 유사명 ───────────────────────────────────────────────────────── + m = re.search(r'유사명\s*\n?(.*?)(?=CAS|UN\s*번호|\d{4,7}-\d{2}-\d|분자식|$)', text, re.DOTALL) + if m: + synonyms_raw = re.sub(r'\s+', ' ', m.group(1)).strip() + # CAS 번호 형태면 제외 + if synonyms_raw and not re.match(r'^\d{4,7}-\d{2}-\d', synonyms_raw) and len(synonyms_raw) < 300: + result['synonymsKr'] = synonyms_raw + + # ── CAS 번호 ──────────────────────────────────────────────────────── + # 1순위: "CAS번호" / "CAS 번호" 직후 줄 + m = re.search(r'CAS\s*번호\s*\n\s*([^\n분자NFPA용도인화발화물질]+)', text) + if not m: + m = re.search(r'CAS\s*번호\s*([0-9][^\n분자NFPA용도인화발화물질]{4,20})', text) + if m: + cas = normalize_cas(m.group(1).strip().split()[0]) + if cas: + result['casNumber'] = cas + + # 2순위: 텍스트 전체에서 CAS 패턴 검색 + if not result.get('casNumber'): + cas = find_cas_in_text(text) + if cas: + result['casNumber'] = cas + + # ── UN 번호 ───────────────────────────────────────────────────────── + # NFPA 코드 이후 줄에 있는 4자리 숫자 + m = re.search(r'(?:UN\s*번호|UN번호)\s*\n?\s*([0-9]{3,4})', text) + if not m: + # NFPA 다음 4자리 숫자 + m = re.search(r'반응\s*[::]\s*\d\s*\n\s*([0-9]{3,4})\s*\n', text) + if m: + result['unNumber'] = m.group(1).strip() + + # ── NFPA 코드 ─────────────────────────────────────────────────────── + nfpa = parse_nfpa(text) + if nfpa: + result['nfpa'] = nfpa + + # ── 용도 ──────────────────────────────────────────────────────────── + m = re.search(r'용도\s*\n(.*?)(?=물질특성|인체\s*유해|인체유해|흡입노출|보호복|초동|$)', text, re.DOTALL) + if m: + usage = re.sub(r'\s+', ' ', m.group(1)).strip() + # GHS 마크(특수문자 블록) 제거 + usage = re.sub(r'<[^>]*>|[♦◆◇△▲▼▽★☆■□●○◐◑]+', '', usage).strip() + if usage and len(usage) < 200: + result['usage'] = usage + + # ── 물질특성 블록 ─────────────────────────────────────────────────── + props_start = text.find('물질특성') + props_end = text.find('인체 유해성') + if props_end < 0: + props_end = text.find('인체유해성') + if props_end < 0: + props_end = text.find('흡입노출') + props_text = text[props_start:props_end] if 0 <= props_start < props_end else text + + # 인화점 (상세) — 단일 알파벳(X/O 등 위험도 마크) 제외, 숫자 포함 값만 허용 + m = re.search(r'인화점\s+([^\n발화끓는수용상온]+)', props_text) + if not m: + m = re.search(r'인화점\s*\n\s*([^\n발화끓는수용상온]+)', props_text) + if m: + val = clean(m.group(1)) + if val and len(val) < 40 and (re.search(r'\d', val) or re.search(r'없음|해당없음|N/A', val)): + result['flashPoint'] = val + + # 발화점 (상세) — 숫자 포함 값만 허용 + m = re.search(r'발화점\s+([^\n인화끓는수용상온]+)', props_text) + if not m: + m = re.search(r'발화점\s*\n\s*([^\n인화끓는수용상온]+)', props_text) + if m: + val = clean(m.group(1)) + if val and len(val) < 40 and (re.search(r'\d', val) or re.search(r'없음|해당없음|N/A', val)): + result['autoIgnition'] = val + + # 끓는점 + m = re.search(r'끓는점\s+([^\n인화발화수용상온]+)', props_text) + if not m: + m = re.search(r'끓는점\s*\n\s*([^\n인화발화수용상온]+)', props_text) + if m: + val = clean(m.group(1)) + if val and len(val) < 40: + result['boilingPoint'] = val + + # 수용해도 + m = re.search(r'수용해도\s+([^\n인화발화끓는상온]+)', props_text) + if not m: + m = re.search(r'수용해도\s*\n\s*([^\n인화발화끓는상온]+)', props_text) + if m: + val = clean(m.group(1)) + if val and len(val) < 50: + result['solubility'] = val + + # 상온상태 (상세) + m = re.search(r'상온상태\s+([^\n색상냄새비중증기인화발화]+)', props_text) + if not m: + m = re.search(r'상온상태\s*\n\s*([^\n색상냄새비중증기인화발화]+)', props_text) + if m: + val = clean(m.group(1)).strip('()') + if val and len(val) < 60: + result['state'] = val + + # 색상 (상세) + m = re.search(r'색상\s+([^\n상온냄새비중증기인화발화]+)', props_text) + if not m: + m = re.search(r'색상\s*\n\s*([^\n상온냄새비중증기인화발화]+)', props_text) + if m: + val = clean(m.group(1)) + if val and len(val) < 40: + result['color'] = val + + # 냄새 (상세) + m = re.search(r'냄새\s+([^\n상온색상비중증기인화발화]+)', props_text) + if not m: + m = re.search(r'냄새\s*\n\s*([^\n상온색상비중증기인화발화]+)', props_text) + if m: + val = clean(m.group(1)) + if val and len(val) < 60: + result['odor'] = val + + # 비중 (상세) + m = re.search(r'비중\s+([0-9][^\n증기점도휘발]{0,25})', props_text) + if not m: + m = re.search(r'비중\s*\n\s*([0-9][^\n증기점도휘발]{0,25})', props_text) + if m: + val = clean(m.group(1)) + if val and len(val) < 30: + result['density'] = val + + # 증기압 (상세) + m = re.search(r'증기압\s+([^\n증기밀도점도휘발]{3,40})', props_text) + if not m: + m = re.search(r'증기압\s*\n\s*([^\n증기밀도점도휘발]{3,40})', props_text) + if m: + val = clean(m.group(1)) + if val and re.search(r'\d', val): + result['vaporPressure'] = val + + # 증기밀도 (상세) + m = re.search(r'증기밀도\s+([0-9,\.][^\n]{0,15})', props_text) + if not m: + m = re.search(r'증기밀도\s*\n\s*([0-9,\.][^\n]{0,15})', props_text) + if m: + val = clean(m.group(1)) + if val and len(val) < 20: + result['vaporDensity'] = val + + # 점도 + m = re.search(r'점도\s+([0-9][^\n]{0,25})', props_text) + if not m: + m = re.search(r'점도\s*\n\s*([0-9][^\n]{0,25})', props_text) + if m: + val = clean(m.group(1)) + if val and len(val) < 30: + result['viscosity'] = val + + # ── 인체유해성 블록 ───────────────────────────────────────────────── + hazard_start = max(text.find('인체 유해성'), text.find('인체유해성')) + if hazard_start < 0: + hazard_start = text.find('급성독성') + response_start = text.find('초동대응') + hazard_text = text[hazard_start:response_start] if 0 <= hazard_start < response_start else '' + + # IDLH + m = re.search(r'I?DLH[^\n]{0,20}\n?\s*([0-9][^\n]{0,20})', hazard_text or text) + if m: + val = clean(m.group(1)) + if val and re.search(r'\d', val): + result['idlh'] = val + + # TWA + m = re.search(r'TWA[^\n]{0,20}\n?\s*([0-9][^\n]{0,20})', hazard_text or text) + if m: + val = clean(m.group(1)) + if val and re.search(r'\d', val): + result['twa'] = val + + # ── 응급조치 ───────────────────────────────────────────────────────── + fa_start = text.find('흡입노출') + fa_end = text.find('초동대응') + if fa_start >= 0: + fa_text = text[fa_start: fa_end if fa_end > fa_start else fa_start + 600] + fa = re.sub(r'\s+', ' ', fa_text).strip() + result['msds'] = { + 'firstAid': fa[:600], + 'spillResponse': '', + 'hazard': '', + 'fireFighting': '', + 'exposure': '', + 'regulation': '', + } + + # ── 초동대응 - 이격거리/방호거리 (상세카드에서) ───────────────────── + m = re.search(r'초기\s*이격거리[^\n]{0,10}m[^\n]{0,5}\n?\s*([0-9]+)', text) + if m: + result['responseDistanceSpillDay'] = m.group(1) + 'm' + + m = re.search(r'방호거리[^\n]{0,10}m[^\n]{0,5}\n?\s*([0-9]+)', text) + if m: + result['responseDistanceSpillNight'] = m.group(1) + 'm' + + m = re.search(r'화재\s*시\s*대피거리[^\n]{0,10}m[^\n]{0,5}\n?\s*([0-9]+)', text) + if m: + result['responseDistanceFire'] = m.group(1) + 'm' + + # ── GHS 분류 ───────────────────────────────────────────────────────── + ghs_items = re.findall( + r'(?:인화성[^\n((]{2,40}|급성독성[^\n((]{2,40}|피부부식[^\n((]{2,40}|' + r'눈\s*손상[^\n((]{2,40}|발암성[^\n((]{2,40}|생식독성[^\n((]{2,40}|' + r'수생환경[^\n((]{2,40}|특정표적[^\n((]{2,40}|흡인유해[^\n((]{2,40})', + text, + ) + if ghs_items: + result['ghsClass'] = ' / '.join(clean(g) for g in ghs_items[:6]) + + return result + + +def parse_index_pages(pdf: fitz.Document) -> dict[int, dict]: + """목차 페이지(4-21)에서 NO → {nameKr, nameEn, casNumber} 매핑 구축.""" + index: dict[int, dict] = {} + + for page_idx in range(3, 21): + page = pdf[page_idx] + text = page.get_text() + lines = [ln.strip() for ln in text.split('\n') if ln.strip()] + + for i, line in enumerate(lines): + if not re.match(r'^\d{1,3}$', line): + continue + no = int(line) + if not (1 <= no <= 193): + continue + if no in index: + continue + + # 탐색 창: NO 앞 1~4줄 + cas, name_en, name_kr = '', '', '' + if i >= 1: + # CAS 줄: 숫자-숫자-숫자 패턴 (OCR 노이즈 허용) + raw_cas = lines[i - 1] + cas = normalize_cas(raw_cas) if re.match(r'^[0-9이이아oO0-9\-—-"\'\. ]{5,30}$|혼합물', raw_cas) else '' + if not cas and '혼합물' in raw_cas: + cas = '혼합물' + + if cas or '혼합물' in (lines[i - 1] if i >= 1 else ''): + if i >= 2: + name_en = lines[i - 2] + if i >= 3: + name_kr = lines[i - 3] + elif i >= 2: + # CAS가 없는 경우(매칭 실패) - 줄 이동해서 재탐색 + raw_cas2 = lines[i - 2] if i >= 2 else '' + cas = normalize_cas(raw_cas2) if re.match(r'^[0-9이이아oO0-9\-—-"\'\. ]{5,30}$|혼합물', raw_cas2) else '' + if cas or '혼합물' in raw_cas2: + name_en = lines[i - 1] if i >= 1 else '' + # name_kr는 찾기 어려움 + + if not name_kr and i >= 3: + # 이름이 공백/짧으면 더 위 줄에서 찾기 + for j in range(3, min(6, i + 1)): + cand = lines[i - j] + if re.search(r'[가-힣]', cand) and len(cand) > 1: + name_kr = cand + break + + index[no] = { + 'no': no, + 'nameKr': name_kr, + 'nameEn': name_en, + 'casNumber': cas if cas != '혼합물' else '', + } + + return index + + +def extract_name_from_summary(text: str) -> tuple[str, str]: + """요약 카드에서 nameKr, nameEn 추출.""" + name_kr, name_en = '', '' + lines = text.strip().split('\n') + + # 1~6번 줄에서 한글 이름 탐색 (헤더 "해상화학사고 대응 물질정보집" 이후) + found_header = False + for line in lines: + line = line.strip() + if not line: + continue + # 제목 줄 건너뜀 + if '해상화학사고' in line or '대응' in line or '물질정보집' in line: + found_header = True + continue + # 3자리 번호 줄 건너뜀 + if re.match(r'^\d{1,3}$', line): + continue + # 한글이 있으면 nameKr 후보 + if re.search(r'[가-힣]', line) and len(line) > 1 and '위험' not in line and '분류' not in line: + if not name_kr: + name_kr = clean(line) + + # 영문명: (영문명) 형태 + m_en = re.search(r'[((]([A-Za-z][^))]{3,60})[))]', line) + if m_en and not name_en: + name_en = clean(m_en.group(1)) + + if name_kr and name_en: + break + + return name_kr, name_en + + +def parse_substance(pdf: fitz.Document, no: int, index_entry: dict) -> dict | None: + """물질 번호 no에 해당하는 2페이지를 파싱하여 통합 레코드 반환.""" + start_idx = 21 + (no - 1) * 2 + if start_idx + 1 >= pdf.page_count: + return None + + summary_text = pdf[start_idx].get_text() + detail_text = pdf[start_idx + 1].get_text() + + summary = parse_summary_card(summary_text, index_entry) + detail = parse_detail_card(detail_text) + + # nameKr 결정 우선순위: 인덱스 > 상세카드 헤더 > 요약카드 + name_kr = index_entry.get('nameKr', '') + if not name_kr: + name_kr = detail.get('nameKr', '') + if not name_kr: + name_kr, _ = extract_name_from_summary(summary_text) + + # nameEn + name_en = index_entry.get('nameEn', '') + + # 통합: detail 우선, 없으면 summary + merged: dict = { + 'nameKr': name_kr, + 'nameEn': name_en, + } + + for key in ['casNumber', 'unNumber', 'usage', 'synonymsKr', + 'flashPoint', 'autoIgnition', 'boilingPoint', 'density', 'solubility', + 'vaporPressure', 'vaporDensity', 'volatility', 'explosionRange', + 'state', 'color', 'odor', 'viscosity', 'idlh', 'twa', + 'responseDistanceFire', 'responseDistanceSpillDay', 'responseDistanceSpillNight', + 'marineResponse', 'hazardClass', 'ghsClass', 'materialSummary', 'msds']: + detail_val = detail.get(key) + summary_val = summary.get(key) + if detail_val: + merged[key] = detail_val + elif summary_val: + merged[key] = summary_val + + # CAS: 인덱스 우선 + if index_entry.get('casNumber') and not merged.get('casNumber'): + merged['casNumber'] = index_entry['casNumber'] + + # NFPA: detail 우선 + if 'nfpa' in detail: + merged['nfpa'] = detail['nfpa'] + + if 'msds' not in merged: + merged['msds'] = { + 'firstAid': '', 'spillResponse': '', 'hazard': '', + 'fireFighting': '', 'exposure': '', 'regulation': '', + } + + merged['_no'] = no + merged['_pageIdx'] = start_idx + return merged + + +def main() -> None: + if not PDF_PATH.exists(): + raise SystemExit(f'PDF 파일 없음: {PDF_PATH}') + + print(f'[읽기] {PDF_PATH}') + pdf = fitz.open(str(PDF_PATH)) + print(f'[PDF] 총 {pdf.page_count}페이지') + + # 1. 인덱스 파싱 + print('[인덱스] 목차 페이지 파싱 중...') + index = parse_index_pages(pdf) + print(f'[인덱스] {len(index)}개 항목 발견') + + # 2. 물질 카드 파싱 + results: dict[str, dict] = {} + failed: list[int] = [] + + for no in range(1, 194): + entry = index.get(no, {'no': no, 'nameKr': '', 'nameEn': '', 'casNumber': ''}) + try: + rec = parse_substance(pdf, no, entry) + if rec: + name_kr = rec.get('nameKr', '') + if name_kr: + key = name_kr + if key in results: + key = f'{name_kr}_{no}' + results[key] = rec + else: + print(f' [경고] NO={no} nameKr 없음 - 건너뜀') + failed.append(no) + except Exception as e: + print(f' [오류] NO={no}: {e}') + failed.append(no) + + pdf.close() + + # 3. 저장 + out_path = OUT_DIR / 'pdf-data.json' + with open(out_path, 'w', encoding='utf-8') as f: + json.dump(results, f, ensure_ascii=False, indent=2) + + size_kb = out_path.stat().st_size / 1024 + print(f'\n[완료] {out_path} ({size_kb:.0f} KB, {len(results)}종)') + + if failed: + print(f'[경고] 파싱 실패 {len(failed)}종: {failed}') + + # 4. 통계 + with_flash = sum(1 for v in results.values() if v.get('flashPoint')) + with_nfpa = sum(1 for v in results.values() if v.get('nfpa')) + with_cas = sum(1 for v in results.values() if v.get('casNumber')) + with_syn = sum(1 for v in results.values() if v.get('synonymsKr')) + print(f'[통계] 인화점: {with_flash}종, NFPA: {with_nfpa}종, CAS: {with_cas}종, 유사명: {with_syn}종') + + # 5. 샘플 출력 + print('\n[샘플] 주요 항목:') + sample_keys = ['과산화수소', '나프탈렌', '벤젠', '톨루엔'] + for k in sample_keys: + if k in results: + v = results[k] + print(f' {k}: fp={v.get("flashPoint","")} nfpa={v.get("nfpa")} cas={v.get("casNumber","")}') + + +if __name__ == '__main__': + main() diff --git a/backend/scripts/hns-import/merge-batch.py b/backend/scripts/hns-import/merge-batch.py new file mode 100644 index 0000000..76b4e47 --- /dev/null +++ b/backend/scripts/hns-import/merge-batch.py @@ -0,0 +1,23 @@ +"""배치 JSON을 ocr.json에 병합.""" +import json +import sys +from pathlib import Path + +SCRIPT_DIR = Path(__file__).parent.resolve() +OUT_DIR = SCRIPT_DIR / 'out' +OCR_PATH = OUT_DIR / 'ocr.json' +BATCH_PATH = OUT_DIR / 'batch.json' + +with open(OCR_PATH, encoding='utf-8') as f: + ocr = json.load(f) +with open(BATCH_PATH, encoding='utf-8') as f: + batch = json.load(f) + +added = [k for k in batch if k not in ocr] +updated = [k for k in batch if k in ocr] +ocr.update(batch) + +with open(OCR_PATH, 'w', encoding='utf-8') as f: + json.dump(ocr, f, ensure_ascii=False, indent=2) + +print(f'merged: +{len(added)} added, ~{len(updated)} updated, total {len(ocr)}') diff --git a/backend/scripts/hns-import/merge-data.ts b/backend/scripts/hns-import/merge-data.ts new file mode 100644 index 0000000..2e957eb --- /dev/null +++ b/backend/scripts/hns-import/merge-data.ts @@ -0,0 +1,362 @@ +/** + * base.json + pdf-data.json + ocr.json → frontend/src/data/hnsSubstanceData.json + * + * 우선순위: pdf-data (PDF 텍스트 추출, 최고 정확도) > base.json > ocr.json (이미지 OCR, 낮은 정확도) + * 매칭 키 순서: + * 1. CAS 번호 (가장 신뢰할 수 있는 식별자) + * 2. 국문명(nameKr) 정규화 비교 + * 3. 동의어(synonymsKr) 정규화 비교 + */ +import { readFileSync, writeFileSync, existsSync } from 'node:fs'; +import { resolve, dirname } from 'node:path'; +import { fileURLToPath } from 'node:url'; + +const __dirname = dirname(fileURLToPath(import.meta.url)); +const OUT_DIR = resolve(__dirname, 'out'); +const BASE_PATH = resolve(OUT_DIR, 'base.json'); +const PDF_PATH = resolve(OUT_DIR, 'pdf-data.json'); +const OCR_PATH = resolve(OUT_DIR, 'ocr.json'); +const TARGET_PATH = resolve(__dirname, '../../../frontend/src/data/hnsSubstanceData.json'); + +function normalizeName(s: string | undefined): string { + if (!s) return ''; + return s + .replace(/\s+/g, '') + .replace(/[,.·/\-_()[\]()]/g, '') + .toLowerCase(); +} + +function normalizeCas(s: string | undefined): string { + if (!s) return ''; + // 앞자리 0 제거 후 정규화 + return s + .replace(/[^0-9\-]/g, '') + .replace(/^0+/, '') + .trim(); +} + +interface NfpaBlock { + health: number; + fire: number; + reactivity: number; + special: string; +} + +interface MsdsBlock { + hazard: string; + firstAid: string; + fireFighting: string; + spillResponse: string; + exposure: string; + regulation: string; +} + +interface BaseRecord { + id: number; + abbreviation: string; + nameKr: string; + nameEn: string; + synonymsEn: string; + synonymsKr: string; + unNumber: string; + casNumber: string; + transportMethod: string; + sebc: string; + usage: string; + state: string; + color: string; + odor: string; + flashPoint: string; + autoIgnition: string; + boilingPoint: string; + density: string; + solubility: string; + vaporPressure: string; + vaporDensity: string; + explosionRange: string; + nfpa: NfpaBlock; + hazardClass: string; + ergNumber: string; + idlh: string; + aegl2: string; + erpg2: string; + responseDistanceFire: string; + responseDistanceSpillDay: string; + responseDistanceSpillNight: string; + marineResponse: string; + ppeClose: string; + ppeFar: string; + msds: MsdsBlock; + ibcHazard: string; + ibcShipType: string; + ibcTankType: string; + ibcDetection: string; + ibcFireFighting: string; + ibcMinRequirement: string; + emsCode: string; + emsFire: string; + emsSpill: string; + emsFirstAid: string; + cargoCodes: Array<{ code: string; name: string; company: string; source: string }>; + portFrequency: Array<{ port: string; portCode: string; lastImport: string; frequency: string }>; +} + +interface PdfResult { + [key: string]: unknown; + casNumber?: string; + nameKr?: string; + nfpa?: Partial; + msds?: Partial; +} + +interface OcrResult { + [key: string]: unknown; +} + +function firstString(...values: Array): string { + for (const v of values) { + if (typeof v === 'string' && v.trim().length > 0) return v.trim(); + } + return ''; +} + +function pickNfpa(source: PdfResult | OcrResult): NfpaBlock | null { + const n = source.nfpa as Partial | undefined; + if (!n || typeof n !== 'object') return null; + const h = Number(n.health); + const f = Number(n.fire); + const r = Number(n.reactivity); + if ([h, f, r].some((x) => !Number.isFinite(x))) return null; + return { + health: h, + fire: f, + reactivity: r, + special: typeof n.special === 'string' ? n.special : '', + }; +} + +function pickMsds( + pdf: PdfResult | undefined, + ocr: OcrResult | undefined, + base: MsdsBlock, +): MsdsBlock { + const p = (pdf?.msds ?? {}) as Partial; + const o = (ocr?.msds ?? {}) as Partial; + return { + hazard: firstString(base.hazard, p.hazard, o.hazard), + firstAid: firstString(base.firstAid, p.firstAid, o.firstAid), + fireFighting: firstString(base.fireFighting, p.fireFighting, o.fireFighting), + spillResponse: firstString(base.spillResponse, p.spillResponse, o.spillResponse), + exposure: firstString(base.exposure, p.exposure, o.exposure), + regulation: firstString(base.regulation, p.regulation, o.regulation), + }; +} + +function merge( + base: BaseRecord, + pdf: PdfResult | undefined, + ocr: OcrResult | undefined, +): BaseRecord { + const nfpaFromPdf = pdf ? pickNfpa(pdf) : null; + const nfpaFromOcr = ocr ? pickNfpa(ocr) : null; + // pdf NFPA 우선, 없으면 ocr, 없으면 base + const nfpa = nfpaFromPdf ?? nfpaFromOcr ?? base.nfpa; + + return { + ...base, + // pdf > base > ocr 우선순위 + unNumber: firstString(pdf?.unNumber, base.unNumber, ocr?.unNumber), + casNumber: firstString(pdf?.casNumber, base.casNumber, ocr?.casNumber), + synonymsKr: firstString(pdf?.synonymsKr, base.synonymsKr, ocr?.synonymsKr), + transportMethod: firstString(base.transportMethod, pdf?.transportMethod, ocr?.transportMethod), + sebc: firstString(base.sebc, pdf?.sebc, ocr?.sebc), + usage: firstString(pdf?.usage, base.usage, ocr?.usage), + state: firstString(pdf?.state, base.state, ocr?.state), + color: firstString(pdf?.color, base.color, ocr?.color), + odor: firstString(pdf?.odor, base.odor, ocr?.odor), + flashPoint: firstString(pdf?.flashPoint, base.flashPoint, ocr?.flashPoint), + autoIgnition: firstString(pdf?.autoIgnition, base.autoIgnition, ocr?.autoIgnition), + boilingPoint: firstString(pdf?.boilingPoint, base.boilingPoint, ocr?.boilingPoint), + density: firstString(pdf?.density, base.density, ocr?.density), + solubility: firstString(pdf?.solubility, base.solubility, ocr?.solubility), + vaporPressure: firstString(pdf?.vaporPressure, base.vaporPressure, ocr?.vaporPressure), + vaporDensity: firstString(pdf?.vaporDensity, base.vaporDensity, ocr?.vaporDensity), + explosionRange: firstString(pdf?.explosionRange, base.explosionRange, ocr?.explosionRange), + nfpa, + hazardClass: firstString(pdf?.hazardClass, base.hazardClass, ocr?.hazardClass), + ergNumber: firstString(base.ergNumber, pdf?.ergNumber, ocr?.ergNumber), + idlh: firstString(pdf?.idlh, base.idlh, ocr?.idlh), + aegl2: firstString(base.aegl2, pdf?.aegl2, ocr?.aegl2), + erpg2: firstString(base.erpg2, pdf?.erpg2, ocr?.erpg2), + responseDistanceFire: firstString(pdf?.responseDistanceFire, base.responseDistanceFire, ocr?.responseDistanceFire), + responseDistanceSpillDay: firstString(pdf?.responseDistanceSpillDay, base.responseDistanceSpillDay, ocr?.responseDistanceSpillDay), + responseDistanceSpillNight: firstString(pdf?.responseDistanceSpillNight, base.responseDistanceSpillNight, ocr?.responseDistanceSpillNight), + marineResponse: firstString(pdf?.marineResponse, base.marineResponse, ocr?.marineResponse), + ppeClose: firstString(base.ppeClose, pdf?.ppeClose, ocr?.ppeClose), + ppeFar: firstString(base.ppeFar, pdf?.ppeFar, ocr?.ppeFar), + msds: pickMsds(pdf, ocr, base.msds), + emsCode: firstString(base.emsCode, pdf?.emsCode, ocr?.emsCode), + emsFire: firstString(base.emsFire, pdf?.emsFire, ocr?.emsFire), + emsSpill: firstString(base.emsSpill, pdf?.emsSpill, ocr?.emsSpill), + emsFirstAid: firstString(base.emsFirstAid, pdf?.emsFirstAid, ocr?.emsFirstAid), + }; +} + +function main() { + if (!existsSync(BASE_PATH)) { + console.error(`base.json 없음: ${BASE_PATH}`); + console.error('→ extract-excel.py 를 먼저 실행하세요.'); + process.exit(1); + } + + const base: BaseRecord[] = JSON.parse(readFileSync(BASE_PATH, 'utf-8')); + + // PDF 데이터 로드 + const pdfRaw: Record = existsSync(PDF_PATH) + ? JSON.parse(readFileSync(PDF_PATH, 'utf-8')) + : {}; + + // OCR 데이터 로드 + const ocr: Record = existsSync(OCR_PATH) + ? JSON.parse(readFileSync(OCR_PATH, 'utf-8')) + : {}; + + console.log( + `[입력] base ${base.length}종, pdf ${Object.keys(pdfRaw).length}종, ocr ${Object.keys(ocr).length}종`, + ); + + // ── PDF 인덱스 구축 ───────────────────────────────────────────────── + // 1) nameKr 정규화 인덱스 + const pdfByName = new Map(); + // 2) CAS 번호 인덱스 + const pdfByCas = new Map(); + + for (const [key, value] of Object.entries(pdfRaw)) { + const normKey = normalizeName(key); + if (normKey) pdfByName.set(normKey, value); + + const cas = normalizeCas(value.casNumber); + if (cas) { + if (!pdfByCas.has(cas)) pdfByCas.set(cas, value); + } + } + + // ── OCR 인덱스 구축 ───────────────────────────────────────────────── + const ocrByName = new Map(); + const ocrNormToOrig = new Map(); + for (const [key, value] of Object.entries(ocr)) { + const normKey = normalizeName(key); + if (normKey) { + ocrByName.set(normKey, value); + ocrNormToOrig.set(normKey, key); + } + } + + // ── 병합 ────────────────────────────────────────────────────────── + let pdfMatchedByName = 0; + let pdfMatchedByCas = 0; + let pdfMatchedBySynonym = 0; + let ocrMatched = 0; + const pdfUnmatched = new Set(Object.keys(pdfRaw)); + const ocrUnmatched = new Set(ocrByName.keys()); + + const merged = base.map((record) => { + let pdfResult: PdfResult | undefined; + let ocrResult: OcrResult | undefined; + + // ── PDF 매칭 ──────────────────────────────────────────────────── + // 1. CAS 번호 매칭 (가장 정확) + const baseCas = normalizeCas(record.casNumber); + if (baseCas) { + pdfResult = pdfByCas.get(baseCas); + if (pdfResult) { + pdfMatchedByCas++; + const origKey = pdfResult.nameKr as string | undefined; + if (origKey) pdfUnmatched.delete(origKey); + } + } + + // 2. nameKr 정규화 매칭 + if (!pdfResult) { + const normKr = normalizeName(record.nameKr); + pdfResult = pdfByName.get(normKr); + if (pdfResult) { + pdfMatchedByName++; + const origKey = pdfResult.nameKr as string | undefined; + if (origKey) pdfUnmatched.delete(origKey); + } + } + + // 3. synonymsKr 동의어 매칭 + if (!pdfResult && record.synonymsKr) { + const synonyms = record.synonymsKr.split(' / '); + for (const syn of synonyms) { + const normSyn = normalizeName(syn); + if (!normSyn) continue; + pdfResult = pdfByName.get(normSyn); + if (pdfResult) { + pdfMatchedBySynonym++; + const origKey = pdfResult.nameKr as string | undefined; + if (origKey) pdfUnmatched.delete(origKey); + break; + } + } + } + + // ── OCR 매칭 (PDF 없는 경우 보조) ──────────────────────────────── + const normKr = normalizeName(record.nameKr); + const ocrByNameResult = ocrByName.get(normKr); + if (ocrByNameResult) { + ocrResult = ocrByNameResult; + ocrMatched++; + ocrUnmatched.delete(normKr); + } + + if (!ocrResult && record.synonymsKr) { + const synonyms = record.synonymsKr.split(' / '); + for (const syn of synonyms) { + const normSyn = normalizeName(syn); + if (!normSyn) continue; + const synOcrResult = ocrByName.get(normSyn); + if (synOcrResult) { + ocrResult = synOcrResult; + ocrMatched++; + ocrUnmatched.delete(normSyn); + break; + } + } + } + + return merge(record, pdfResult, ocrResult); + }); + + // ── 통계 출력 ────────────────────────────────────────────────────── + const pdfTotal = pdfMatchedByCas + pdfMatchedByName + pdfMatchedBySynonym; + console.log( + `[PDF 매칭] 총 ${pdfTotal}종 (CAS: ${pdfMatchedByCas}, 국문명: ${pdfMatchedByName}, 동의어: ${pdfMatchedBySynonym})`, + ); + console.log(`[OCR 매칭] ${ocrMatched}종`); + + if (pdfUnmatched.size > 0) { + const unmatchedList = Array.from(pdfUnmatched).sort(); + const unmatchedPath = resolve(OUT_DIR, 'pdf-unmatched.json'); + writeFileSync( + unmatchedPath, + JSON.stringify({ count: unmatchedList.length, keys: unmatchedList }, null, 2), + 'utf-8', + ); + console.warn( + `[경고] PDF 매칭 실패 ${unmatchedList.length}개 → ${unmatchedPath}`, + ); + unmatchedList.slice(0, 10).forEach((k) => console.warn(` - ${k}`)); + if (unmatchedList.length > 10) console.warn(` ... +${unmatchedList.length - 10}`); + } + + writeFileSync(TARGET_PATH, JSON.stringify(merged, null, 2), 'utf-8'); + const sizeKb = (JSON.stringify(merged).length / 1024).toFixed(0); + console.log(`[완료] ${TARGET_PATH} (${sizeKb} KB, ${merged.length}종)`); + console.log(` 상세 정보 보유: ${merged.filter((r) => r.flashPoint).length}종`); + console.log(` NFPA 있음: ${merged.filter((r) => r.nfpa.health || r.nfpa.fire || r.nfpa.reactivity).length}종`); +} + +main(); diff --git a/backend/scripts/hns-import/ocr-claude-vision.ts b/backend/scripts/hns-import/ocr-claude-vision.ts new file mode 100644 index 0000000..c81b357 --- /dev/null +++ b/backend/scripts/hns-import/ocr-claude-vision.ts @@ -0,0 +1,300 @@ +/** + * Claude Vision API 로 HNS 카드 이미지 → 구조화 JSON 변환. + * + * 입력: out/images/*.png (222개) + * 출력: out/ocr.json { [nameKr]: Partial } + * + * 환경변수: ANTHROPIC_API_KEY + * 모델: claude-sonnet-4-5 (Vision + 비용 효율) + * 동시성: 5, 재시도 3회 + * + * 재실행 시 기존 ocr.json 의 결과는 유지하고 누락된 이미지만 처리한다. + */ +import 'dotenv/config'; +import Anthropic from '@anthropic-ai/sdk'; +import { readFileSync, readdirSync, writeFileSync, existsSync } from 'node:fs'; +import { resolve, dirname, basename, extname } from 'node:path'; +import { fileURLToPath } from 'node:url'; + +const __dirname = dirname(fileURLToPath(import.meta.url)); +const OUT_DIR = resolve(__dirname, 'out'); +const IMG_DIR = process.env.HNS_OCR_IMG_DIR + ? resolve(process.env.HNS_OCR_IMG_DIR) + : resolve(OUT_DIR, 'images'); +const OCR_PATH = process.env.HNS_OCR_OUT + ? resolve(process.env.HNS_OCR_OUT) + : resolve(OUT_DIR, 'ocr.json'); +const FAIL_PATH = process.env.HNS_OCR_FAIL + ? resolve(process.env.HNS_OCR_FAIL) + : resolve(OUT_DIR, 'ocr-failures.json'); +const OCR_LIMIT = process.env.HNS_OCR_LIMIT ? parseInt(process.env.HNS_OCR_LIMIT, 10) : undefined; +const OCR_ONLY = process.env.HNS_OCR_ONLY + ? process.env.HNS_OCR_ONLY.split(',').map((s) => s.trim()).filter(Boolean) + : undefined; + +const CONCURRENCY = 5; +const MAX_RETRIES = 3; +const MODEL = process.env.HNS_OCR_MODEL ?? 'claude-sonnet-4-5'; + +const SYSTEM_PROMPT = `당신은 한국 해양 방제용 HNS 비상대응 카드 이미지를 구조화 JSON으로 추출하는 전문 파서입니다. + +이미지는 표준 템플릿을 따르며 다음 섹션을 포함합니다: +- 상단: 국문명, 영문명 +- 물질특성: CAS번호, UN번호, 운송방법, 유사명, 특성(독성/부식성/인화성/유해성), 용도, 상태/색상/냄새, 인화점/발화점/끓는점, 용해도/증기압/증기밀도, 비중/폭발범위, NFPA 다이아몬드(건강/인화/반응), GHS 픽토그램, ERG 지침서 번호 +- 대응방법: 주요 장비(PPE 근거리/원거리), 화재 대응(EmS F-x), 해상 유출(EmS S-x), 초기이격거리, 방호활동거리 +- 인체유해성: TWA / STEL / AEGL-2 / IDLH, 흡입/피부/안구/경구 증상·응급조치 + +아래 JSON 스키마를 **엄격히** 준수하여 응답하세요. 값이 없거나 읽을 수 없는 경우 빈 문자열 "" 또는 null. +숫자는 단위 포함 원문 문자열로 유지 (예: "80℃", "2,410 mmHg (25℃)"). +NFPA 건강/인화/반응은 0~4 정수. special 은 문자열(특수 표시). + +응답은 **순수 JSON 객체만** 반환 (코드블록이나 설명문 없이). + +스키마: +{ + "transportMethod": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { "health": 0, "fire": 0, "reactivity": 0, "special": "" }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "twa": "", + "stel": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "sebc": "" +}`; + +interface OcrResult { + transportMethod?: string; + state?: string; + color?: string; + odor?: string; + flashPoint?: string; + autoIgnition?: string; + boilingPoint?: string; + density?: string; + solubility?: string; + vaporPressure?: string; + vaporDensity?: string; + explosionRange?: string; + nfpa?: { health: number; fire: number; reactivity: number; special: string }; + hazardClass?: string; + ergNumber?: string; + idlh?: string; + aegl2?: string; + erpg2?: string; + twa?: string; + stel?: string; + responseDistanceFire?: string; + responseDistanceSpillDay?: string; + responseDistanceSpillNight?: string; + marineResponse?: string; + ppeClose?: string; + ppeFar?: string; + msds?: { + hazard?: string; + firstAid?: string; + fireFighting?: string; + spillResponse?: string; + exposure?: string; + regulation?: string; + }; + emsCode?: string; + emsFire?: string; + emsSpill?: string; + emsFirstAid?: string; + sebc?: string; +} + +function loadExisting(path: string, fallback: T): T { + if (!existsSync(path)) return fallback; + try { + return JSON.parse(readFileSync(path, 'utf-8')); + } catch { + return fallback; + } +} + +function extractJson(text: string): OcrResult | null { + const cleaned = text.replace(/```json\s*/gi, '').replace(/```\s*$/g, '').trim(); + const firstBrace = cleaned.indexOf('{'); + const lastBrace = cleaned.lastIndexOf('}'); + if (firstBrace < 0 || lastBrace < 0) return null; + try { + return JSON.parse(cleaned.slice(firstBrace, lastBrace + 1)); + } catch { + return null; + } +} + +async function callVision(client: Anthropic, imagePath: string): Promise { + const imageData = readFileSync(imagePath).toString('base64'); + const ext = extname(imagePath).slice(1).toLowerCase(); + const mediaType = (ext === 'jpg' || ext === 'jpeg' ? 'image/jpeg' : 'image/png') as + | 'image/png' + | 'image/jpeg'; + + const response = await client.messages.create({ + model: MODEL, + max_tokens: 4096, + system: [ + { + type: 'text', + text: SYSTEM_PROMPT, + cache_control: { type: 'ephemeral' }, + }, + ], + messages: [ + { + role: 'user', + content: [ + { + type: 'image', + source: { type: 'base64', media_type: mediaType, data: imageData }, + }, + { + type: 'text', + text: '이 HNS 비상대응 카드 이미지에서 모든 필드를 추출해 JSON으로 반환하세요.', + }, + ], + }, + ], + }); + + const textBlock = response.content.find((b) => b.type === 'text'); + if (!textBlock || textBlock.type !== 'text') { + throw new Error('응답에 텍스트 블록 없음'); + } + const result = extractJson(textBlock.text); + if (!result) { + throw new Error(`JSON 파싱 실패: ${textBlock.text.slice(0, 200)}`); + } + return result; +} + +async function processWithRetry( + client: Anthropic, + imagePath: string, + nameKr: string, +): Promise { + let lastErr: unknown; + for (let attempt = 1; attempt <= MAX_RETRIES; attempt++) { + try { + return await callVision(client, imagePath); + } catch (err) { + lastErr = err; + const wait = 1000 * Math.pow(2, attempt - 1); + console.warn(`[${nameKr}] 시도 ${attempt} 실패, ${wait}ms 후 재시도: ${String(err).slice(0, 120)}`); + await new Promise((r) => setTimeout(r, wait)); + } + } + throw lastErr; +} + +async function runPool(items: T[], worker: (item: T, idx: number) => Promise) { + let cursor = 0; + const workers = Array.from({ length: CONCURRENCY }, async () => { + while (cursor < items.length) { + const idx = cursor++; + await worker(items[idx], idx); + } + }); + await Promise.all(workers); +} + +async function main() { + if (!process.env.ANTHROPIC_API_KEY) { + console.error('ANTHROPIC_API_KEY 환경변수가 없습니다.'); + process.exit(1); + } + const client = new Anthropic(); + + if (!existsSync(IMG_DIR)) { + console.error(`이미지 디렉토리 없음: ${IMG_DIR}`); + process.exit(1); + } + + const allImages = readdirSync(IMG_DIR).filter((f) => /\.(png|jpg|jpeg)$/i.test(f)); + const images = OCR_ONLY + ? allImages.filter((f) => OCR_ONLY.includes(basename(f, extname(f)))) + : allImages; + const existing: Record = loadExisting(OCR_PATH, {}); + const failures: Record = loadExisting(FAIL_PATH, {}); + + let pending = images.filter((f) => { + const nameKr = basename(f, extname(f)); + return !(nameKr in existing); + }); + if (OCR_LIMIT && Number.isFinite(OCR_LIMIT)) { + pending = pending.slice(0, OCR_LIMIT); + } + + console.log(`[OCR] 전체 ${allImages.length}개 중 대상 ${images.length}개, 이미 처리 ${Object.keys(existing).length}개, 이번 실행 ${pending.length}개`); + console.log(`[모델] ${MODEL}, 동시 ${CONCURRENCY}, 재시도 최대 ${MAX_RETRIES}`); + console.log(`[출력] ${OCR_PATH}`); + + let done = 0; + let failed = 0; + + await runPool(pending, async (file, idx) => { + const nameKr = basename(file, extname(file)); + const path = resolve(IMG_DIR, file); + try { + const result = await processWithRetry(client, path, nameKr); + existing[nameKr] = result; + delete failures[nameKr]; + done++; + if (done % 10 === 0 || done === pending.length) { + writeFileSync(OCR_PATH, JSON.stringify(existing, null, 2), 'utf-8'); + console.log(` 진행 ${done}/${pending.length} (실패 ${failed}) - 중간 저장`); + } + } catch (err) { + failed++; + failures[nameKr] = String(err).slice(0, 500); + console.error(`[실패] ${nameKr}: ${String(err).slice(0, 200)}`); + } + }); + + writeFileSync(OCR_PATH, JSON.stringify(existing, null, 2), 'utf-8'); + writeFileSync(FAIL_PATH, JSON.stringify(failures, null, 2), 'utf-8'); + + console.log(`\n[완료] 성공 ${Object.keys(existing).length} / 실패 ${Object.keys(failures).length}`); + console.log(` OCR 결과: ${OCR_PATH}`); + if (Object.keys(failures).length > 0) { + console.log(` 실패 목록: ${FAIL_PATH} (재실행하면 실패분만 재시도)`); + } +} + +main().catch((err) => { + console.error(err); + process.exit(1); +}); diff --git a/backend/scripts/hns-import/ocr-local.py b/backend/scripts/hns-import/ocr-local.py new file mode 100644 index 0000000..810b8fb --- /dev/null +++ b/backend/scripts/hns-import/ocr-local.py @@ -0,0 +1,324 @@ +"""로컬 EasyOCR 기반 HNS 카드 이미지 파싱. + +전용 venv(.venv)에 설치된 easyocr을 사용한다. + +1. 이미지 → EasyOCR → (bbox, text, conf) 리스트 +2. y좌표로 행 그룹화 후 각 행 내 x좌표 정렬 +3. 레이블 키워드 기반 필드 매핑 (정규식) +4. 결과를 out/ocr.json 에 누적 저장 (재실행 가능) + +실행: + cd backend/scripts/hns-import + source .venv/Scripts/activate # Windows Git Bash + python ocr-local.py [--limit N] [--only 벤젠,톨루엔,...] +""" +from __future__ import annotations + +import argparse +import io +import json +import os +import re +import sys +from pathlib import Path +from typing import Any + +sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8') + +SCRIPT_DIR = Path(__file__).parent.resolve() +OUT_DIR = SCRIPT_DIR / 'out' +IMG_DIR = OUT_DIR / 'images' +OCR_PATH_DEFAULT = OUT_DIR / 'ocr.json' +FAIL_PATH_DEFAULT = OUT_DIR / 'ocr-failures.json' + + +# ────────── 필드 레이블 패턴 (EasyOCR 오인식 변형 포함) ────────── +# 각 필드의 후보 레이블 문자열(공백 제거 후 비교). 한글 OCR이 종종 비슷한 글자로 오인식되므로 +# 대표적인 변형도 함께 등록 (예: "인화점" ↔ "인회점", "끓는점" ↔ "꿈는점" ↔ "끝는점"). +LABEL_CANDIDATES: dict[str, list[str]] = { + 'casNumber': ['CAS번호', 'CASNO', 'CAS'], + 'unNumber': ['UN번호', 'UNNO', 'UN'], + 'transportMethod': ['운송방법', '운승방벌', '운송방벌', '운송방립', '운송'], + 'usage': ['용도'], + 'state': ['성상', '상태', '형태'], + 'color': ['색상', '색'], + 'odor': ['냄새'], + 'flashPoint': ['인화점', '인회점', '인하점', '인호점'], + 'autoIgnition': ['발화점', '발회점', '발하점'], + 'boilingPoint': ['끓는점', '꿈는점', '끝는점', '끊는점'], + 'density': ['비중'], + 'solubility': ['용해도', '용해'], + 'vaporPressure': ['증기압', '증기압력'], + 'vaporDensity': ['증기밀도'], + 'explosionRange': ['폭발범위', '곡발범위', '폭범위', '폭발한계'], + 'idlh': ['IDLH'], + 'aegl2': ['AEGL-2', 'AEGL2'], + 'erpg2': ['ERPG-2', 'ERPG2'], + 'twa': ['TWA'], + 'stel': ['STEL'], + 'ergNumber': ['ERG번호', 'ERG'], + 'hazardClass': ['위험분류', '위험', '분류'], + 'synonymsKr': ['유사명'], + 'responseDistanceFire': ['대피거리', '머피거리'], + 'ppeClose': ['근거리(레벨A)', '근거리레벨A', '근거리', '레벨A'], + 'ppeFar': ['원거리(레벨C)', '원거리레벨C', '원거리', '레벨C'], + 'emsFire': ['화재(F-E)', '화재(F-C)', '화재(F-D)', '화재대응'], + 'emsSpill': ['유출(S-U)', '유출(S-O)', '유출(S-D)', '해상유출'], + 'marineResponse': ['해상대응', '해상'], +} + + +def _norm_label(s: str) -> str: + """공백/특수문자 제거 후 비교용 정규화.""" + return re.sub(r'[\s,.·()\[\]:;\'"-]+', '', s).strip() + + +LABEL_INDEX: dict[str, str] = {} +for _field, _candidates in LABEL_CANDIDATES.items(): + for _cand in _candidates: + LABEL_INDEX[_norm_label(_cand)] = _field + +# NFPA 셀 값(한 자릿수 0~4) 추출용 +NFPA_VALUE_RE = re.compile(r'^[0-4]$') + + +def group_rows(items: list[dict], y_tolerance_ratio: float = 0.6) -> list[list[dict]]: + """텍스트 조각들을 y 좌표 기준으로 행 단위로 그룹화 (글자 높이 비례 허용치).""" + if not items: + return [] + heights = [it['y1'] - it['y0'] for it in items] + median_h = sorted(heights)[len(heights) // 2] + y_tol = max(8, median_h * y_tolerance_ratio) + + sorted_items = sorted(items, key=lambda it: it['cy']) + rows: list[list[dict]] = [] + for it in sorted_items: + if rows and abs(it['cy'] - rows[-1][-1]['cy']) <= y_tol: + rows[-1].append(it) + else: + rows.append([it]) + for row in rows: + row.sort(key=lambda it: it['cx']) + return rows + + +def _match_label(text: str) -> str | None: + key = _norm_label(text) + if not key: + return None + # 정확 일치 우선 + if key in LABEL_INDEX: + return LABEL_INDEX[key] + # 접두 일치 (OCR이 뒤에 잡티를 붙이는 경우) + for cand_key, field in LABEL_INDEX.items(): + if len(cand_key) >= 2 and key.startswith(cand_key): + return field + return None + + +def parse_card(items: list[dict]) -> dict[str, Any]: + """OCR 결과 목록을 필드 dict로 변환.""" + rows = group_rows(items) + result: dict[str, Any] = {} + + # 1) 행 내 "레이블 → 값" 쌍 추출 + # 같은 행에서 레이블 바로 뒤의 첫 non-label 텍스트를 값으로 사용. + for row in rows: + # 여러 레이블이 같은 행에 있을 수 있음 (2컬럼 표 구조) + idx = 0 + while idx < len(row): + field = _match_label(row[idx]['text']) + if field: + # 다음 non-label 조각을 값으로 취함 + value_parts: list[str] = [] + j = idx + 1 + while j < len(row): + nxt = row[j] + if _match_label(nxt['text']): + break + value_parts.append(nxt['text']) + j += 1 + if value_parts and field not in result: + value = ' '.join(value_parts).strip() + if value and value not in ('-', '–', 'N/A'): + result[field] = value + idx = j + else: + idx += 1 + + # 2) NFPA 추출: "NFPA" 단어 주변의 0~4 숫자 3개 + nfpa_idx_row: int | None = None + for ri, row in enumerate(rows): + for cell in row: + if re.search(r'NFPA', cell['text']): + nfpa_idx_row = ri + break + if nfpa_idx_row is not None: + break + if nfpa_idx_row is not None: + # 해당 행 + 다음 2개 행에서 0~4 숫자 수집 + candidates: list[int] = [] + for ri in range(nfpa_idx_row, min(nfpa_idx_row + 3, len(rows))): + for cell in rows[ri]: + m = NFPA_VALUE_RE.match(cell['text'].strip()) + if m: + candidates.append(int(cell['text'].strip())) + if len(candidates) >= 3: + break + if len(candidates) >= 3: + break + if len(candidates) >= 3: + result['nfpa'] = { + 'health': candidates[0], + 'fire': candidates[1], + 'reactivity': candidates[2], + 'special': '', + } + + # 3) EmS 코드 (F-x / S-x 패턴) + all_text = ' '.join(cell['text'] for row in rows for cell in row) + f_match = re.search(r'F\s*-\s*([A-Z])', all_text) + s_match = re.search(r'S\s*-\s*([A-Z])', all_text) + if f_match or s_match: + parts = [] + if f_match: + parts.append(f'F-{f_match.group(1)}') + if s_match: + parts.append(f'S-{s_match.group(1)}') + if parts: + result['emsCode'] = ', '.join(parts) + + # 4) ERG 번호 (3자리 숫자, P 접미사 가능, "ERG" 키워드 근처) + erg_match = re.search(r'ERG[^\d]{0,10}(\d{3}P?)', all_text) + if erg_match: + result['ergNumber'] = erg_match.group(1) + + # 5) EmS F-x / S-x 코드 뒤의 본문 (생략 - 이미지 내 텍스트 밀도가 낮아 행 단위로 이미 잡힘) + + return result + + +def _preprocess_image(pil_img, upscale: float = 2.5): + """한글 OCR 정확도 향상을 위한 업스케일 + 샤프닝 + 대비 향상.""" + from PIL import Image, ImageEnhance, ImageFilter + import numpy as np + + if pil_img.mode != 'RGB': + pil_img = pil_img.convert('RGB') + + # 1) 업스케일 (LANCZOS) + w, h = pil_img.size + pil_img = pil_img.resize((int(w * upscale), int(h * upscale)), Image.LANCZOS) + + # 2) 대비 향상 + pil_img = ImageEnhance.Contrast(pil_img).enhance(1.3) + + # 3) 샤프닝 + pil_img = pil_img.filter(ImageFilter.UnsharpMask(radius=1.5, percent=150, threshold=2)) + + return np.array(pil_img) + + +def run_ocr(image_path: Path, reader, upscale: float = 2.5) -> list[dict]: + # OpenCV가 Windows에서 한글 경로를 못 읽으므로 PIL로 로드 후 전처리 + from PIL import Image + with Image.open(image_path) as pil: + img = _preprocess_image(pil, upscale=upscale) + raw = reader.readtext(img, detail=1, paragraph=False) + items: list[dict] = [] + for bbox, text, conf in raw: + if not text or not str(text).strip(): + continue + xs = [p[0] for p in bbox] + ys = [p[1] for p in bbox] + items.append({ + 'text': str(text).strip(), + 'cx': sum(xs) / 4.0, + 'cy': sum(ys) / 4.0, + 'x0': min(xs), + 'x1': max(xs), + 'y0': min(ys), + 'y1': max(ys), + 'conf': float(conf), + }) + return items + + +def load_json(path: Path, fallback): + if not path.exists(): + return fallback + try: + return json.loads(path.read_text(encoding='utf-8')) + except Exception: + return fallback + + +def main() -> None: + parser = argparse.ArgumentParser() + parser.add_argument('--limit', type=int, default=None) + parser.add_argument('--only', type=str, default=None, + help='파이프(|)로 구분된 물질명 리스트') + parser.add_argument('--img-dir', type=Path, default=IMG_DIR) + parser.add_argument('--out', type=Path, default=OCR_PATH_DEFAULT) + parser.add_argument('--fail', type=Path, default=FAIL_PATH_DEFAULT) + parser.add_argument('--debug', action='store_true', + help='파싱 중간 결과(row 단위) 함께 출력') + args = parser.parse_args() + + import easyocr # noqa: WPS433 + + print('[로딩] EasyOCR 모델 (ko + en)... (최초 실행 시 수 분 소요)') + reader = easyocr.Reader(['ko', 'en'], gpu=False, verbose=False) + print('[로딩] 완료') + + images = sorted([p for p in args.img_dir.iterdir() if p.suffix.lower() in {'.png', '.jpg', '.jpeg'}]) + if args.only: + only_set = {s.strip() for s in args.only.split('|') if s.strip()} + images = [p for p in images if p.stem in only_set] + + existing: dict[str, Any] = load_json(args.out, {}) + failures: dict[str, str] = load_json(args.fail, {}) + + pending = [p for p in images if p.stem not in existing] + if args.limit: + pending = pending[: args.limit] + + print(f'[대상] {len(images)}개 중 대기 {len(pending)}개, 이미 처리 {len(existing)}개') + + ok = 0 + fail = 0 + for i, path in enumerate(pending, start=1): + name = path.stem + try: + items = run_ocr(path, reader) + parsed = parse_card(items) + if args.debug: + print(f'\n--- {name} (텍스트 {len(items)}개) ---') + for row in group_rows(items): + print(' |', ' │ '.join(f'{c["text"]}' for c in row)) + print(f' → parsed: {parsed}') + existing[name] = parsed + if name in failures: + del failures[name] + ok += 1 + except Exception as e: # noqa: BLE001 + failures[name] = f'{type(e).__name__}: {e}'[:500] + fail += 1 + print(f'[실패] {name}: {e}') + + if i % 10 == 0 or i == len(pending): + args.out.write_text(json.dumps(existing, ensure_ascii=False, indent=2), encoding='utf-8') + args.fail.write_text(json.dumps(failures, ensure_ascii=False, indent=2), encoding='utf-8') + print(f' 진행 {i}/{len(pending)} (성공 {ok}, 실패 {fail}) - 중간 저장') + + args.out.write_text(json.dumps(existing, ensure_ascii=False, indent=2), encoding='utf-8') + args.fail.write_text(json.dumps(failures, ensure_ascii=False, indent=2), encoding='utf-8') + + print(f'\n[완료] 성공 {ok} / 실패 {fail}') + print(f' 결과: {args.out}') + if failures: + print(f' 실패 목록: {args.fail}') + + +if __name__ == '__main__': + main() diff --git a/backend/scripts/hns-import/requirements.txt b/backend/scripts/hns-import/requirements.txt new file mode 100644 index 0000000..32e4650 --- /dev/null +++ b/backend/scripts/hns-import/requirements.txt @@ -0,0 +1,29 @@ +# extract-excel.py 용 +openpyxl>=3.1.0 + +# ocr-local.py 용 (EasyOCR 기반 로컬 OCR, 대안 파이프라인) +easyocr==1.7.2 +filelock==3.19.1 +fsspec==2025.10.0 +ImageIO==2.37.2 +Jinja2==3.1.6 +lazy-loader==0.5 +MarkupSafe==3.0.3 +mpmath==1.3.0 +networkx==3.2.1 +ninja==1.13.0 +numpy==2.0.2 +opencv-python-headless==4.13.0.92 +packaging==26.1 +pillow==11.3.0 +pyclipper==1.3.0.post6 +python-bidi==0.6.7 +PyYAML==6.0.3 +scikit-image==0.24.0 +scipy==1.13.1 +shapely==2.0.7 +sympy==1.14.0 +tifffile==2024.8.30 +torch==2.8.0 +torchvision==0.23.0 +typing_extensions==4.15.0 diff --git a/backend/src/db/seedHns.ts b/backend/src/db/seedHns.ts index 083e027..0b0d8bf 100644 --- a/backend/src/db/seedHns.ts +++ b/backend/src/db/seedHns.ts @@ -24,8 +24,14 @@ async function seedHnsSubstances() { let inserted = 0 + // varchar 길이 제한에 맞춰 첫 번째 토큰만 검색 컬럼에 저장 (원본은 DATA JSONB에 보존) + const firstToken = (v: unknown, max: number): string | null => { + if (v == null) return null + const s = String(v).split(/[\n,;/]/)[0].trim() + return s ? s.slice(0, max) : null + } + for (const s of HNS_SEARCH_DB) { - // 검색용 컬럼 추출, 나머지는 DATA JSONB로 저장 const { abbreviation, nameKr, nameEn, unNumber, casNumber, sebc, ...detailData } = s await client.query( @@ -39,7 +45,16 @@ async function seedHnsSubstances() { CAS_NO = EXCLUDED.CAS_NO, SEBC = EXCLUDED.SEBC, DATA = EXCLUDED.DATA`, - [s.id, abbreviation, nameKr, nameEn, unNumber, casNumber, sebc, JSON.stringify(detailData)] + [ + s.id, + firstToken(abbreviation, 50), + firstToken(nameKr, 200) ?? '', + firstToken(nameEn, 200), + firstToken(unNumber, 10), + firstToken(casNumber, 20), + firstToken(sebc, 50), + JSON.stringify(detailData), + ] ) inserted++ diff --git a/docs/RELEASE-NOTES.md b/docs/RELEASE-NOTES.md index 6f6c794..6ad47ba 100644 --- a/docs/RELEASE-NOTES.md +++ b/docs/RELEASE-NOTES.md @@ -4,6 +4,9 @@ ## [Unreleased] +### 추가 +- HNS: 물질 DB 데이터 확장 및 데이터 구조 개선 (PDF 추출 스크립트, 병합 스크립트 개선, 물질 상세 패널 업데이트) + ### 수정 - 빌드 에러 수정 - 타입 import 정리 및 미사용 코드 제거 diff --git a/frontend/src/components/hns/components/HNSSubstanceView.tsx b/frontend/src/components/hns/components/HNSSubstanceView.tsx old mode 100644 new mode 100755 index 6e3c708..b97bbf2 --- a/frontend/src/components/hns/components/HNSSubstanceView.tsx +++ b/frontend/src/components/hns/components/HNSSubstanceView.tsx @@ -1807,4 +1807,3 @@ ${styles} ); } - diff --git a/frontend/src/components/hns/components/contents/HmsDetailPanel.tsx b/frontend/src/components/hns/components/contents/HmsDetailPanel.tsx index 78c2f89..54daf06 100644 --- a/frontend/src/components/hns/components/contents/HmsDetailPanel.tsx +++ b/frontend/src/components/hns/components/contents/HmsDetailPanel.tsx @@ -18,6 +18,20 @@ export function HmsDetailPanel({ '🔗 화물적부도·항구별 코드', ]; const nfpa = s.nfpa; + // eslint-disable-next-line @typescript-eslint/no-unused-vars + const sebcColor = !s.sebc + ? 'var(--fg-sub)' + : s.sebc.startsWith('G') + ? 'var(--color-accent)' + : s.sebc.startsWith('E') + ? 'var(--color-accent)' + : s.sebc.startsWith('F') + ? 'var(--color-caution)' + : s.sebc.startsWith('D') + ? 'var(--color-accent)' + : s.sebc.startsWith('S') + ? 'var(--color-accent)' + : 'var(--fg-sub)'; return (
4> 위험 건강 :2 화재 : 4 반응 :2 인화성 가스(구분1) 고압가스(액화가스) 생식세포 변이원성(구분 1B) 발암성 (구분 1A) 특정표적장기독성(1 회노출) -구분3(호흡기계자극〉 특정 표적장기독성 (반복노출) - 구분2", + "state": "기체", "color": "무색", - "odor": "약간 방향취", - "flashPoint": "-76°C", - "autoIgnition": "420°C", - "boilingPoint": "-4.4°C", - "density": "0.62 (액체)", - "solubility": "0.1 g/L", - "vaporPressure": "2,410 mmHg (25°C)", - "vaporDensity": "1.87", - "explosionRange": "2.0% ~ 11.5%", + "odor": "가솔린 냄새", + "flashPoint": "-76.1*C", + "autoIgnition": "420℃", + "boilingPoint": "-4.5T;", + "density": "0.6", + "solubility": "0.74 g/L (25℃)", + "vaporPressure": "90.6miTiHg(25t)", + "vaporDensity": "1.9", + "explosionRange": "1.1~16.3%", "nfpa": { "health": 2, "fire": 4, "reactivity": 2, "special": "" }, - "hazardClass": "인화성 가스 (Class 2.1)", - "ergNumber": "116P", - "idlh": "2,000 ppm", - "aegl2": "6,600 ppm", - "erpg2": "5,000 ppm", - "responseDistanceFire": "800m", - "responseDistanceSpillDay": "0.3km", - "responseDistanceSpillNight": "1.1km", - "marineResponse": "기체 확산, 해상수거 불가", - "ppeClose": "레벨A: 완전밀폐 화학보호복+SCBA", - "ppeFar": "레벨C: 화학보호복+정화식호흡기", + "hazardClass": "석유 및 석유대체연료사업법 / 석유가스", + "ergNumber": "116", + "idlh": "0 분)", + "aegl2": "5,300 ppm", + "erpg2": "", + "responseDistanceFire": "1m", + "responseDistanceSpillDay": "최소반경 100m", + "responseDistanceSpillNight": "1m", + "marineResponse": "증발 (E)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "인화성 가스 구분1, 발암성 구분1A, 생식독성 구분2", - "firstAid": "흡입 시 신선한 공기, 호흡곤란 시 산소 공급", - "fireFighting": "물분무, CO₂, 건조분말", - "spillResponse": "점화원 제거, 환기, 가스검지기 작동", - "exposure": "TWA 2 ppm, STEL 없음", - "regulation": "고압가스안전관리법, 산업안전보건법" + "hazard": "고인화성, 가스(G), 해상수거 불가", + "firstAid": "흡입: 신선한 공기 공급, 호흡곤란 시 산소 공급. 동상(액화가스): 미온수로 해동. 안구: 다량의 물로 세척. 즉시 의료조치.", + "fireFighting": "가스 차단이 우선. 차단 불가 시 화재 유지. CO₂, 건조분말. 대규모 화재 시 안전거리 확보 후 냉각 주수.", + "spillResponse": "모든 점화원 제거. 환기 확보. 가스검지기 작동. 증기운 형성 시 대피.", + "exposure": "TWA 2 ppm", + "regulation": "고압가스안전관리법" }, - "ibcHazard": "안전상의 위험성(S), 인화성(F)", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2PG (독립형탱크)", - "ibcDetection": "가연성가스검지기", - "ibcFireFighting": "건조분말, CO₂", - "ibcMinRequirement": "IMO 2TYPE 이상, 냉각설비", + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", "emsCode": "F-D, S-U", - "emsFire": "가연성 극히 높음. 물분무로 냉각, 소규모 건조분말/CO₂. 대규모 화재 시 안전거리 확보 후 냉각 주수.", - "emsSpill": "기체 유출 시 환기 확보. 점화원 제거. 증기운 형성 시 대피.", - "emsFirstAid": "흡입: 신선한 공기 이동. 동상(액화가스): 미온수로 해동. 의료조치.", + "emsFire": "F-D", + "emsSpill": "S-U", + "emsFirstAid": "", "cargoCodes": [ { "code": "13BD", - "name": "1,3-BUTADIENE", + "name": "1-3 BUTADIENE", "company": "국제공통", "source": "적부도" }, { - "code": "BD", - "name": "BUTADIENE", - "company": "LG화학", - "source": "용선자" + "code": "BTDN", + "name": "1-3 BUTADIENE", + "company": "국제공통", + "source": "적부도" }, { - "code": "BUTD", - "name": "BUTADIENE", - "company": "일본선사", - "source": "제품명" + "code": "1,3BD", + "name": "1,3-butadiene", + "company": "국제공통", + "source": "적부도" } ], - "portFrequency": [ - { - "port": "울산항", - "portCode": "KRULS", - "lastImport": "2025-04-02", - "frequency": "높음" - }, - { - "port": "여수항", - "portCode": "KRYOS", - "lastImport": "2025-03-28", - "frequency": "높음" - }, - { - "port": "대산항", - "portCode": "KRDAE", - "lastImport": "2025-03-15", - "frequency": "중간" - } - ] + "portFrequency": [] }, { "id": 2, - "abbreviation": "STYN", - "nameKr": "스티렌 모노머", - "nameEn": "STYRENE MONOMER", - "synonymsEn": "VINYLBENZENE / ETHENYLBENZENE / PHENYLETHYLENE", - "synonymsKr": "스틸렌 · 석유화학 중합원료", - "unNumber": "2055", - "casNumber": "100-42-5", - "transportMethod": "산적액체(3류)", - "sebc": "F (Floater)", - "usage": "합성수지, PS, ABS 원료", - "state": "액체", - "color": "무색~연황색", - "odor": "달콤한 방향취", - "flashPoint": "31°C", - "autoIgnition": "490°C", - "boilingPoint": "145°C", - "density": "0.906", - "solubility": "0.03%", - "vaporPressure": "6.4 mmHg (25°C)", - "vaporDensity": "3.6", - "explosionRange": "0.9% ~ 6.8%", - "nfpa": { - "health": 2, - "fire": 3, - "reactivity": 2, - "special": "" - }, - "hazardClass": "인화성 액체 (Class 3)", - "ergNumber": "128P", - "idlh": "700 ppm", - "aegl2": "130 ppm", - "erpg2": "250 ppm", - "responseDistanceFire": "800m", - "responseDistanceSpillDay": "0.1km", - "responseDistanceSpillNight": "0.4km", - "marineResponse": "해수면 부유, 오일펜스 유사 봉쇄 가능", - "ppeClose": "레벨B: 비밀폐형 화학보호복+SCBA", - "ppeFar": "레벨C: 화학보호복+정화식호흡기", - "msds": { - "hazard": "인화성 액체 구분3, 급성 독성(흡입) 구분4, 눈 자극성 구분2A", - "firstAid": "흡입 시 신선한 공기, 피부접촉 시 비눗물 세척", - "fireFighting": "알코올 내성 포말, CO₂, 건조분말", - "spillResponse": "오일펜스 설치, 흡착제 회수", - "exposure": "TWA 20 ppm, STEL 40 ppm", - "regulation": "위험물안전관리법 제4류" - }, - "ibcHazard": "안전상의 위험성(S), 인화성(F)", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G (일체형탱크)", - "ibcDetection": "가연성가스검지기", - "ibcFireFighting": "내알코올 포말, 물분무", - "ibcMinRequirement": "IMO 2TYPE 이상, 억제제(TBC) 첨가", - "emsCode": "F-E, S-D", - "emsFire": "인화성 액체. 내알코올 포말, CO₂, 건조분말. 탱크 화재 시 안전거리 확보 후 냉각 주수.", - "emsSpill": "해수면 부유. 오일펜스 설치하여 확산 봉쇄. 흡착제로 회수. 중합 방지 확인.", - "emsFirstAid": "흡입: 신선한 공기 이동. 피부: 비눗물 세척. 눈: 15분 세안. 경구: 구토유발 금지.", - "cargoCodes": [ - { - "code": "STYN", - "name": "STYRENE MONOMER", - "company": "국제공통", - "source": "적부도" - }, - { - "code": "SM", - "name": "STYRENE MONOMER", - "company": "LG화학", - "source": "용선자" - }, - { - "code": "STY", - "name": "STYRENE", - "company": "일본선사", - "source": "제품명" - } - ], - "portFrequency": [ - { - "port": "울산항", - "portCode": "KRULS", - "lastImport": "2025-04-01", - "frequency": "높음" - }, - { - "port": "여수항", - "portCode": "KRYOS", - "lastImport": "2025-03-30", - "frequency": "높음" - }, - { - "port": "인천항", - "portCode": "KRINC", - "lastImport": "2025-02-20", - "frequency": "낮음" - } - ] - }, - { - "id": 3, "abbreviation": "14BD", - "nameKr": "1,4-부탄디올", - "nameEn": "1,4-BUTANEDIOL", - "synonymsEn": "BUTANE-1,4-DIOL / TETRAMETHYLENE GLYCOL", - "synonymsKr": "부틸렌글리콜 · 플라스틱 가소제 원료", + "nameKr": "1.4 부탄디올", + "nameEn": "1-4 BUTANEDIOL", + "synonymsKr": "뷰테인다이올 / 뷰테인-1,4-다이을 / 1,4-뷰틸렌 글리콜 / 테트라메틸렌 글리콜", + "synonymsEn": "1-4 BUTANEDIOL / BUTYLENE GLYCOL / BUTANEDIOL / BUTANE-1.4-DIOL / TERAMETHYLENE GLYCOL / 1.4-BUTANDIOL / 1.4-BD / SUCOLD / DIOL 14B / 4-BUTANEDIOL", "unNumber": "2810", "casNumber": "110-63-4", - "transportMethod": "포장(6.1합), 산적액체(2류)", + "transportMethod": "포장(6.1급), 산적액체(Z류)", "sebc": "D (Dissolver)", - "usage": "중간체, 가소제", - "state": "점성있는 액체", + "usage": "폴리에스터 수지의 중간체, 가소제, 보습제 험 해 류 위 유 분 급성독성-경구(구분4) 피부부식성/자극성(구분2)", + "state": "점성", "color": "무색", "odor": "무취", - "flashPoint": "121°C", - "autoIgnition": "350°C", - "boilingPoint": "230°C", + "flashPoint": "i2rc", + "autoIgnition": "350℃", + "boilingPoint": "230℃", "density": "1.02", - "solubility": "1,000 g/L (잘녹음)", - "vaporPressure": "0.01 mmHg (25°C)", + "solubility": "1,000 g/L (25℃, 완전 혼화)", + "vaporPressure": "(물 23.81짜1g)", "vaporDensity": "3.1", - "explosionRange": "1.95% ~ 18.3%", + "explosionRange": "1.95 ~ 18.3%", "nfpa": { "health": 1, - "fire": 0, - "reactivity": 1, - "special": "" - }, - "hazardClass": "독성-부식성 (기연성)", - "ergNumber": "153", - "idlh": "— (미설정)", - "aegl2": "— (미설정)", - "erpg2": "— (미설정)", - "responseDistanceFire": "800m", - "responseDistanceSpillDay": "0.2km", - "responseDistanceSpillNight": "0.5km", - "marineResponse": "해상수거 불가 (D: 완전 용해)", - "ppeClose": "레벨A: 완전밀폐 화학보호복+SCBA", - "ppeFar": "레벨C: 일체형 화학보호복+정화식호흡기", - "msds": { - "hazard": "급성 독성(경구) 구분4, 피부 자극성 구분2", - "firstAid": "흡입 시 신선한 공기, 피부접촉 시 물로 세척, 눈접촉 시 15분 이상 세안", - "fireFighting": "물분무, 내알코올 포말", - "spillResponse": "흡수제(모래, 흙)로 회수, 배수구 차단", - "exposure": "TWA 없음, STEL 없음", - "regulation": "위험물안전관리법 제4류" - }, - "ibcHazard": "오염상의 위험성(P)", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G (일체형탱크)", - "ibcDetection": "없음", - "ibcFireFighting": "내알코올 포말", - "ibcMinRequirement": "적재 선박 IMO 3TYPE 이상", - "emsCode": "F-E, S-D", - "emsFire": "가연성 있음, 연소 시 자극성/독성 가스 발생. 물분무, 내알코올 포말, CO₂ 사용.", - "emsSpill": "물에 용해 → 해상 회수 불가. 배수구·수로 차단. 흡수제 사용 후 회수.", - "emsFirstAid": "흡입: 신선한 공기 이동. 피부: 오염 의복 제거, 물로 세척. 눈: 15분 이상 세안.", - "cargoCodes": [ - { - "code": "14BD", - "name": "1,4-BUTANEDIOL", - "company": "국제공통", - "source": "적부도" - }, - { - "code": "BDO", - "name": "BUTANEDIOL", - "company": "BASF", - "source": "용선자" - }, - { - "code": "BUTYLENE GLYCOL", - "name": "1,4-BUTYLENE GLYCOL", - "company": "일본선사", - "source": "제품명" - } - ], - "portFrequency": [ - { - "port": "울산항", - "portCode": "KRULS", - "lastImport": "2025-03-28", - "frequency": "높음" - }, - { - "port": "여수항", - "portCode": "KRYOS", - "lastImport": "2025-03-25", - "frequency": "중간" - }, - { - "port": "인천항", - "portCode": "KRINC", - "lastImport": "2025-03-15", - "frequency": "낮음" - } - ] - }, - { - "id": 4, - "abbreviation": "BASEOIL", - "nameKr": "윤활유(기유)", - "nameEn": "HYDRAULIC FLUID", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "유압유 · 가동장비·선박 엔진", - "unNumber": "1270", - "casNumber": "64742-54-7", - "transportMethod": "산적액체(3류)", - "sebc": "F (Floater)", - "usage": "윤활, 유압 시스템", - "state": "점성 액체", - "color": "연황~갈색", - "odor": "약한 석유취", - "flashPoint": "200°C↑", - "autoIgnition": "300°C↑", - "boilingPoint": "300~600°C", - "density": "0.85~0.90", - "solubility": "불용성", - "vaporPressure": "<0.01 mmHg", - "vaporDensity": ">5", - "explosionRange": "1.0% ~ 5.0%", - "nfpa": { - "health": 0, "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "인화성 액체 (Class 3)", - "ergNumber": "128", - "idlh": "— (미설정)", - "aegl2": "— (미설정)", - "erpg2": "— (미설정)", - "responseDistanceFire": "100m", - "responseDistanceSpillDay": "—", - "responseDistanceSpillNight": "—", - "marineResponse": "해수면 부유, 유흡착제 회수 가능", - "ppeClose": "레벨D: 작업복+안전안경", - "ppeFar": "레벨D: 작업복+안전안경", - "msds": { - "hazard": "인화성 액체 구분4, 흡인 유해성 구분1", - "firstAid": "흡입 시 신선한 공기, 피부접촉 시 비눗물 세척", - "fireFighting": "포말, CO₂, 건조분말", - "spillResponse": "오일펜스 설치, 유흡착제 회수", - "exposure": "TWA 5 mg/m³ (오일미스트)", - "regulation": "위험물안전관리법 제4류" - }, - "ibcHazard": "오염상의 위험성(P)", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G (일체형탱크)", - "ibcDetection": "없음", - "ibcFireFighting": "포말", - "ibcMinRequirement": "IMO 3TYPE", - "emsCode": "F-E, S-E", - "emsFire": "고인화점 물질. 포말, CO₂, 건조분말로 소화.", - "emsSpill": "해수면 부유. 오일펜스·유흡착제로 회수.", - "emsFirstAid": "흡입: 신선한 공기. 피부: 비눗물 세척. 경구: 의료조치.", - "cargoCodes": [ - { - "code": "BASEOIL", - "name": "HYDRAULIC FLUID", - "company": "국제공통", - "source": "적부도" - }, - { - "code": "HYD", - "name": "HYDRAULIC OIL", - "company": "Shell", - "source": "용선자" - } - ], - "portFrequency": [ - { - "port": "울산항", - "portCode": "KRULS", - "lastImport": "2025-04-01", - "frequency": "높음" - }, - { - "port": "부산항", - "portCode": "KRPUS", - "lastImport": "2025-03-30", - "frequency": "높음" - }, - { - "port": "인천항", - "portCode": "KRINC", - "lastImport": "2025-03-28", - "frequency": "중간" - } - ] - }, - { - "id": 5, - "abbreviation": "XYLENE", - "nameKr": "자일렌", - "nameEn": "XYLENE (mixed isomers)", - "synonymsEn": "DIMETHYLBENZENE / XYLOL", - "synonymsKr": "크실렌 · 도료·용제 원료", - "unNumber": "1307", - "casNumber": "1330-20-7", - "transportMethod": "산적액체(3류)", - "sebc": "FE (Floater/Evaporator)", - "usage": "도료, 용제, PET 원료", - "state": "액체", - "color": "무색", - "odor": "달콤한 방향취", - "flashPoint": "27°C", - "autoIgnition": "463°C", - "boilingPoint": "138~144°C", - "density": "0.864", - "solubility": "0.02%", - "vaporPressure": "8.8 mmHg (25°C)", - "vaporDensity": "3.66", - "explosionRange": "1.0% ~ 7.0%", - "nfpa": { - "health": 2, - "fire": 3, - "reactivity": 0, - "special": "" - }, - "hazardClass": "인화성 액체 (Class 3)", - "ergNumber": "130", - "idlh": "900 ppm", - "aegl2": "920 ppm", - "erpg2": "200 ppm", - "responseDistanceFire": "800m", - "responseDistanceSpillDay": "0.1km", - "responseDistanceSpillNight": "0.3km", - "marineResponse": "해수면 부유+증발, 오일펜스 봉쇄 및 대기 모니터링", - "ppeClose": "레벨B: 비밀폐형 화학보호복+SCBA", - "ppeFar": "레벨C: 화학보호복+정화식호흡기", - "msds": { - "hazard": "인화성 액체 구분3, 급성 독성(흡입) 구분4, 피부 자극성 구분2", - "firstAid": "흡입 시 신선한 공기, 피부접촉 시 비눗물 세척", - "fireFighting": "알코올 내성 포말, CO₂, 건조분말", - "spillResponse": "오일펜스 설치, 흡착제 회수, 증기 억제 포말", - "exposure": "TWA 100 ppm, STEL 150 ppm", - "regulation": "위험물안전관리법 제4류" - }, - "ibcHazard": "안전상의 위험성(S), 인화성(F)", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G (일체형탱크)", - "ibcDetection": "가연성가스검지기", - "ibcFireFighting": "내알코올 포말, 물분무", - "ibcMinRequirement": "IMO 2TYPE 이상", - "emsCode": "F-E, S-D", - "emsFire": "인화성 액체. 내알코올 포말, CO₂, 건조분말. 물분무로 냉각.", - "emsSpill": "해수면 부유+증발. 오일펜스 봉쇄 후 흡착제 회수.", - "emsFirstAid": "흡입: 신선한 공기 이동. 피부: 비눗물 세척. 눈: 15분 세안.", - "cargoCodes": [ - { - "code": "XYLENE", - "name": "XYLENE (mixed isomers)", - "company": "국제공통", - "source": "적부도" - }, - { - "code": "MX", - "name": "MIXED XYLENE", - "company": "SK에너지", - "source": "용선자" - }, - { - "code": "PX", - "name": "PARA-XYLENE", - "company": "삼성토탈", - "source": "용선자" - } - ], - "portFrequency": [ - { - "port": "울산항", - "portCode": "KRULS", - "lastImport": "2025-04-02", - "frequency": "높음" - }, - { - "port": "여수항", - "portCode": "KRYOS", - "lastImport": "2025-04-01", - "frequency": "높음" - }, - { - "port": "대산항", - "portCode": "KRDAE", - "lastImport": "2025-03-20", - "frequency": "중간" - } - ] - }, - { - "id": 6, - "abbreviation": "MEOH", - "nameKr": "메탄올", - "nameEn": "METHANOL", - "synonymsEn": "METHYL ALCOHOL / WOOD ALCOHOL / CARBINOL", - "synonymsKr": "메틸알코올 · 석유화학 원료·연료", - "unNumber": "1230", - "casNumber": "67-56-1", - "transportMethod": "산적액체(3류)", - "sebc": "ED (Evaporator/Dissolver)", - "usage": "용제, 포르말린 원료, 연료", - "state": "액체", - "color": "무색", - "odor": "약한 알코올취", - "flashPoint": "11°C", - "autoIgnition": "464°C", - "boilingPoint": "64.7°C", - "density": "0.791", - "solubility": "완전 혼화", - "vaporPressure": "127 mmHg (25°C)", - "vaporDensity": "1.11", - "explosionRange": "6.0% ~ 36.5%", - "nfpa": { - "health": 1, - "fire": 3, - "reactivity": 0, - "special": "" - }, - "hazardClass": "인화성 액체 (Class 3), 독성", - "ergNumber": "131", - "idlh": "6,000 ppm", - "aegl2": "2,100 ppm", - "erpg2": "1,000 ppm", - "responseDistanceFire": "800m", - "responseDistanceSpillDay": "0.1km", - "responseDistanceSpillNight": "0.3km", - "marineResponse": "해수에 완전 용해 → 수질 오염 장기화", - "ppeClose": "레벨B: 비밀폐형 화학보호복+SCBA", - "ppeFar": "레벨C: 화학보호복+정화식호흡기", - "msds": { - "hazard": "인화성 액체 구분2, 급성 독성(경구) 구분3, 급성 독성(흡입) 구분3", - "firstAid": "흡입 시 신선한 공기, 경구 섭취 시 즉시 의료조치", - "fireFighting": "내알코올 포말, CO₂, 건조분말", - "spillResponse": "흡수제 회수, 해수 희석 방지", - "exposure": "TWA 200 ppm, STEL 250 ppm", - "regulation": "위험물안전관리법 제4류, 산업안전보건법" - }, - "ibcHazard": "안전상의 위험성(S), 인화성(F)", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G (일체형탱크)", - "ibcDetection": "가연성가스검지기, 독성가스검지기", - "ibcFireFighting": "내알코올 포말", - "ibcMinRequirement": "IMO 2TYPE 이상", - "emsCode": "F-E, S-D", - "emsFire": "인화성 높음, 불꽃 보이지 않음 주의. 내알코올 포말 필수.", - "emsSpill": "해수에 완전 용해. 회수 불가. 확산 모니터링.", - "emsFirstAid": "경구: 즉시 의료조치(해독제: 에탄올/포메피졸). 흡입: 신선한 공기.", - "cargoCodes": [ - { - "code": "MEOH", - "name": "METHANOL", - "company": "국제공통", - "source": "적부도" - }, - { - "code": "METH", - "name": "METHANOL", - "company": "SABIC", - "source": "용선자" - } - ], - "portFrequency": [ - { - "port": "울산항", - "portCode": "KRULS", - "lastImport": "2025-04-02", - "frequency": "높음" - }, - { - "port": "여수항", - "portCode": "KRYOS", - "lastImport": "2025-04-01", - "frequency": "높음" - }, - { - "port": "인천항", - "portCode": "KRINC", - "lastImport": "2025-03-28", - "frequency": "중간" - }, - { - "port": "대산항", - "portCode": "KRDAE", - "lastImport": "2025-03-25", - "frequency": "중간" - } - ] - }, - { - "id": 7, - "abbreviation": "TOLU", - "nameKr": "톨루엔", - "nameEn": "TOLUENE", - "synonymsEn": "METHYLBENZENE / TOLUOL / PHENYLMETHANE", - "synonymsKr": "톨루올 · 석유화학 용제·TDI 원료", - "unNumber": "1294", - "casNumber": "108-88-3", - "transportMethod": "산적액체(3류)", - "sebc": "FE (Floater/Evaporator)", - "usage": "용제, TDI 원료, 석유화학", - "state": "액체", - "color": "무색", - "odor": "달콤한 방향취", - "flashPoint": "4°C", - "autoIgnition": "480°C", - "boilingPoint": "110.6°C", - "density": "0.867", - "solubility": "0.05%", - "vaporPressure": "28.4 mmHg (25°C)", - "vaporDensity": "3.14", - "explosionRange": "1.1% ~ 7.1%", - "nfpa": { - "health": 2, - "fire": 3, - "reactivity": 0, - "special": "" - }, - "hazardClass": "인화성 액체 (Class 3)", - "ergNumber": "130", - "idlh": "500 ppm", - "aegl2": "560 ppm", - "erpg2": "300 ppm", - "responseDistanceFire": "800m", - "responseDistanceSpillDay": "0.1km", - "responseDistanceSpillNight": "0.4km", - "marineResponse": "해수면 부유 → 증발. 오일펜스 봉쇄 + 대기 모니터링", - "ppeClose": "레벨B: 비밀폐형 화학보호복+SCBA", - "ppeFar": "레벨C: 화학보호복+정화식호흡기", - "msds": { - "hazard": "인화성 액체 구분2, 급성 독성(흡입) 구분4, 생식독성 구분2", - "firstAid": "흡입 시 신선한 공기, 피부접촉 시 비눗물 세척", - "fireFighting": "내알코올 포말, CO₂, 건조분말", - "spillResponse": "오일펜스 설치, 흡착제 회수", - "exposure": "TWA 50 ppm, STEL 150 ppm", - "regulation": "위험물안전관리법 제4류" - }, - "ibcHazard": "안전상의 위험성(S), 인화성(F)", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G (일체형탱크)", - "ibcDetection": "가연성가스검지기", - "ibcFireFighting": "내알코올 포말, 물분무", - "ibcMinRequirement": "IMO 2TYPE 이상", - "emsCode": "F-E, S-D", - "emsFire": "인화성 높음. 내알코올 포말, CO₂. 물분무로 냉각.", - "emsSpill": "해수면 부유. 오일펜스 봉쇄 후 흡착제 회수.", - "emsFirstAid": "흡입: 신선한 공기. 피부: 비눗물. 눈: 15분 세안.", - "cargoCodes": [ - { - "code": "TOLU", - "name": "TOLUENE", - "company": "국제공통", - "source": "적부도" - }, - { - "code": "TOL", - "name": "TOLUENE", - "company": "SK에너지", - "source": "용선자" - } - ], - "portFrequency": [ - { - "port": "울산항", - "portCode": "KRULS", - "lastImport": "2025-04-02", - "frequency": "높음" - }, - { - "port": "여수항", - "portCode": "KRYOS", - "lastImport": "2025-04-01", - "frequency": "높음" - }, - { - "port": "대산항", - "portCode": "KRDAE", - "lastImport": "2025-03-25", - "frequency": "중간" - } - ] - }, - { - "id": 8, - "abbreviation": "NH3", - "nameKr": "암모니아", - "nameEn": "AMMONIA (anhydrous)", - "synonymsEn": "ANHYDROUS AMMONIA / REFRIGERANT R-717", - "synonymsKr": "암모니아 · 비료·냉매·화학원료", - "unNumber": "1005", - "casNumber": "7664-41-7", - "transportMethod": "산적액체(2류)", - "sebc": "GD (Gas/Dissolver)", - "usage": "비료, 냉매, 화학원료", - "state": "기체(액화)", - "color": "무색", - "odor": "강한 자극취", - "flashPoint": "— (불연)", - "autoIgnition": "651°C", - "boilingPoint": "-33.4°C", - "density": "0.73 (액체)", - "solubility": "31% (매우 높음)", - "vaporPressure": "8,585 mmHg (25°C)", - "vaporDensity": "0.59", - "explosionRange": "15.0% ~ 28.0%", - "nfpa": { - "health": 3, - "fire": 1, - "reactivity": 0, - "special": "" - }, - "hazardClass": "독성 가스 (Class 2.3), 부식성", - "ergNumber": "125", - "idlh": "300 ppm", - "aegl2": "160 ppm", - "erpg2": "150 ppm", - "responseDistanceFire": "800m", - "responseDistanceSpillDay": "0.5km", - "responseDistanceSpillNight": "2.0km", - "marineResponse": "기화 → 독성 가스운 형성. 수중 독성도 높음", - "ppeClose": "레벨A: 완전밀폐 화학보호복+SCBA", - "ppeFar": "레벨B: 비밀폐형+SCBA", - "msds": { - "hazard": "급성 독성(흡입) 구분3, 피부 부식성 구분1A, 심한 눈 손상 구분1", - "firstAid": "흡입 시 신선한 공기, 피부 부식 시 다량의 물로 세척", - "fireFighting": "물분무(냉각), 건조분말", - "spillResponse": "물분무로 가스운 제어, 환기 확보", - "exposure": "TWA 25 ppm, STEL 35 ppm", - "regulation": "고압가스안전관리법, 산업안전보건법, 화학물질관리법" - }, - "ibcHazard": "안전상의 위험성(S), 인화성(F), 독성(T)", - "ibcShipType": "IMO 1TYPE", - "ibcTankType": "1PG (독립형가압탱크)", - "ibcDetection": "독성가스검지기, 가연성가스검지기", - "ibcFireFighting": "물분무, 건조분말", - "ibcMinRequirement": "IMO 1TYPE, 가압탱크, 독성가스 방호설비", - "emsCode": "F-C, S-U", - "emsFire": "가연성은 낮으나 폭발범위 내에서 점화 가능. 물분무로 냉각. 독성 가스 확산 주의.", - "emsSpill": "기화 가스 → 풍하측 대피. 물분무로 가스운 억제. 해수 접촉 시 수중 독성 확산.", - "emsFirstAid": "흡입: 즉시 신선한 공기. 피부: 다량의 물. 눈: 15분 이상 세안. 호흡곤란 시 산소.", - "cargoCodes": [ - { - "code": "NH3", - "name": "AMMONIA (anhydrous)", - "company": "국제공통", - "source": "적부도" - }, - { - "code": "AMM", - "name": "AMMONIA", - "company": "남해화학", - "source": "용선자" - } - ], - "portFrequency": [ - { - "port": "울산항", - "portCode": "KRULS", - "lastImport": "2025-04-01", - "frequency": "높음" - }, - { - "port": "여수항", - "portCode": "KRYOS", - "lastImport": "2025-03-28", - "frequency": "중간" - }, - { - "port": "평택항", - "portCode": "KRPTK", - "lastImport": "2025-03-20", - "frequency": "낮음" - } - ] - }, - { - "id": 9, - "abbreviation": "BENZ", - "nameKr": "벤젠", - "nameEn": "BENZENE", - "synonymsEn": "BENZOL / CYCLOHEXATRIENE / PHENYL HYDRIDE", - "synonymsKr": "벤졸 · 석유화학 기초원료", - "unNumber": "1114", - "casNumber": "71-43-2", - "transportMethod": "산적액체(3류)", - "sebc": "FE (Floater/Evaporator)", - "usage": "석유화학 기초원료, 합성수지", - "state": "액체", - "color": "무색", - "odor": "달콤한 방향취", - "flashPoint": "-11°C", - "autoIgnition": "498°C", - "boilingPoint": "80°C", - "density": "0.879", - "solubility": "0.18%", - "vaporPressure": "94.8 mmHg (25°C)", - "vaporDensity": "2.77", - "explosionRange": "1.2% ~ 7.8%", - "nfpa": { - "health": 2, - "fire": 3, - "reactivity": 0, - "special": "" - }, - "hazardClass": "인화성 액체 (Class 3), 발암성", - "ergNumber": "130", - "idlh": "500 ppm", - "aegl2": "800 ppm", - "erpg2": "150 ppm", - "responseDistanceFire": "800m", - "responseDistanceSpillDay": "0.1km", - "responseDistanceSpillNight": "0.3km", - "marineResponse": "해수면 부유+증발, 오일펜스 봉쇄", - "ppeClose": "레벨B: 비밀폐형+SCBA", - "ppeFar": "레벨C: 화학보호복+정화식호흡기", - "msds": { - "hazard": "인화성 액체 구분2, 발암성 구분1A, 급성 독성(흡입) 구분3", - "firstAid": "흡입 시 신선한 공기, 피부접촉 시 비눗물 세척", - "fireFighting": "내알코올 포말, CO₂, 건조분말", - "spillResponse": "오일펜스 설치, 흡착제 회수, 환기", - "exposure": "TWA 1 ppm, STEL 5 ppm", - "regulation": "위험물안전관리법 제4류, 산업안전보건법(발암물질)" - }, - "ibcHazard": "안전상의 위험성(S), 인화성(F)", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G (일체형탱크)", - "ibcDetection": "가연성가스검지기", - "ibcFireFighting": "내알코올 포말", - "ibcMinRequirement": "IMO 2TYPE 이상", - "emsCode": "F-E, S-D", - "emsFire": "인화성 높음(인화점 -11°C). 내알코올 포말, CO₂, 건조분말.", - "emsSpill": "해수면 부유. 오일펜스 봉쇄 후 흡착제 회수. 발암물질 주의.", - "emsFirstAid": "흡입: 신선한 공기. 피부: 비눗물 세척. 발암성 주의 — 노출 기록 보관.", - "cargoCodes": [ - { - "code": "BENZ", - "name": "BENZENE", - "company": "국제공통", - "source": "적부도" - }, - { - "code": "BZ", - "name": "BENZENE", - "company": "SK에너지", - "source": "용선자" - } - ], - "portFrequency": [ - { - "port": "울산항", - "portCode": "KRULS", - "lastImport": "2025-04-02", - "frequency": "높음" - }, - { - "port": "여수항", - "portCode": "KRYOS", - "lastImport": "2025-03-30", - "frequency": "높음" - } - ] - }, - { - "id": 10, - "abbreviation": "CL2", - "nameKr": "염소", - "nameEn": "CHLORINE", - "synonymsEn": "MOLECULAR CHLORINE / BERTHOLITE", - "synonymsKr": "염소가스 · 수처리·화학공업", - "unNumber": "1017", - "casNumber": "7782-50-5", - "transportMethod": "산적액체(2류)", - "sebc": "G (Gas)", - "usage": "수처리, 화학공업, 소독", - "state": "기체(액화)", - "color": "황록색", - "odor": "강한 자극취", - "flashPoint": "— (불연)", - "autoIgnition": "— (불연)", - "boilingPoint": "-34°C", - "density": "1.56 (액체)", - "solubility": "0.7%", - "vaporPressure": "6,627 mmHg (25°C)", - "vaporDensity": "2.49", - "explosionRange": "—", - "nfpa": { - "health": 3, - "fire": 0, - "reactivity": 0, - "special": "OX" - }, - "hazardClass": "독성 가스 (Class 2.3), 부식성, 산화성", - "ergNumber": "124", - "idlh": "10 ppm", - "aegl2": "2 ppm", - "erpg2": "3 ppm", - "responseDistanceFire": "800m (주변 화재 시)", - "responseDistanceSpillDay": "1.0km", - "responseDistanceSpillNight": "3.5km", - "marineResponse": "기화 → 해수면 체류(무거움). 독성 가스운 형성", - "ppeClose": "레벨A: 완전밀폐+SCBA 필수", - "ppeFar": "레벨B: 비밀폐형+SCBA", - "msds": { - "hazard": "급성 독성(흡입) 구분2, 피부 부식성 구분1A, 수생환경 유해성 구분1", - "firstAid": "흡입 시 즉시 신선한 공기, 호흡정지 시 인공호흡", - "fireFighting": "물분무(냉각), 주변 소화", - "spillResponse": "풍하측 대피, 물분무로 가스운 억제", - "exposure": "TWA 0.5 ppm, STEL 1 ppm", - "regulation": "고압가스안전관리법, 화학물질관리법(사고대비물질)" - }, - "ibcHazard": "안전상의 위험성(S), 독성(T), 부식성(C)", - "ibcShipType": "IMO 1TYPE", - "ibcTankType": "1PG (독립형가압탱크)", - "ibcDetection": "독성가스검지기(필수)", - "ibcFireFighting": "물분무(냉각)", - "ibcMinRequirement": "IMO 1TYPE, 독성가스 방호장비 필수", - "emsCode": "F-C, S-R", - "emsFire": "비가연성이나 산화성. 주변 화재 시 탱크 냉각 필수. 독성가스 확산 주의.", - "emsSpill": "공기보다 무거움 → 저지대 체류. 물분무로 가스운 억제. 풍하측 대피.", - "emsFirstAid": "흡입: 즉시 대피, 산소 공급. IDLH 10ppm 극히 낮음 — 미량에도 위험.", - "cargoCodes": [ - { - "code": "CL2", - "name": "CHLORINE", - "company": "국제공통", - "source": "적부도" - } - ], - "portFrequency": [ - { - "port": "울산항", - "portCode": "KRULS", - "lastImport": "2025-03-15", - "frequency": "낮음" - }, - { - "port": "여수항", - "portCode": "KRYOS", - "lastImport": "2025-02-28", - "frequency": "낮음" - } - ] - }, - { - "id": 11, - "abbreviation": "H2", - "nameKr": "수소", - "nameEn": "HYDROGEN", - "synonymsEn": "COMPRESSED HYDROGEN / LIQUID HYDROGEN", - "synonymsKr": "수소 · 연료전지·정유·반도체", - "unNumber": "1049", - "casNumber": "1333-74-0", - "transportMethod": "산적액체(2류)", - "sebc": "G (Gas)", - "usage": "연료전지, 정유, 반도체", - "state": "기체(액화)", - "color": "무색", - "odor": "무취", - "flashPoint": "— (불연: 자동점화)", - "autoIgnition": "500°C", - "boilingPoint": "-252.9°C", - "density": "0.07 (기체)", - "solubility": "0.0016%", - "vaporPressure": "— (극고압)", - "vaporDensity": "0.07", - "explosionRange": "4.0% ~ 75.0%", - "nfpa": { - "health": 0, - "fire": 4, - "reactivity": 0, - "special": "" - }, - "hazardClass": "인화성 가스 (Class 2.1)", - "ergNumber": "115", - "idlh": "— (단순질식)", - "aegl2": "—", - "erpg2": "—", - "responseDistanceFire": "800m", - "responseDistanceSpillDay": "0.1km", - "responseDistanceSpillNight": "0.3km", - "marineResponse": "급속 상승 확산, BLEVE 위험(액화수소)", - "ppeClose": "레벨B: 비밀폐형+SCBA", - "ppeFar": "레벨D: 작업복(환기 확보 시)", - "msds": { - "hazard": "인화성 가스 구분1, 가압가스(압축/액화)", - "firstAid": "질식: 산소 공급, 동상(액화): 미온수 해동", - "fireFighting": "건조분말, CO₂, 물분무(냉각)", - "spillResponse": "점화원 제거, 환기, 가스검지기", - "exposure": "TWA 없음 (단순 질식제)", - "regulation": "고압가스안전관리법" - }, - "ibcHazard": "안전상의 위험성(S), 인화성(F)", - "ibcShipType": "IMO 1TYPE (특수)", - "ibcTankType": "1PG (독립형가압탱크/극저온)", - "ibcDetection": "가연성가스검지기(필수)", - "ibcFireFighting": "건조분말, CO₂", - "ibcMinRequirement": "IMO 1TYPE, 극저온 설비, 방폭구역", - "emsCode": "F-D, S-U", - "emsFire": "폭발범위 극히 넓음(4~75%). 물분무로 냉각. 누출 시 점화원 완전 제거.", - "emsSpill": "급속 상승 확산. 밀폐공간 축적 → 폭발 위험. 환기 확보.", - "emsFirstAid": "질식: 산소 공급. 동상(액화수소): 미온수로 서서히 해동.", - "cargoCodes": [ - { - "code": "H2", - "name": "HYDROGEN", - "company": "국제공통", - "source": "적부도" - }, - { - "code": "LH2", - "name": "LIQUID HYDROGEN", - "company": "수소선사", - "source": "용선자" - } - ], - "portFrequency": [ - { - "port": "인천항", - "portCode": "KRINC", - "lastImport": "2025-03-20", - "frequency": "낮음" - }, - { - "port": "평택항", - "portCode": "KRPTK", - "lastImport": "2025-02-15", - "frequency": "낮음" - } - ] - }, - { - "id": 12, - "abbreviation": "LPG", - "nameKr": "LPG (프로판/부탄)", - "nameEn": "LPG (PROPANE/BUTANE)", - "synonymsEn": "LIQUEFIED PETROLEUM GAS / PROPANE / N-BUTANE", - "synonymsKr": "LPG · 연료·석유화학 원료", - "unNumber": "1075", - "casNumber": "68476-85-7", - "transportMethod": "산적액체(2류)", - "sebc": "G (Gas)", - "usage": "연료, 석유화학 원료", - "state": "기체(액화)", - "color": "무색", - "odor": "무취(부취제 첨가)", - "flashPoint": "-104°C", - "autoIgnition": "450°C", - "boilingPoint": "-42°C (프로판)", - "density": "0.50 (액체)", - "solubility": "0.01%", - "vaporPressure": "8,460 mmHg (25°C)", - "vaporDensity": "1.52", - "explosionRange": "2.1% ~ 9.5%", - "nfpa": { - "health": 1, - "fire": 4, - "reactivity": 0, - "special": "" - }, - "hazardClass": "인화성 가스 (Class 2.1)", - "ergNumber": "115", - "idlh": "2,100 ppm", - "aegl2": "17,000 ppm", - "erpg2": "—", - "responseDistanceFire": "800m", - "responseDistanceSpillDay": "0.3km", - "responseDistanceSpillNight": "1.1km", - "marineResponse": "기화 → 공기보다 무거움 → 해수면 체류 → 폭발 위험", - "ppeClose": "레벨B: 비밀폐형+SCBA", - "ppeFar": "레벨C: 화학보호복+정화식호흡기", - "msds": { - "hazard": "인화성 가스 구분1, 가압가스(액화)", - "firstAid": "질식: 산소 공급, 동상: 미온수 해동", - "fireFighting": "건조분말, CO₂, 물분무(냉각)", - "spillResponse": "점화원 제거, 환기, 가스검지기", - "exposure": "TWA 1,000 ppm", - "regulation": "고압가스안전관리법, 액화석유가스법" - }, - "ibcHazard": "안전상의 위험성(S), 인화성(F)", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2PG (독립형가압탱크)", - "ibcDetection": "가연성가스검지기", - "ibcFireFighting": "건조분말, CO₂", - "ibcMinRequirement": "IMO 2TYPE 이상, 가압설비", - "emsCode": "F-D, S-U", - "emsFire": "인화성 극히 높음. 건조분말, CO₂. BLEVE 위험 → 안전거리 확보.", - "emsSpill": "증기 공기보다 무거움 → 저지대 축적. 점화원 완전 제거.", - "emsFirstAid": "질식: 산소 공급. 동상: 미온수. 화상: 냉수 냉각.", - "cargoCodes": [ - { - "code": "LPG", - "name": "LPG (PROPANE/BUTANE)", - "company": "국제공통", - "source": "적부도" - }, - { - "code": "PROP", - "name": "PROPANE", - "company": "E1", - "source": "용선자" - } - ], - "portFrequency": [ - { - "port": "인천항", - "portCode": "KRINC", - "lastImport": "2025-04-02", - "frequency": "높음" - }, - { - "port": "울산항", - "portCode": "KRULS", - "lastImport": "2025-04-01", - "frequency": "높음" - }, - { - "port": "여수항", - "portCode": "KRYOS", - "lastImport": "2025-03-30", - "frequency": "중간" - } - ] - }, - { - "id": 13, - "abbreviation": "EDC", - "nameKr": "1,2-디클로로에탄", - "nameEn": "1,2-DICHLOROETHANE", - "synonymsEn": "ETHYLENE DICHLORIDE / EDC / 1,2-DCE", - "synonymsKr": "에틸렌디클로라이드 · PVC 원료", - "unNumber": "1184", - "casNumber": "107-06-2", - "transportMethod": "산적액체(3류)", - "sebc": "S (Sinker)", - "usage": "PVC 원료, 용제", - "state": "액체", - "color": "무색", - "odor": "달콤한 에테르취", - "flashPoint": "13°C", - "autoIgnition": "413°C", - "boilingPoint": "83°C", - "density": "1.253", - "solubility": "0.87%", - "vaporPressure": "87 mmHg (25°C)", - "vaporDensity": "3.42", - "explosionRange": "6.2% ~ 16.0%", - "nfpa": { - "health": 2, - "fire": 3, - "reactivity": 0, - "special": "" - }, - "hazardClass": "인화성 액체 (Class 3), 독성", - "ergNumber": "131", - "idlh": "50 ppm", - "aegl2": "20 ppm", - "erpg2": "100 ppm", - "responseDistanceFire": "800m", - "responseDistanceSpillDay": "0.3km", - "responseDistanceSpillNight": "1.0km", - "marineResponse": "비중>1 → 침강. 저층 오염. 수중 모니터링 필수", - "ppeClose": "레벨A: 완전밀폐+SCBA", - "ppeFar": "레벨B: 비밀폐형+SCBA", - "msds": { - "hazard": "인화성 액체 구분2, 발암성 구분1B, 급성 독성(흡입) 구분3", - "firstAid": "흡입 시 신선한 공기, 피부접촉 시 다량의 물", - "fireFighting": "내알코올 포말, CO₂, 건조분말", - "spillResponse": "흡수제 회수, 배수구 차단, 수중 모니터링", - "exposure": "TWA 10 ppm, STEL 없음", - "regulation": "위험물안전관리법 제4류, 산업안전보건법(발암물질)" - }, - "ibcHazard": "안전상의 위험성(S), 인화성(F), 독성(T)", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G (일체형탱크)", - "ibcDetection": "독성가스검지기, 가연성가스검지기", - "ibcFireFighting": "내알코올 포말", - "ibcMinRequirement": "IMO 2TYPE 이상", - "emsCode": "F-E, S-D", - "emsFire": "인화성 높음. 내알코올 포말, CO₂. 발암물질 — 노출 최소화.", - "emsSpill": "비중>1 → 해저 침강. 저층 오염 모니터링. 수중 회수 필요.", - "emsFirstAid": "흡입: 신선한 공기. 피부: 다량의 물. 발암성 주의.", - "cargoCodes": [ - { - "code": "EDC", - "name": "1,2-DICHLOROETHANE", - "company": "국제공통", - "source": "적부도" - } - ], - "portFrequency": [ - { - "port": "울산항", - "portCode": "KRULS", - "lastImport": "2025-03-25", - "frequency": "중간" - }, - { - "port": "여수항", - "portCode": "KRYOS", - "lastImport": "2025-03-20", - "frequency": "중간" - } - ] - }, - { - "id": 14, - "abbreviation": "ACET", - "nameKr": "아세톤", - "nameEn": "ACETONE", - "synonymsEn": "DIMETHYL KETONE / 2-PROPANONE / PROPAN-2-ONE", - "synonymsKr": "디메틸케톤 · 용제·세정제", - "unNumber": "1090", - "casNumber": "67-64-1", - "transportMethod": "산적액체(3류)", - "sebc": "ED (Evaporator/Dissolver)", - "usage": "용제, 세정제, 화학원료", - "state": "액체", - "color": "무색", - "odor": "달콤한 과일향", - "flashPoint": "-20°C", - "autoIgnition": "465°C", - "boilingPoint": "56°C", - "density": "0.784", - "solubility": "완전 혼화", - "vaporPressure": "231 mmHg (25°C)", - "vaporDensity": "2.0", - "explosionRange": "2.5% ~ 12.8%", - "nfpa": { - "health": 1, - "fire": 3, - "reactivity": 0, - "special": "" - }, - "hazardClass": "인화성 액체 (Class 3)", - "ergNumber": "127", - "idlh": "2,500 ppm", - "aegl2": "3,200 ppm", - "erpg2": "—", - "responseDistanceFire": "800m", - "responseDistanceSpillDay": "0.1km", - "responseDistanceSpillNight": "0.2km", - "marineResponse": "해수에 완전 용해 + 급속 증발", - "ppeClose": "레벨B: 비밀폐형+SCBA", - "ppeFar": "레벨C: 화학보호복+정화식호흡기", - "msds": { - "hazard": "인화성 액체 구분2, 특정표적장기독성(단회) 구분3", - "firstAid": "흡입 시 신선한 공기, 피부접촉 시 물 세척", - "fireFighting": "내알코올 포말, CO₂, 건조분말", - "spillResponse": "흡수제 회수, 환기, 점화원 제거", - "exposure": "TWA 500 ppm, STEL 750 ppm", - "regulation": "위험물안전관리법 제4류" - }, - "ibcHazard": "안전상의 위험성(S), 인화성(F)", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G (일체형탱크)", - "ibcDetection": "가연성가스검지기", - "ibcFireFighting": "내알코올 포말", - "ibcMinRequirement": "IMO 2TYPE 이상", - "emsCode": "F-E, S-D", - "emsFire": "인화성 높음(인화점 -20°C). 내알코올 포말 필수.", - "emsSpill": "해수에 완전 용해 + 급속 증발. 수질 모니터링.", - "emsFirstAid": "흡입: 신선한 공기. 피부: 물 세척. 경구: 의료조치.", - "cargoCodes": [ - { - "code": "ACET", - "name": "ACETONE", - "company": "국제공통", - "source": "적부도" - }, - { - "code": "ACE", - "name": "ACETONE", - "company": "금호미쓰이", - "source": "용선자" - } - ], - "portFrequency": [ - { - "port": "울산항", - "portCode": "KRULS", - "lastImport": "2025-04-01", - "frequency": "높음" - }, - { - "port": "여수항", - "portCode": "KRYOS", - "lastImport": "2025-03-28", - "frequency": "중간" - } - ] - }, - { - "id": 15, - "abbreviation": "PHENOL", - "nameKr": "페놀", - "nameEn": "PHENOL", - "synonymsEn": "CARBOLIC ACID / HYDROXYBENZENE / PHENIC ACID", - "synonymsKr": "석탄산 · 합성수지 원료·소독제", - "unNumber": "2312", - "casNumber": "108-95-2", - "transportMethod": "산적액체(6.1류)", - "sebc": "SD (Sinker/Dissolver)", - "usage": "합성수지(BPA), 소독제", - "state": "결정(고체)/액체(용융)", - "color": "무색~연분홍", - "odor": "독특한 약품취", - "flashPoint": "79°C", - "autoIgnition": "715°C", - "boilingPoint": "181.7°C", - "density": "1.07", - "solubility": "84 g/L", - "vaporPressure": "0.36 mmHg (25°C)", - "vaporDensity": "3.24", - "explosionRange": "1.8% ~ 8.6%", - "nfpa": { - "health": 4, - "fire": 2, - "reactivity": 0, - "special": "" - }, - "hazardClass": "독성 액체 (Class 6.1), 부식성", + "hazardClass": "유해액체물질/z", "ergNumber": "153", - "idlh": "250 ppm", - "aegl2": "29 ppm", - "erpg2": "50 ppm", - "responseDistanceFire": "800m", - "responseDistanceSpillDay": "0.2km", - "responseDistanceSpillNight": "0.8km", - "marineResponse": "비중 1.07 → Sinker. 저층 축적. 수중 독성 높음", - "ppeClose": "레벨A: 완전밀폐+SCBA", - "ppeFar": "레벨B: 비밀폐형+SCBA", - "msds": { - "hazard": "급성 독성(경구) 구분3, 급성 독성(경피) 구분3, 피부 부식성 구분1A", - "firstAid": "피부: 즉시 PEG(폴리에틸렌글리콜)로 세척, 물 사용 시 다량", - "fireFighting": "물분무, 내알코올 포말, CO₂", - "spillResponse": "흡수제 회수, 저층 오염 모니터링", - "exposure": "TWA 5 ppm, STEL 없음", - "regulation": "위험물안전관리법, 화학물질관리법(사고대비물질)" - }, - "ibcHazard": "안전상의 위험성(S), 독성(T), 부식성(C)", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G (일체형탱크)", - "ibcDetection": "독성가스검지기", - "ibcFireFighting": "물분무, 내알코올 포말", - "ibcMinRequirement": "IMO 2TYPE 이상, 가열설비(융점 41°C)", - "emsCode": "F-A, S-A", - "emsFire": "가연성. 물분무, 내알코올 포말. 독성 연소 가스 주의.", - "emsSpill": "비중>1 → 침강. 용해성 있어 수질 오염. 저층 모니터링 필수.", - "emsFirstAid": "피부: PEG 400 세척 → 다량의 물. 흡입: 신선한 공기. 경피 독성 높음.", - "cargoCodes": [ - { - "code": "PHENOL", - "name": "PHENOL", - "company": "국제공통", - "source": "적부도" - }, - { - "code": "PHE", - "name": "PHENOL (MOLTEN)", - "company": "금호미쓰이", - "source": "용선자" - } - ], - "portFrequency": [ - { - "port": "울산항", - "portCode": "KRULS", - "lastImport": "2025-03-30", - "frequency": "높음" - }, - { - "port": "여수항", - "portCode": "KRYOS", - "lastImport": "2025-03-20", - "frequency": "중간" - } - ] - }, - { - "id": 16, - "abbreviation": "ETHAN", - "nameKr": "에틸렌", - "nameEn": "ETHYLENE", - "synonymsEn": "ETHENE / OLEFIANT GAS", - "synonymsKr": "에텐 · 석유화학 기초원료", - "unNumber": "1962", - "casNumber": "74-85-1", - "transportMethod": "산적액체(2류)", - "sebc": "G (Gas)", - "usage": "PE, EO 원료, 석유화학 기초", - "state": "기체", - "color": "무색", - "odor": "약간 달콤한 취", - "flashPoint": "—", - "autoIgnition": "490°C", - "boilingPoint": "-103.7°C", - "density": "0.57 (액체)", - "solubility": "0.01%", - "vaporPressure": "— (극고압)", - "vaporDensity": "0.97", - "explosionRange": "2.7% ~ 36.0%", - "nfpa": { - "health": 1, - "fire": 4, - "reactivity": 2, - "special": "" - }, - "hazardClass": "인화성 가스 (Class 2.1)", - "ergNumber": "116P", - "idlh": "— (단순질식)", - "aegl2": "—", - "erpg2": "—", - "responseDistanceFire": "800m", - "responseDistanceSpillDay": "0.3km", - "responseDistanceSpillNight": "1.1km", - "marineResponse": "기체 확산, 폭발범위 넓음, 해상수거 불가", - "ppeClose": "레벨B: 비밀폐형+SCBA", - "ppeFar": "레벨D: 작업복(환기 확보 시)", - "msds": { - "hazard": "인화성 가스 구분1", - "firstAid": "질식: 산소 공급", - "fireFighting": "건조분말, CO₂", - "spillResponse": "점화원 제거, 환기", - "exposure": "TWA 없음", - "regulation": "고압가스안전관리법" - }, - "ibcHazard": "안전상의 위험성(S), 인화성(F)", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2PG (독립형가압탱크)", - "ibcDetection": "가연성가스검지기", - "ibcFireFighting": "건조분말, CO₂", - "ibcMinRequirement": "IMO 2TYPE, 냉각설비", - "emsCode": "F-D, S-U", - "emsFire": "인화성 극히 높음, 폭발범위 넓음. 건조분말, CO₂.", - "emsSpill": "기체 확산. 점화원 제거. 환기.", - "emsFirstAid": "질식: 산소 공급.", - "cargoCodes": [ - { - "code": "ETHAN", - "name": "ETHYLENE", - "company": "국제공통", - "source": "적부도" - }, - { - "code": "ETH", - "name": "ETHYLENE", - "company": "LG화학", - "source": "용선자" - } - ], - "portFrequency": [ - { - "port": "울산항", - "portCode": "KRULS", - "lastImport": "2025-04-02", - "frequency": "높음" - }, - { - "port": "여수항", - "portCode": "KRYOS", - "lastImport": "2025-04-01", - "frequency": "높음" - } - ] - }, - { - "id": 17, - "abbreviation": "H2SO4", - "nameKr": "황산", - "nameEn": "SULPHURIC ACID", - "synonymsEn": "SULFURIC ACID / OIL OF VITRIOL / BATTERY ACID", - "synonymsKr": "유산 · 비료·제철·석유정제", - "unNumber": "1830", - "casNumber": "7664-93-9", - "transportMethod": "산적액체(8류)", - "sebc": "SD (Sinker/Dissolver)", - "usage": "비료, 제철, 석유정제", - "state": "점성 액체", - "color": "무색~황색", - "odor": "무취(순수)~자극취(농축)", - "flashPoint": "— (불연)", - "autoIgnition": "— (불연)", - "boilingPoint": "337°C", - "density": "1.84", - "solubility": "완전 혼화", - "vaporPressure": "0.001 mmHg", - "vaporDensity": "3.4", - "explosionRange": "—", - "nfpa": { - "health": 3, - "fire": 0, - "reactivity": 2, - "special": "W" - }, - "hazardClass": "부식성 (Class 8)", - "ergNumber": "137", - "idlh": "15 mg/m³", - "aegl2": "0.43 ppm", - "erpg2": "10 mg/m³", - "responseDistanceFire": "500m (주변 화재)", - "responseDistanceSpillDay": "0.3km", - "responseDistanceSpillNight": "1.0km", - "marineResponse": "비중 1.84 → 즉시 침강. 해수 반응 시 발열·미스트", - "ppeClose": "레벨A: 완전밀폐+SCBA", - "ppeFar": "레벨B: 비밀폐형+SCBA", - "msds": { - "hazard": "피부 부식성 구분1A, 심한 눈 손상 구분1", - "firstAid": "피부: 즉시 다량의 물로 15분 이상 세척. 눈: 세안 15분 이상", - "fireFighting": "물분무(희석 주의), 건조분말", - "spillResponse": "중화제(석회, 소다회), 배수구 차단", - "exposure": "TWA 0.2 mg/m³", - "regulation": "위험물안전관리법, 화학물질관리법(사고대비물질)" - }, - "ibcHazard": "부식성(C), 반응성(R)", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G (내식재료)", - "ibcDetection": "없음", - "ibcFireFighting": "물분무", - "ibcMinRequirement": "IMO 2TYPE, 내산 탱크코팅", - "emsCode": "F-A, S-B", - "emsFire": "비가연. 주변 화재 시 독성 SO₃ 미스트 발생. 물분무로 냉각.", - "emsSpill": "비중 1.84 → 즉시 침강. 물 접촉 시 발열 주의. 중화제 사용.", - "emsFirstAid": "피부: 즉시 다량의 물 15분. 눈: 세안 15분. 경구: 물·우유.", - "cargoCodes": [ - { - "code": "H2SO4", - "name": "SULPHURIC ACID", - "company": "국제공통", - "source": "적부도" - }, - { - "code": "SA", - "name": "SULFURIC ACID", - "company": "롯데정밀화학", - "source": "용선자" - } - ], - "portFrequency": [ - { - "port": "울산항", - "portCode": "KRULS", - "lastImport": "2025-04-02", - "frequency": "높음" - }, - { - "port": "여수항", - "portCode": "KRYOS", - "lastImport": "2025-04-01", - "frequency": "높음" - }, - { - "port": "인천항", - "portCode": "KRINC", - "lastImport": "2025-03-28", - "frequency": "높음" - } - ] - }, - { - "id": 18, - "abbreviation": "NaOH", - "nameKr": "가성소다", - "nameEn": "SODIUM HYDROXIDE SOLUTION", - "synonymsEn": "CAUSTIC SODA / LYE / SODA LYE", - "synonymsKr": "수산화나트륨 · 화학공업·수처리", - "unNumber": "1824", - "casNumber": "1310-73-2", - "transportMethod": "산적액체(8류)", - "sebc": "D (Dissolver)", - "usage": "화학공업, 수처리, 세제", - "state": "액체(수용액)", - "color": "무색~약간 혼탁", - "odor": "무취", - "flashPoint": "— (불연)", - "autoIgnition": "— (불연)", - "boilingPoint": "140°C (50% 용액)", - "density": "1.52 (50% 용액)", - "solubility": "완전 혼화", - "vaporPressure": "0 mmHg (실온)", - "vaporDensity": "—", - "explosionRange": "—", - "nfpa": { - "health": 3, - "fire": 0, - "reactivity": 1, - "special": "" - }, - "hazardClass": "부식성 (Class 8)", - "ergNumber": "154", - "idlh": "10 mg/m³", - "aegl2": "—", - "erpg2": "5 mg/m³", - "responseDistanceFire": "—", - "responseDistanceSpillDay": "0.1km", - "responseDistanceSpillNight": "0.3km", - "marineResponse": "해수에 용해, pH 변화 → 해양생태계 영향", - "ppeClose": "레벨B: 비밀폐형+SCBA", - "ppeFar": "레벨C: 화학보호복+정화식호흡기", - "msds": { - "hazard": "피부 부식성 구분1A, 심한 눈 손상 구분1", - "firstAid": "피부: 다량의 물로 15분 세척. 눈: 즉시 세안 15분 이상", - "fireFighting": "비가연, 주변 소화", - "spillResponse": "중화제(산성용액), 배수구 차단", - "exposure": "TWA 2 mg/m³", - "regulation": "위험물안전관리법, 화학물질관리법" - }, - "ibcHazard": "부식성(C)", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G (내식재료)", - "ibcDetection": "없음", - "ibcFireFighting": "해당없음", - "ibcMinRequirement": "IMO 3TYPE, 내알칼리 탱크코팅", - "emsCode": "F-A, S-B", - "emsFire": "비가연. 주변 화재 시 냉각 주수.", - "emsSpill": "해수에 용해. pH 변화 모니터링. 중화제 사용.", - "emsFirstAid": "피부: 다량의 물 15분. 눈: 즉시 세안.", - "cargoCodes": [ - { - "code": "NaOH", - "name": "SODIUM HYDROXIDE SOLUTION", - "company": "국제공통", - "source": "적부도" - }, - { - "code": "CSL", - "name": "CAUSTIC SODA LIQUID", - "company": "OCI", - "source": "용선자" - } - ], - "portFrequency": [ - { - "port": "울산항", - "portCode": "KRULS", - "lastImport": "2025-04-01", - "frequency": "높음" - }, - { - "port": "인천항", - "portCode": "KRINC", - "lastImport": "2025-03-30", - "frequency": "높음" - }, - { - "port": "여수항", - "portCode": "KRYOS", - "lastImport": "2025-03-28", - "frequency": "중간" - } - ] - }, - { - "id": 19, - "abbreviation": "AAN", - "nameKr": "아크릴로니트릴", - "nameEn": "ACRYLONITRILE", - "synonymsEn": "VINYL CYANIDE / PROPENENITRILE / CYANOETHYLENE", - "synonymsKr": "시안화비닐 · 아크릴섬유·ABS 원료", - "unNumber": "1093", - "casNumber": "107-13-1", - "transportMethod": "산적액체(3류)", - "sebc": "ED (Evaporator/Dissolver)", - "usage": "아크릴섬유, ABS, NBR 원료", - "state": "액체", - "color": "무색", - "odor": "양파/마늘취", - "flashPoint": "0°C", - "autoIgnition": "481°C", - "boilingPoint": "77°C", - "density": "0.806", - "solubility": "7.3%", - "vaporPressure": "109 mmHg (25°C)", - "vaporDensity": "1.83", - "explosionRange": "3.0% ~ 17.0%", - "nfpa": { - "health": 4, - "fire": 3, - "reactivity": 2, - "special": "" - }, - "hazardClass": "인화성 액체 (Class 3), 독성", - "ergNumber": "131P", - "idlh": "85 ppm", - "aegl2": "10 ppm", - "erpg2": "35 ppm", - "responseDistanceFire": "800m", - "responseDistanceSpillDay": "0.5km", - "responseDistanceSpillNight": "2.0km", - "marineResponse": "부분 용해 + 증발. 독성 높음", - "ppeClose": "레벨A: 완전밀폐+SCBA", - "ppeFar": "레벨B: 비밀폐형+SCBA", - "msds": { - "hazard": "인화성 액체 구분2, 급성 독성(흡입) 구분2, 발암성 구분2", - "firstAid": "흡입: 즉시 신선한 공기. 피부: 오염의복 제거, 다량의 물", - "fireFighting": "내알코올 포말, CO₂, 건조분말", - "spillResponse": "흡수제 회수, 환기, 독성가스 경보", - "exposure": "TWA 2 ppm, STEL 없음", - "regulation": "위험물안전관리법, 화학물질관리법(사고대비물질), 산업안전보건법(발암물질)" - }, - "ibcHazard": "안전상의 위험성(S), 인화성(F), 독성(T)", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G (일체형탱크)", - "ibcDetection": "독성가스검지기, 가연성가스검지기", - "ibcFireFighting": "내알코올 포말", - "ibcMinRequirement": "IMO 2TYPE 이상, 억제제 첨가", - "emsCode": "F-E, S-D", - "emsFire": "인화성 높음. 독성가스 발생 주의. 내알코올 포말, CO₂.", - "emsSpill": "부분 용해 + 증발. 독성 높음 — 풍하측 대피. 흡수제 회수.", - "emsFirstAid": "흡입: 즉시 대피. 시안화물 중독 우려 — 해독제 준비.", - "cargoCodes": [ - { - "code": "AAN", - "name": "ACRYLONITRILE", - "company": "국제공통", - "source": "적부도" - }, - { - "code": "AN", - "name": "ACRYLONITRILE", - "company": "LG화학", - "source": "용선자" - } - ], - "portFrequency": [ - { - "port": "울산항", - "portCode": "KRULS", - "lastImport": "2025-03-28", - "frequency": "중간" - }, - { - "port": "여수항", - "portCode": "KRYOS", - "lastImport": "2025-03-15", - "frequency": "낮음" - } - ] - }, - { - "id": 20, - "abbreviation": "VCM", - "nameKr": "염화비닐", - "nameEn": "VINYL CHLORIDE", - "synonymsEn": "CHLOROETHYLENE / CHLOROETHENE / VCM", - "synonymsKr": "모노머 · PVC 원료", - "unNumber": "1086", - "casNumber": "75-01-4", - "transportMethod": "산적액체(2류)", - "sebc": "G (Gas)", - "usage": "PVC 원료", - "state": "기체(액화)", - "color": "무색", - "odor": "달콤한 에테르취", - "flashPoint": "-78°C", - "autoIgnition": "472°C", - "boilingPoint": "-13°C", - "density": "0.91 (액체)", - "solubility": "0.11%", - "vaporPressure": "3,000 mmHg (25°C)", - "vaporDensity": "2.15", - "explosionRange": "3.6% ~ 33.0%", - "nfpa": { - "health": 2, - "fire": 4, - "reactivity": 1, - "special": "" - }, - "hazardClass": "인화성 가스 (Class 2.1), 발암성", - "ergNumber": "116P", - "idlh": "-", - "aegl2": "140 ppm", - "erpg2": "500 ppm", - "responseDistanceFire": "800m", - "responseDistanceSpillDay": "0.3km", - "responseDistanceSpillNight": "1.2km", - "marineResponse": "기화 확산. 발암물질 — 노출 최소화", - "ppeClose": "레벨A: 완전밀폐+SCBA", - "ppeFar": "레벨B: 비밀폐형+SCBA", - "msds": { - "hazard": "인화성 가스 구분1, 발암성 구분1A", - "firstAid": "흡입: 즉시 신선한 공기. 호흡곤란 시 산소", - "fireFighting": "건조분말, CO₂, 물분무(냉각)", - "spillResponse": "환기, 점화원 제거, 가스검지기", - "exposure": "TWA 1 ppm", - "regulation": "고압가스안전관리법, 산업안전보건법(발암물질)" - }, - "ibcHazard": "안전상의 위험성(S), 인화성(F), 독성(T)", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2PG (독립형가압탱크)", - "ibcDetection": "가연성가스검지기, 독성가스검지기", - "ibcFireFighting": "건조분말, CO₂", - "ibcMinRequirement": "IMO 2TYPE, 억제제, 냉각설비", - "emsCode": "F-D, S-U", - "emsFire": "인화성 극히 높음. 건조분말, CO₂. 발암물질 → 노출 최소화.", - "emsSpill": "기화 확산. 점화원 제거. 풍하측 대피.", - "emsFirstAid": "흡입: 즉시 신선한 공기. 발암물질 — 노출 기록 보관.", - "cargoCodes": [ - { - "code": "VCM", - "name": "VINYL CHLORIDE", - "company": "국제공통", - "source": "적부도" - }, - { - "code": "VC", - "name": "VINYL CHLORIDE MONOMER", - "company": "한화솔루션", - "source": "용선자" - } - ], - "portFrequency": [ - { - "port": "여수항", - "portCode": "KRYOS", - "lastImport": "2025-04-01", - "frequency": "높음" - }, - { - "port": "울산항", - "portCode": "KRULS", - "lastImport": "2025-03-28", - "frequency": "중간" - } - ] - }, - { - "id": 21, - "abbreviation": "BTDN", - "nameKr": "1.3부타디엔", - "nameEn": "1-3 BUTADIENE", - "synonymsEn": "1-3 BUTADIENE / BUTADIENE / BUTADIEN / 1.3-BUTADIENE / BUTADIEEN / PYROLYLENE / 1.3-BUTADINE / DIVINYL / BUDIENE / BIVINYL / ERYTHRENE", - "synonymsKr": "1.3부타디엔 / 뷰타다이엔 / 부타이엔 / 1.3-뷰타다이엔", - "unNumber": "1010", - "casNumber": "106-99-0", - "transportMethod": "", - "sebc": "", - "usage": "합성고무(특히 타이어의 주요원료)", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "60m", + "responseDistanceSpillNight": "(소량) 낮 800m, 밤 1,800m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "독성, 부식성, 증발(E), 해상수거 불가", + "firstAid": "흡입노출 • 신선한 곳으로 이동 피부접촉 • 20분 이상 흐르는 물메 씻을 것 안구접촉 -20분 이상 흐르는 물에씻을 것 경구섭취 • 구강대구강법 인공호흡 하지 말고 적절한 호흡의료장비 이용, 입을 씻어낼 것 초동대용방법 보호복 스 호흡구 보안경 i 보호장갑 기타장비 3,4형식 (C급) 방독마스크(반면.전면): O 셔 O 열화상카메라 초기 이격거리(m) 소량(60), 대량(400) 방호거리 (m) 소량(낮 800, 밤 1,800) 대량(낮4,800, 밤7,400) 해상유출시 ►유출물질은 섭취 시 유해성이 있고 피부자극을 유발할 수 있으므로 모든 출동세력 풍상에 위치, 최소 이격거리 유지, 주변선박통제 ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3,4형식 보호의 착용, 증기흡입과 피부와 눈에 접촉올 피할 것 ► 유출물질은 용해되므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 화재시대피거리 (m) 800 화재 •폭발시 ► 풍상에 위치, 최소 이격거리 유지하고 내알콜포 이용 화재진압 ► 열화상카메라 운용(결과전파), 소화포 이용 사고선 냉각조치 할 것 ►직수분사 금지(화재를 번지게", + "fireFighting": "내알코올성 포말, 분무주수, CO₂, 건조분말.", + "spillResponse": "점화원 제거. 통풍. 누출 차단. 흡착제로 회수.", "exposure": "", "regulation": "" }, @@ -1877,63 +133,69 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-A", + "emsFire": "F-A", + "emsSpill": "S-A", "emsFirstAid": "", "cargoCodes": [ { - "code": "BTDN", - "name": "1-3 BUTADIENE", - "company": "", - "source": "화물적부도" + "code": "14BD", + "name": "1-4 BUTANEDIOL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BDO", + "name": "BUTANEDIOL", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 22, - "abbreviation": "150BS", - "nameKr": "베이스오일", + "id": 3, + "abbreviation": "500N", + "nameKr": "기유 오일(압축기, 변압기용 산업용 윤활유)/제품명", "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", + "synonymsKr": "YU BASE 6. YU BASE 8. 수소화처리된 중질 파라핀 정제유(석유〉 취급시설 오드폘 터미널코리아(주), 태영 인더스트리 , (쥐정일스톨트헤븐", + "synonymsEn": "HYDRAULIC FLUID / distillates(petroleum),hydrotreated(mild)heavyparaffinic / V LUBE J / superioroil / HYDRAULIC FLUID / Neo SK-OIL L400 / emulsifiableoil / horticulturalsprayoil / HYDROTREATEDHYDROCRACKEDOIL / Hydraulic Fluid@0.5 mg / mL in Hexane / HYDRAULIC FLUID ISO 9001:2015 REACH", "unNumber": "1203", "casNumber": "64742-54-7", "transportMethod": "", "sebc": "", - "usage": "자동차용, 선업용, 선박용 윤활유 및 그리스 (GS칼텍스 제품)", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "usage": "윤활유 원료 험 해 류 분류되지 않음", + "state": "액체", + "color": "투명", + "odor": "석유냄새", + "flashPoint": "240℃", + "autoIgnition": "260~37rc", + "boilingPoint": "320~600℃", + "density": "0.84-0.94", + "solubility": "불용", + "vaporPressure": "(물 17.5mmHg)", "vaporDensity": "", "explosionRange": "", "nfpa": { "health": 0, - "fire": 0, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "해양환경관리법/기름", "ergNumber": "", - "idlh": "", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", + "responseDistanceFire": "자료없음", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", + "marineResponse": "부유 (F)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 신선한 공기가 있는 곳으로 이동하여 호흡하기 편한 자세로 휴식을 취할 것 피부접촉 • 다량의 물과 비누로 씻어넬 것. 자극이 지속될 시 의사진료를 받을 것 안구접촉 • 렌즈를 제거할 것. 물로 수 분간 세척할 것 경구섭취 • 불편할 경우 즉시 의사진료를 받을 것", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -1953,465 +215,327 @@ { "code": "150BS", "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 23, - "abbreviation": "150N", - "nameKr": "베이스오일", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "자동차용, 산업용 윤활유 (GS칼텍스 제품)", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "150N", "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 24, - "abbreviation": "150R", - "nameKr": "베이스오일", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "압축기, 변합기용, 산업용 윤활유 (GS칼텍스 제품)", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "150R", "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 25, - "abbreviation": "150SN", - "nameKr": "베이스오일", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "차량용, 산업용, 윤활유 (GS칼텍스 제품)", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "150SN", "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 26, - "abbreviation": "200N", - "nameKr": "베이스오일", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "산업용 윤활유 (GS칼텍스 제품)", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "200N", "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 27, - "abbreviation": "220N", - "nameKr": "베이스오일", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "차량용, 산업용 윤활유 (GS칼텍스 제품)", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "220N", "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 28, - "abbreviation": "2CST", - "nameKr": "베이스오일", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "일반적인 윤활유, 유압유 등 산업용 유제 (GS칼텍스 제품)", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "2CST", "name": "BASE OIL", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "4CST(100N)", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "500EX", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "500N", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "500SN", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "600N", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "600R", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "6CST(150N)", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "8CST(250N)", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HSB 150N", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PRIMA500", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ULTRA4", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ULTRA6", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ULTRA8", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "AU2", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "AU3", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "AU4", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "AU6", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "AU8", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "W150SN", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "Y2", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "Y3", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "Y4", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "Y5", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "Y6", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "Y8", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "YL3", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "YUBASE2", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "YUBASE3", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "YUBASE4", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "YUBASE4+", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "YUBASE6", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "YUBASE6+", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "YUBASE8", + "name": "BASE OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BS150N", + "name": "Brightstock 150N", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BS500N", + "name": "Brightstock 500N", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "N150R", + "name": "Neutral oil 150R", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "N240R", + "name": "Neutral oil 240R", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "N500R", + "name": "Neutral oil 500R", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "N600R", + "name": "Neutral oil 600R", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 29, + "id": 4, "abbreviation": "2EH", "nameKr": "2-에틸헥실 아크릴산", "nameEn": "2-ETHYL HEXANOL ACRYLATE", + "synonymsKr": "아크릴산 2-에틸헥실 에스터 / 옥틸 아크릴레이트 / 야크릴산 / 2-프로페논산", "synonymsEn": "2EHA / EHA / 2-ETHYL / ACRYLIC ACID 2-ETHYLHEXYL / 2-ETHYLHEXYL 2-PROPENOATE / OCTYL ACRYLATE / 2-ETHYLHEXYL PROPENOATE / 2-ETHYL-1-HEXYL ACRYLATE / ACRYLIC ACID 2-ETHYLEXYL ESTER", - "synonymsKr": "2-에틸헥실 아크릴산 / 2-에틸-1헥산올아크릴산 / 2-에틸-1-헥실아크릴산 / 2-에틸헥실2-프로펜산 / 2-에틸헥실아크릴레이트 / 2-프로펜산 / 아크릴산2-에틸헥실 / 옥틸아크릴산 / 2-에틸핵실아크릴산 / 2-에틸헥실아크릴산 / 에틸헥실아크릴레이트 / 2-에틸헥실 아크릴레이트 2-에틸헥실2-프로펜산 / 2-에틸헥실 아크릴산 / 2-프로펜산 2-에틸헥실 에스터 / 옥틸아크릴산", - "unNumber": "3077", + "unNumber": "3082", "casNumber": "103-11-7", - "transportMethod": "", - "sebc": "", - "usage": "폴리에틸렌 용기, 석유화학 제품, 가소제, 에멀션 안전제, 표면 활성제,세정제, 고무 및 합성 가소제 생산", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "산적액체(Y류)", + "sebc": "E (Evaporator)", + "usage": "수성페인트. 접착제, 인쇄잉크 피부부식성/극성(구분2) 피부과민성(구분1) 만성 수생환경유해성(구분2)", + "state": "액체", + "color": "무색, 투명", + "odor": "자극적", + "flashPoint": "82.2℃", + "autoIgnition": "245℃", + "boilingPoint": "214℃", + "density": "0.89", + "solubility": "0.1W25 仁)", + "vaporPressure": "0.18mmHg(2W", + "vaporDensity": "6,35", + "explosionRange": "0.8~6.4%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 1, + "fire": 2, + "reactivity": 1, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "129P", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "부유 (F)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "증발(E), 해상수거 불가", + "firstAid": "흡입노출 •산소공급. 인공호흡, 의료조치 귀 피부접촉 • 20분 이상 호르는 물에 피부와 눈을 씻을 것, 열을 없애기 위해 찬물로 씻을 것 안구접촉 • 몇 분간 물로 조심해서 씻어낼 것, 콘택트렌즈를 제거할 것 경구섭취 • 의료조치 초동 대응방법 대응장비 보호복 호흡구 보안경 보호장갑 기타장비 3,4형식 (C급) 방독마스크(반면, 전면) O O 열화상카메라 초기 이격거리 (m) 자료없음 방호거리 (m) 자료없옴 헤상유출시 ► 유출물질은 눈, 피부, 호흡기 자극, 알레르기 반응 등 인체 유해성이 있으므로. 모든 출동세력 풍상에 위치 ► 출동 경비정(방제정) 사고선 접근 시 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용. 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 부유성 물질로 방제조치가 필요함(오일펜스 설치, 유겔화제, 유흡착재 이용 흡착회수) ► 화학방제함 유출물질 농도 탐지. 안전확보 시까지 지속적인 모니터링 화재 시대피거리(m) 800 + 화재 •폭발시 ► 유출물질은 연소시 유독가스 방출, 풍상에 위치, 최소 이격거리 유지하고 내알콜포 이용 화재진압 ► 열화상카메라 운용(결과전파), 소화포 이용 사고선 냉각조치 할", + "fireFighting": "내알코올성 포말/분무주수/CO₂. 연소 시 독성 증기 발생.", + "spillResponse": "점화원 제거. 주변 해상 통제.", "exposure": "", "regulation": "" }, @@ -2421,440 +545,38 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "2EH", "name": "2-ETHYL HEXANOL ACRYLATE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 30, - "abbreviation": "4CST(100N)", - "nameKr": "유제 오일(고급 차량용, 산업용 윤활유)/제품명", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "고급 차동차용, 산업용 윤활유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "4CST(100N)", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" + "code": "2EHACR", + "name": "2-Ethylhexyl acrylate", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 31, - "abbreviation": "500EX", - "nameKr": "유제 오일(고급 차량용, 산업용 윤활유)/제품명", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "고급 차동차용, 산업용 윤활유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "500EX", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 32, - "abbreviation": "500N", + "id": 5, + "abbreviation": "70N", "nameKr": "기유 오일(압축기, 변압기용 산업용 윤활유)/제품명", "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "압축기, 변합기용, 산업용 윤활유 (GS칼텍스 제품)", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "500N", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 33, - "abbreviation": "500SN", - "nameKr": "베이스오일(윤활기유) /제품명", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "윤활기유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "500SN", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 34, - "abbreviation": "600N", - "nameKr": "유제오일(차량용, 산업용, 선박용 윤활유)/제품명", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "차량용, 산업용, 선박용 윤활유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "600N", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 35, - "abbreviation": "600R", - "nameKr": "기유 오일(압축기, 변압기용 산업용 윤활유)/제품명", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "압축기, 변압기용 산업용 윤활유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "600R", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 36, - "abbreviation": "60N", - "nameKr": "베이스오일(프로세스오일, 금속가공유) /제품명", - "nameEn": "BASE OIL", - "synonymsEn": "HYDRAULIC FLUID / distillates(petroleum),hydrotreated(mild)heavyparaffinic / V LUBE J / superioroil / HYDRAULIC FLUID / Neo SK-OIL L400 / emulsifiableoil / horticulturalsprayoil / HYDROTREATEDHYDROCRACKEDOIL / Hydraulic Fluid@0.5 mg/mL in Hexane / HYDRAULIC FLUID ISO 9001:2015 REACH", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", + "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체 / 석유유래물질, 유압유체", + "synonymsEn": "HYDRAULIC FLUID / distillates(petroleum),hydrotreated(mild)heavyparaffinic / V LUBE J / superioroil / HYDRAULIC FLUID / Neo SK-OIL L400 / emulsifiableoil / horticulturalsprayoil / HYDROTREATEDHYDROCRACKEDOIL / Hydraulic Fluid@0.5 mg / mL in Hexane / HYDRAULIC FLUID ISO 9001:2015 REACH", "unNumber": "1203", "casNumber": "64742-56-8", "transportMethod": "", "sebc": "", - "usage": "프로세스오일, 금속가공유", + "usage": "압축기, 변압기용 산업용 윤활유", "state": "", "color": "", "odor": "", @@ -2905,331 +627,71 @@ { "code": "60N", "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 37, - "abbreviation": "6CST(150N)", - "nameKr": "유제 오일(고급 차량용, 산업용 윤활유)/제품명", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "고급 차량용, 산업용 윤활유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "6CST(150N)", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 38, - "abbreviation": "70N", - "nameKr": "기유 오일(압축기, 변압기용 산업용 윤활유)/제품명", - "nameEn": "BASE OIL", - "synonymsEn": "HYDRAULIC FLUID / distillates(petroleum),hydrotreated(mild)heavyparaffinic / V LUBE J / superioroil / HYDRAULIC FLUID / Neo SK-OIL L400 / emulsifiableoil / horticulturalsprayoil / HYDROTREATEDHYDROCRACKEDOIL / Hydraulic Fluid@0.5 mg/mL in Hexane / HYDRAULIC FLUID ISO 9001:2015 REACH", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", - "unNumber": "1203", - "casNumber": "64742-56-8", - "transportMethod": "", - "sebc": "", - "usage": "압축기, 변압기용 산업용 윤활유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "70N", "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 39, - "abbreviation": "80SN", - "nameKr": "베이스오일(프로세스오일, 금속가공유) /제품명", - "nameEn": "BASE OIL", - "synonymsEn": "HYDRAULIC FLUID / distillates(petroleum),hydrotreated(mild)heavyparaffinic / V LUBE J / superioroil / HYDRAULIC FLUID / Neo SK-OIL L400 / emulsifiableoil / horticulturalsprayoil / HYDROTREATEDHYDROCRACKEDOIL / Hydraulic Fluid@0.5 mg/mL in Hexane / HYDRAULIC FLUID ISO 9001:2015 REACH", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", - "unNumber": "1203", - "casNumber": "64742-56-8", - "transportMethod": "", - "sebc": "", - "usage": "프로세스오일, 금속가공유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "80SN", "name": "BASE OIL", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 40, - "abbreviation": "8CST(250N)", - "nameKr": "유제 오일(고급 산업용 윤활유)/제품명", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "고급 산업용 윤활유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "8CST(250N)", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 41, - "abbreviation": "91RON", - "nameKr": "휘발유(옥탄가로 표기)", + "id": 6, + "abbreviation": "AKI84", + "nameKr": "휘발유(AKI = anti-Knock index)", "nameEn": "GASOLINE", - "synonymsEn": "OLEFINS / BENZYNA / BENZINEBR-1 / BENZINEBR-2 / HERbicidees / gasolinebr-1", "synonymsKr": "가솔린 / 휘발유", + "synonymsEn": "OLEFINS / BENZYNA / BENZINEBR-1 / BENZINEBR-2 / HERbicidees / gasolinebr-1", "unNumber": "1261", "casNumber": "86290-81-5", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "FE (Float-Evaporator)", "usage": "자동차 연료유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "액체", + "color": "무색~담황색", + "odor": "휘발유 냄새", + "flashPoint": "-43℃", + "autoIgnition": "280~456℃", + "boilingPoint": "30~225℃", + "density": "0.72~0.78", + "solubility": "불용", + "vaporPressure": "275~475 mmHg (25℃)", + "vaporDensity": "3~4", + "explosionRange": "1.4~7.6%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 3, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "인화성액체", + "ergNumber": "128", "idlh": "", "aegl2": "", "erpg2": "", "responseDistanceFire": "", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "부유 후 증발, 해상수거 어려움", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "인화성, 피부/흡입 유해성, 발암성", + "firstAid": "흡입: 신선한 공기. 피부/안구: 다량의 물로 세척. 경구: 구토유발 금지, 즉시 의료조치.", + "fireFighting": "내알코올성 포말/분무주수/CO₂/건조분말. 직사주수 금지.", + "spillResponse": "점화원 제거. 주변 해상 통제. 오일펜스로 확산 방지. 흡착재 회수.", + "exposure": "TWA 300 ppm, STEL 500 ppm", + "regulation": "화학물질관리법, 위험물안전관리법(제4류 제1석유류)" }, "ibcHazard": "", "ibcShipType": "", @@ -3237,407 +699,257 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { "code": "91RON", "name": "GASOLINE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 42, - "abbreviation": "95RON", - "nameKr": "휘발유(옥탄가로 표기)", - "nameEn": "GASOLINE", - "synonymsEn": "OLEFINS / BENZYNA / BENZINEBR-1 / BENZINEBR-2 / HERbicidees / gasolinebr-1", - "synonymsKr": "가솔린 / 휘발유", - "unNumber": "1261", - "casNumber": "86290-81-5", - "transportMethod": "", - "sebc": "", - "usage": "자동차 연료유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "95RON", "name": "GASOLINE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 43, - "abbreviation": "98RON", - "nameKr": "휘발유(옥탄가로 표기)", - "nameEn": "GASOLINE", - "synonymsEn": "OLEFINS / BENZYNA / BENZINEBR-1 / BENZINEBR-2 / HERbicidees / gasolinebr-1", - "synonymsKr": "가솔린 / 휘발유", - "unNumber": "1261", - "casNumber": "86290-81-5", - "transportMethod": "", - "sebc": "", - "usage": "자동차 연료유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "98RON", "name": "GASOLINE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "AKI84", + "name": "GASOLINE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "AKI87", + "name": "GASOLINE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "AKI90", + "name": "GASOLINE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "AVGAS", + "name": "Avation gasoline", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 44, + "id": 7, "abbreviation": "AA", "nameKr": "아세트산", "nameEn": "ACETIC ACID", - "synonymsEn": "ACOH / HOAC / CUSUAN / ACETIC ACID GLACIAL / GLACIAL / NATURAL ACETIC ACID / GLACIAL ACETIC / IODINE CHLORIDE", - "synonymsKr": "비네갈산 / 에탄오익산 / 에틸산 / 피롤리그너스산 / 글라시알아세트산 / 빙초산 / 메탄카르복실산 / 초산 / 아세틱애씨드", + "synonymsKr": "초산/에틸산/식초산/목초산", + "synonymsEn": "ACOH / HOAC / CUSUAN / ACETIC ACID GLACIAL / GLACIAL / NATURAL ACETIC ACID / GLACIAL ACETIC / IODINE CHLORIDE / Acetic acid, glacial / Acide acetique (French) / Acido acetico (Italian) / Azijnzuur (Dutch) / Essigsaeure (German) / Ethanoic acid / Fema number 2006 / Methanecarboxylic acid / Octowy kwas (Polish) / Pyroligneous acid / Vinegar acid / Vosol / USEPA / OPP Pesticide Code: 044001 / Ethylic acid", "unNumber": "2789", "casNumber": "64-19-7", - "transportMethod": "", - "sebc": "", - "usage": "아세트산 비닐, 에스테르, 아세트산 무수물 등의 원료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(8급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "조미료, 직물 및 염료산업 인화성액체 (구분3) - 구분 1", + "state": "액체 혹은 고체(녹는점 i6.rc)", + "color": "무색, 투명", + "odor": "시큼한 식초냄새", + "flashPoint": "44.4℃", + "autoIgnition": "46*", + "boilingPoint": "118℃", + "density": "1.05", + "solubility": "303 g/L (25℃)", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "2.07", + "explosionRange": "4~19.9%", "nfpa": { - "health": 0, - "fire": 0, + "health": 3, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/z", + "ergNumber": "132", + "idlh": "50 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성, 부식성, 피부/안구 심각한 손상", + "firstAid": "흡입노출 • 즉시 의료조치 피부접촉 • 피부를 물로 씻을 것, 화상의 경우 다량의 찬물로 씻을 것 안구접촉 • 몇 분간 물로 조심해서 씻을 것, 콘택트렌즈 제거 경구섭취 • 입을 씻어낼 것, 토하게 하지 말 것, 긴급 의료조치", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "다량 물로 희석. 점화원 제거. 주변 통제.", + "exposure": "TWA 10 ppm, STEL 15 ppm, IDLH 50 ppm", "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "F", + "ibcDetection": "C", "ibcFireFighting": "AC", - "ibcMinRequirement": "15.11.2, 15.11.3, 15.11.4, 15.11.6, 15.11.7, 15.11.8, 15.17, 15.19, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "ibcMinRequirement": "15.11.2, 15.11.3, 15.11.4,\n15.11.6, 15.11.7, 15.11.8,\n15.17, 15.19, 16.2.9", + "emsCode": "F-E, S-C", + "emsFire": "F-E", + "emsSpill": "S-C", "emsFirstAid": "", "cargoCodes": [ { "code": "AA", "name": "ACETIC ACID", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 45, - "abbreviation": "AACID", - "nameKr": "아세트산", - "nameEn": "ACETIC ACID", - "synonymsEn": "ACOH / HOAC / CUSUAN / ACETIC ACID GLACIAL / GLACIAL / NATURAL ACETIC ACID / GLACIAL ACETIC / IODINE CHLORIDE", - "synonymsKr": "비네갈산 / 에탄오익산 / 에틸산 / 피롤리그너스산 / 글라시알아세트산 / 빙초산 / 메탄카르복실산 / 초산 / 아세틱애씨드", - "unNumber": "2789", - "casNumber": "64-19-7", - "transportMethod": "", - "sebc": "", - "usage": "아세트산 비닐, 에스테르, 아세트산 무수물 등의 원료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "F", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.11.2, 15.11.3, 15.11.4, 15.11.6, 15.11.7, 15.11.8, 15.17, 15.19, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "AACID", "name": "ACETIC ACID", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "AACID", + "name": "Acetic acid", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 46, + "id": 8, "abbreviation": "AAH", - "nameKr": "무수초산", - "nameEn": "ACETIC ANHYDRIDE", - "synonymsEn": "ACETIC / ACETYL ACETATE / ACETIC ANHYDRIDE / ACETANHYDRIDE / ACETIC ANHYDRID / ACETIC OXIDE / ACETYL OXIDE / ACETYL ANHYDRIDE", - "synonymsKr": "아세트산무수물 / 아세트산화물 / 빙초산 / 무수아세트산 / 아세틸아세트산 / 아세틸에테르 / 에탄오익무수물 / 에탄오익산무수물 / 아세튼 산 / 무수물 / 아세트 산화물 / 아세틸 무수물 / 아세틸 아세트산 / 아세틸 애테르 / 에탄오익 무수물 / 애탄오익 산 무수물 / 아세틸무수물", - "unNumber": "2031", + "nameKr": "무수 아세트산", + "nameEn": "Acetic anhydride", + "synonymsKr": "무수초산 / 무수 아세트산 / 아셰틸 에테르 / 메탄산 무수물 / 아세틱 옥사이드", + "synonymsEn": "Acetic anhydride / AC2O / acetic / Acetyl acetate / (CH3CO)2O / Acetic Anhydride (Controlled Chemical) / Acetanhydride / acetic anhydrid / ACETIC OXIDE / ACETYL OXIDE / Acetyl anhydride", + "unNumber": "1715", "casNumber": "108-24-7", - "transportMethod": "", - "sebc": "", - "usage": "폴리에스터 섬유, 합성섬유 제조 염료, 플라스틱, 약품, 폭발물, 페인트 제조 금속 표면 처리 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(8급), 산적액체(Z류)", + "sebc": "D (Dissolver)", + "usage": "", + "state": "잘굴절되는액체", + "color": "무색", + "odor": "강한식초냄새", + "flashPoint": "48.81℃", + "autoIgnition": "330℃", + "boilingPoint": "139.5℃", + "density": "1.08", + "solubility": "120g/L(20仁)", + "vaporPressure": "5.1mmHg(25r)", + "vaporDensity": "3.5", + "explosionRange": "2.7-10.3%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 3, + "fire": 2, + "reactivity": 1, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Z", + "ergNumber": "137", + "idlh": "200 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "증기밀도", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "풍하 방향으로 최소 50m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "인화성, 부식성, 피부/안구 심각한 손상, 수분과 반응", + "firstAid": "흡입: 신선한 공기, 산소공급. 피부: 즉시 다량의 물로 15분 이상 세척. 안구: 15분 이상 물로 세척. 경구: 구토유발 금지, 즉시 의료조치.", + "fireFighting": "분무주수/내알코올 포말/CO₂. 물과 반응 유의.", + "spillResponse": "다량의 물로 희석. 주변 통제. 점화원 제거.", + "exposure": "TWA 1 ppm, STEL 3 ppm, IDLH 200 ppm", + "regulation": "유해화학물질관리법" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "R", "ibcFireFighting": "AC", - "ibcMinRequirement": "15.11.2, 15.11.3, 15.11.4, 15.11.6, 15.11.7, 15.11.8, 15.12.3, 15.12.4, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "ibcMinRequirement": "15.11.2, 15.11.3, 15.11.4,\n15.11.6, 15.11.7, 15.11.8,\n15.12.3, 15.12.4, 15.19.6", + "emsCode": "F-E, S-C", + "emsFire": "F-E", + "emsSpill": "S-C", "emsFirstAid": "", "cargoCodes": [ { "code": "AAH", "name": "ACETIC ANHYDRIDE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "AAH", + "name": "Acetic anhydride", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 47, + "id": 9, "abbreviation": "LNG", "nameKr": "액화천연가스", "nameEn": "Liquefied Natural Gas", - "synonymsEn": "COMPRESSEDNATURAL GAS / SYNTH ETIC NATURAL GAS", "synonymsKr": "네츄널가스 / 천연가스", + "synonymsEn": "COMPRESSEDNATURAL GAS / SYNTH ETIC NATURAL GAS", "unNumber": "1972", "casNumber": "8006-14-2", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(2.1급), 산적액화가스", + "sebc": "G (Gas)", "usage": "각종 연료 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", + "state": "기체(액화)", + "color": "무색", + "odor": "무취", + "flashPoint": "-188℃", + "autoIgnition": "540℃", + "boilingPoint": "-161℃", + "density": "0.45", + "solubility": "22 mg/L (25℃)", "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "vaporDensity": "0.55", + "explosionRange": "5~15%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "고인화성 가스, 비등가체", + "ergNumber": "115", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "반경 800m 이상", + "responseDistanceSpillDay": "반경 50m 이상", + "responseDistanceSpillNight": "중하 300m 이상", + "marineResponse": "기체로 확산, 해상수거 불가", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "고인화성, 질식성(단순), 동상 위험, 저온 화상", + "firstAid": "흡입: 신선한 공기, 산소공급. 동상: 미온수 해동. 의료조치.", + "fireFighting": "가스 차단 우선. 차단 불가 시 화재 유지. CO₂/건조분말.", + "spillResponse": "점화원 제거. 환기 확보. 증기운 형성 시 대피.", "exposure": "", - "regulation": "" + "regulation": "고압가스안전관리법, 도시가스사업법" }, "ibcHazard": "", "ibcShipType": "", @@ -3645,67 +957,67 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-D, S-U", + "emsFire": "F-D", + "emsSpill": "S-U", "emsFirstAid": "", "cargoCodes": [ { "code": "LNG", "name": "Liquefied Natural Gas", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 48, - "abbreviation": "AAQ", - "nameKr": "무수암모니아", - "nameEn": "AMMONIA AQUEOUS", - "synonymsEn": "AQUEOUS AMMONIA / ANHYDROUS AMMORINA / AMMONIA WATER / AMMONIA IN METHANOL / AMMONIAC / AMMONIA GAS / AMMONIAK / AMMONIA HYDRATE", - "synonymsKr": "암모니아 / 무수물암모니아 / 암모니아가스", - "unNumber": "2001", - "casNumber": "7664-41-7", - "transportMethod": "", - "sebc": "", - "usage": "산업용 낸장 및 냉동 시스템 냉매", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "id": 10, + "abbreviation": "LPG", + "nameKr": "액화석유가스", + "nameEn": "Liquefied Petroleum Gas", + "synonymsKr": "액화석유계", + "synonymsEn": "PETROLEUMGAS / LIQUEFIED PETROLEUM / LIQUEFIED PETROLEUM GAS / COMPREESED PETROLEUM GAS / PETROLEUM GASES LIQUEFIED", + "unNumber": "1075", + "casNumber": "68476-85-7", + "transportMethod": "포장(2.1급), 산적액화가스", + "sebc": "G (Gas)", + "usage": "난반기, 온수기 등 산업 난반용", + "state": "기체(액화)", + "color": "무색", + "odor": "무취(부취제 첨가)", + "flashPoint": "-104℃", + "autoIgnition": "405~540℃", + "boilingPoint": "-42~-0.5℃", + "density": "0.51~0.58", + "solubility": "불용", + "vaporPressure": "고압", + "vaporDensity": "1.5~2.0", + "explosionRange": "1.9~9.5%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "고인화성 가스 (프로판/부탄 혼합)", + "ergNumber": "115", + "idlh": "2,100 ppm", + "aegl2": "17,000 ppm", "erpg2": "", "responseDistanceFire": "", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "기체로 확산, 해상수거 불가", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "고인화성, 질식성, 동상 위험(액화)", + "firstAid": "흡입: 신선한 공기, 산소공급. 동상: 미온수 해동. 긴급 의료조치.", + "fireFighting": "가스 차단 우선. CO₂/건조분말. 용기 냉각.", + "spillResponse": "점화원 제거. 환기 확보. 증기운 형성 시 대피.", + "exposure": "TWA 1,000 ppm", + "regulation": "고압가스안전관리법, 액화석유가스의 안전관리 및 사업법" }, "ibcHazard": "", "ibcShipType": "", @@ -3713,66 +1025,140 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-D, S-U", + "emsFire": "F-D", + "emsSpill": "S-U", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LPG", + "name": "Liquefied Petroleum Gas", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "LPG", + "name": "Liquefied Petroleum Gas", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 11, + "abbreviation": "AAQ", + "nameKr": "무수암모니아", + "nameEn": "AMMONIA AQUEOUS", + "synonymsKr": "암모니아 / 무수물암모니아 / 암모니아가스", + "synonymsEn": "AQUEOUS AMMONIA / ANHYDROUS AMMORINA / AMMONIA WATER / AMMONIA IN METHANOL / AMMONIAC / AMMONIA GAS / AMMONIAK / AMMONIA HYDRATE", + "unNumber": "1005", + "casNumber": "7664-41-7", + "transportMethod": "포장(2급), 산적액체(B류), 산적액화가스", + "sebc": "GD (Gas-Dissolver)", + "usage": "산업용 낸장 및 냉동 시스템 냉매", + "state": "기체", + "color": "무색", + "odor": "역겨운 냄새", + "flashPoint": "132。0(가스)", + "autoIgnition": "65rc", + "boilingPoint": "-33.35℃", + "density": "0.7(-33。0", + "solubility": "482g/L(25’C)", + "vaporPressure": "7,510mmHg(25t)", + "vaporDensity": "0.59", + "explosionRange": "15~28%", + "nfpa": { + "health": 3, + "fire": 1, + "reactivity": 0, + "special": "" + }, + "hazardClass": "유해액체물질/Y", + "ergNumber": "125", + "idlh": "300 ppm", + "aegl2": "160 ppm", + "erpg2": "", + "responseDistanceFire": "1m", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "최소반경 150m", + "marineResponse": "증발 (E)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", + "msds": { + "hazard": "독성, 부식성, 인화성(액화), 피부/안구 심각한 손상", + "firstAid": "흡입노출 • 의학적 조치 피부접촉 • 액화가스에 접촉한 경우 미지근한 물로 씻을 것 안구접촉 . 몇 분간 물로 씻을 것, 콘택트렌즈 제거 경구섭취 • 삼켰다면 입을 씻을 것, 토하게 하지 말 것. 간급 의료조치 초똥대응방범 대응장비 보호복 호흡구 보안경 보호장갑 기타장비 3.4형식(C급) 방독마스크(반면,전면) 스 열화상카메라 1형식 (1B) 공기호홉기 피 보호장화 1 초기 미격거리 (m) 150 방호거리 (m) 낮(800), 밤(2,300) | 해상유출시 ► 유출물질은 극인화성 가스로 폭발적인 반응이 일어날 수 있으므로 화재예방이 팔요. 가스흡입 시 급성독성이 있고 피부화상, 눈 손상을 일으킬 수 있으므로, 모든 출동세력 풍상에 위치, 최소 150rn 이격거리 유지, 주변선박 통제(흡연, 불꽃, 스파크 등 모든 점화원 제거) ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용(사고선 근접 시 1B급 착용), 증가흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 가스형태로 증발하므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 1 화재 시대피거리(m) 1", + "fireFighting": "가스 차단 우선. 분무주수로 냉각. 대량의 물로 희석.", + "spillResponse": "점화원 제거. 다량 물로 희석. 증기운 이동 억제.", + "exposure": "TWA 25 ppm, STEL 35 ppm, AEGL-2 160 ppm, IDLH 300 ppm", + "regulation": "고압가스안전관리법, 유해화학물질관리법" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-C, S-U", + "emsFire": "F-C", + "emsSpill": "S-U", "emsFirstAid": "", "cargoCodes": [ { "code": "AAQ", "name": "AMMONIA AQUEOUS", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 49, + "id": 12, "abbreviation": "ACE", "nameKr": "아세톤", "nameEn": "ACETONE", - "synonymsEn": "PROPAN-2ONE / 2-PROPANONE / ACETONE ALCOHOL PROPAN-1-ONE / PROPANON / 2-PROANON / DIMETHYLETAL / GRAMS DECOLORIZER", - "synonymsKr": "디메틸포름알데하드 / 베타-케토프로판 / 프로파논앤 / 2-프로파논 / 디메틸케톤 / 2-프로파논 / 메틸케톤 / 피로아세트에테르 / 다이메틸 케톤 / 다이메틸포름알데하이드 / 메틸 케톤 / 피로아세트 에테르", + "synonymsKr": "디메틸케톤 / 케톤 프로페인 / 메틸케톤 / 프로판온", + "synonymsEn": "PROPAN-2ONE / 2-PROPANONE / ACETONE ALCOHOL / PROPAN-1-ONE / PROPANON / 2-PROANON / DIMETHYLETAL / GRAMS DECOLORIZER / Aceton(GERMAN, DUTCH, POLISH) / AI3-01238 / Caswell No. 004 / Dimethyl ketone / Ketone propane / Beta-ketopropane / Methyl ketone / Propanone / 2-Propanone / DMK / Dimethyl formaldehyde / Dimethylketal / Acetone oil / USEPA / OPP pesticide code : 044101 / Chevron acetone / RCRA waste number u002 / FEMA No. 3326 / Pyroacetic acid / Pyroacetic ether / Ketone, dimethyl ketone propane / RF services / APS retl00020006 / Ashland acetone ecd / Mobil 878033", "unNumber": "1090", "casNumber": "67-64-1", - "transportMethod": "", - "sebc": "", - "usage": "플라스틱 생산 및 고무 가공 등 사용 페인트, 코팅제, 접착제, 화장품 등 다양한 제품 제조", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Z류)", + "sebc": "D (Dissolver)", + "usage": "매니큐어, 페인트, 니스 제거제, 왁스, 고무 분류 인화성액체(구분2) 흡인 유해성(구분2) -구분3(호흡기계자극〉 특정표적장기 독성(반복노출) - 구분2", + "state": "액체", + "color": "무색, 투명", + "odor": "과일향", + "flashPoint": "-18℃", + "autoIgnition": "540℃", + "boilingPoint": "56℃", + "density": "0.8", + "solubility": "1,000 g/L (25℃, 완전 혼화)", + "vaporPressure": "231 mmHg (25℃)", + "vaporDensity": "2.0", + "explosionRange": "2.2~13%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "유해액체물질/Z", + "ergNumber": "127", + "idlh": "2,500 ppm", + "aegl2": "4,400 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "최소반경 50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발용해 (ED)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성(F), 해상수거 불가", + "firstAid": "흡입: 신선한 공기, 산소공급. 피부: 오염 의류 제거, 물/비누 세척. 안구: 다량의 물로 15분 이상 세척. 경구: 구토 유발 금지, 즉시 의료조치.", + "fireFighting": "내알코올성 포말 또는 분무주수, CO₂. 직사주수 금지. 화재진압 후 사고선 냉각.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 분무 주수로 증기운 이동 억제.", + "exposure": "TWA 500 ppm, STEL 750 ppm", "regulation": "" }, "ibcHazard": "", @@ -3781,403 +1167,155 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "ACE", "name": "ACETONE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 50, - "abbreviation": "ACETON", - "nameKr": "아세톤", - "nameEn": "ACETONE", - "synonymsEn": "PROPAN-2ONE / 2-PROPANONE / ACETONE ALCOHOL PROPAN-1-ONE / PROPANON / 2-PROANON / DIMETHYLETAL / GRAMS DECOLORIZER", - "synonymsKr": "디메틸포름알데하드 / 베타-케토프로판 / 프로파논앤 / 2-프로파논 / 디메틸케톤 / 2-프로파논 / 메틸케톤 / 피로아세트에테르 / 다이메틸 케톤 / 다이메틸포름알데하이드 / 메틸 케톤 / 피로아세트 에테르", - "unNumber": "1090", - "casNumber": "67-64-1", - "transportMethod": "", - "sebc": "", - "usage": "플라스틱 생산 및 고무 가공 등 사용 페인트, 코팅제, 접착제, 화장품 등 다양한 제품 제조", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "ACETON", "name": "ACETONE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 51, - "abbreviation": "AKI84", - "nameKr": "휘발유(AKI = anti-Knock index)", - "nameEn": "GASOLINE", - "synonymsEn": "OLEFINS / BENZYNA / BENZINEBR-1 / BENZINEBR-2 / HERbicidees / gasolinebr-1", - "synonymsKr": "가솔린 / 휘발유", - "unNumber": "1261", - "casNumber": "86290-81-5", - "transportMethod": "", - "sebc": "", - "usage": "자동차 연료유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "AKI84", - "name": "GASOLINE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 52, - "abbreviation": "AKI87", - "nameKr": "휘발유(AKI = anti-Knock index)", - "nameEn": "GASOLINE", - "synonymsEn": "OLEFINS / BENZYNA / BENZINEBR-1 / BENZINEBR-2 / HERbicidees / gasolinebr-1", - "synonymsKr": "가솔린 / 휘발유", - "unNumber": "1261", - "casNumber": "86290-81-5", - "transportMethod": "", - "sebc": "", - "usage": "자동차 연료유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "code": "DMK", + "name": "DIMETHYLKETAL", + "company": "국제공통", + "source": "적부도" + }, { - "code": "AKI87", - "name": "GASOLINE", - "company": "", - "source": "화물적부도" + "code": "ACTN", + "name": "Acetone", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 53, - "abbreviation": "AKI90", - "nameKr": "휘발유(AKI = anti-Knock index)", - "nameEn": "GASOLINE", - "synonymsEn": "OLEFINS / BENZYNA / BENZINEBR-1 / BENZINEBR-2 / HERbicidees / gasolinebr-1", - "synonymsKr": "가솔린 / 휘발유", - "unNumber": "1261", - "casNumber": "86290-81-5", - "transportMethod": "", - "sebc": "", - "usage": "자동차 연료유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "AKI90", - "name": "GASOLINE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 54, + "id": 13, "abbreviation": "ALLA", "nameKr": "알릴알코올", "nameEn": "ALLYL ALCOHOL", - "synonymsEn": "PROP-2-EN-1-OL / PROPEN-1-OL / ALLYLIC ALCOHOL / ALLYLALKOHOL / PROPENOL / 2-PROPENOL / ALLYL ALCOHOL EXTRA PURE / ALLYALCOHOL", - "synonymsKr": "알리알콜 / 2-프로펜-1올 / 1-프로펜올-3 / 3-하이드록시프로펜 / 2-프로펜일알코올 / 알릴알콜 / 알리알코올 / 1-프로펜-3-올 / 2-프로펜놀 / 2-프로페닐 알코올 / 비닐 카비놀 / 알릴 알코올 / 오프비닐 카비놀 / 프로펜놀 / 프로페닐 알코올 / 프로펜 1-올-3", + "synonymsKr": "2-프로펜-1-올 / 알릴 알 / 알릴산 알코올 / 3-하이드록시프로펜 / 프로펜올 / 프로페닐 알코올", + "synonymsEn": "PROP-2-EN-1-OL / PROPEN-1-OL / ALLYLIC ALCOHOL / ALLYLALKOHOL / PROPENOL / 2-PROPENOL / ALLYL ALCOHOL EXTRA PURE / ALLYALCOHOL / ALCOOL ALLILCO (ITALIAN) / ALCOOL ALLYLIQUE (FRENCH) / ALLILOWY ALKOHOL (POLISH) / ALLYL AL / ALLYLALKOHOL (GERMAN) / ALLYLIC ALCOHOL / 3-HYDROXYPROPENE / ORVINYLCARBINOL / 1-Propene-3-ol / 2-Propene-1-ol / PROPENOL / PROPEN-1-OL-3 / 2-PROPENOL / 2-PROPEN-1-OL / PROPENYL ALCOHOL / 2-PROPENYL ALCOHOL / SHELL UNKRAUTTOD A / Vinyl carbinol / WEED DRENCH / USEPA / OPP Pesticide Code: 068401 / 1-propen-3-ol / propenyl alcohol / prop-2-enol / 1-propenol-3", "unNumber": "1098", "casNumber": "107-18-6", - "transportMethod": "", - "sebc": "", - "usage": "난연성 물질, 건성유, 가소제 등 다양한 특수 화학물의 전구체", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(6.1급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "1098 C3HeO 위험한 독약, 농약, 살충제, 제초제 유 위험 인화성액체 (구분2) 급성독성-경구(구분3) 급성독성-경피 (구분2) 급성독성-경구 (구분4) 급성독성-경피(구분3) 급성독성-흡입증기 (구분3) 피부부식성/자극성(구분 1) 심한 눈 손상성/자극성(구분1) 급성 수생환경 유해성(구분1) 물질톡성 1r", + "state": "액체", + "color": "무색", + "odor": "겨자 냄새", + "flashPoint": "21.6^", + "autoIgnition": "443℃", + "boilingPoint": "get", + "density": "0,9", + "solubility": "용해", + "vaporPressure": "26.1 mmHg (25℃)", + "vaporDensity": "2", + "explosionRange": "2.4~18%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 4, + "fire": 4, + "reactivity": 1, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "131", + "idlh": "20 ppm", + "aegl2": "1.7 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "60m", + "responseDistanceSpillNight": "중 50m 이상", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "고독성, 인화성, 피부 흡수, 호흡기 자극", + "firstAid": "흡입노출 ■ 즉시 의료조치 피무접촉 • 즉시 의료조치, 화상의 경우 다량의 찬물로 씻을 것, 비누와 물로 씻을 것 안구접촉 • 긴급 의료조치. 콘택트렌즈 제거 경구섭취 - 구강대구강 인공호흡 하지 말 것, 간급 이료조치, 입을 씻어낼 것 초똥대응방법 대응장비 보호목 호홉구 보안경 보호장갑 기타장비 3,4형식 (C급) 방독마스크(반면.전면) ① ① 여화삭카메라 1형식 (1B) 공기호홉기 ① ① 르화상카메라 1 초기이격거리 (m) 60 방호거려 (m) 낮(eOO), 밥(1,100) | 해상유출시 ► 유출물질은 고인화성물질로 화재위험성이 높으며, 흡입 및 접촉 시 치명적일 수 있고, 눈, 피부, 호흡기를 자극할 수 있으므로 모든 출동세력 풍상에 위치, 최소 60m 이격거리 유지. 주변선박 통제 (홉연. 불꽃, 스파크 등 모든 점화원 제거〉 ► 출동 경비정(방제정) 복합가스용 방독마스크롤 포함한 3.4형식 보호의 착용(사고선 근접 시 1B급 착용), 증기홉입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 용해되므로 빙b제조치 불필요 ► 단기간 노출에도 수생생물에 매우 유독하므로 화학방제함에서 유출물질 농도 탐지. 안전확보 시까지", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 내알코올 포말.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 분무주수로 증기운 이동 억제.", + "exposure": "TWA 0.5 ppm, STEL 4 ppm, AEGL-2 1.7 ppm, IDLH 20 ppm", + "regulation": "유해화학물질관리법" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.17, 15.19", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "ALLA", "name": "ALLYL ALCOHOL", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ALLA", + "name": "Allyl alcohol", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 55, + "id": 14, "abbreviation": "AMS", "nameKr": "알파-메틸스타이렌", "nameEn": "ALPHA-METHYLSTYRENE", - "synonymsEn": "A-METHYLSTYRENE / 2-PHENYLPROPENE / A-METHYL STYRENE / ISOPROPENYLBENZENE", "synonymsKr": "알파-메틸스타이렌 / 알파-메틸스티렌 / 알파-메틸 스타이렌 / 2-페닐-1-프로펜", + "synonymsEn": "A-METHYLSTYRENE / 2-PHENYLPROPENE / A-METHYL STYRENE / ISOPROPENYLBENZENE", "unNumber": "2303", "casNumber": "98-83-9", "transportMethod": "", "sebc": "", - "usage": "접착제, 코팅제 제조 스티렌 중합체와 수지, 에틸렌 프로필렌 수지의 중간체로 주로사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", + "usage": "접착제, 코팅제 제조\n스티렌 중합체와 수지, 에틸렌 프로필렌 수지의\n중간체로 주로사용", + "state": "인화성 액체", + "color": "무색, 투명", + "odor": "독특한 냄새", + "flashPoint": "53.8*", + "autoIgnition": "중기압", "boilingPoint": "", - "density": "", + "density": "0.91", "solubility": "", "vaporPressure": "", "vaporDensity": "", - "explosionRange": "", + "explosionRange": "0.9~6.6%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 2, + "fire": 2, + "reactivity": 1, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Y", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유용해 (FD)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 - 토하게 하지 말 것, 산소공급, 인공호흡 피부접촉 • 피부를 비누와 물로 씻을 것. 화상의 경우 다량의 찬물로 씻을 것 안구접촉 • 몇 분간 물로 씻을 것, 콘택트렌즈 제거 경구섭취 • 토하게 하지 말 것, 즉시 의료기관 진찰", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -4197,200 +1335,224 @@ { "code": "AMS", "name": "ALPHA-METHYLSTYRENE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "AMS", + "name": "Alpha-Methylstyrene", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MSM", + "name": "Methyl styrene monomer", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 56, + "id": 15, "abbreviation": "AN", - "nameKr": "아크릴로니트릴", - "nameEn": "ACRYLONITRILE", - "synonymsEn": "2-PROPENENITRILE / PROPENENITRILE / PROP-2-ENENITRILE / ACRYLIC ACID NITRILE / ACRYLON / ACRYLNITRIL / PROPENITRILE / CYANOE THYLENE / ACRYLONITRILE MONOMER", - "synonymsKr": "비닐시아나이드 / 시아노에틸렌 / 아크릴론 / 크랍아크릴 / 2-프로펜니트릴 / 아크릴로나이트릴 / 프로펜니트릴 / 아크릴로니트릴모노모 / 2-프로페나이트릴", + "nameKr": "아크릴로나이트릴", + "nameEn": "Acrylonitrile", + "synonymsKr": "아크릴로나이트릴 / 아크릴로니트릴 / 벤PROPENENITRILE / 비닐시아나이드 / 시아노에틸렌 / 아크릴론 / 크랍아크릴 / 2-프로펜니트릴 / 아크릴로나이트릴 / 프로펜니트릴 / 아크릴로니트릴모노모(ACRYLONITRILE,AN) / 2-프로페나이트릴", + "synonymsEn": "Acrylonitrile / 2-Propenenitrile / Propenenitrile / prop-2-enenitrile / ACRYLIC ACID NITRILE / Acrylon / CH2CHCN / Acrylnitril / PROPENITRILE / CYANOETHYLENE / Acrylonitrile", "unNumber": "1093", "casNumber": "107-13-1", - "transportMethod": "", - "sebc": "", - "usage": "아크릴 섬유, 합성고뮤, ABS수지, AS수지 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "플라스틱, 코팅제, 접착제 인화성액체 (구분2) 급성독성-경구(구분3〉 급성독성-경피(구분2) 특정표적장기독성(1회노출) 구분3(호흡기계 자극) 만성 수생환경 유해성(구분2) 물잘특성", + "state": "액체", + "color": "무색~옅은노란색", + "odor": "양파’“扇불쾌한", + "flashPoint": "-1.1℃", + "autoIgnition": "48ir", + "boilingPoint": "77.3TC", + "density": "0.8", + "solubility": "74.5g/L(25“C)", + "vaporPressure": "109mmHg(25t)", + "vaporDensity": "1.8", + "explosionRange": "3~17%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 4, + "fire": 4, + "reactivity": 2, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "131P", + "idlh": "85 ppm", + "aegl2": "1.7 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "최소반경 50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "증발용해 (ED)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "독성, 발암성, 고인화성, 중합성, 피부 흡수", + "firstAid": "흡입노출 • 즉시 의료조치 피부접촉 • 피부를 비누와 물로 씻을 것, 화상의 경우 다량의 찬물로 씻을 것 안구접촉 • 몇 분간 물로 조심해서 씻을 것, 콘택트렌즈 제거 경구섭취 • 입을 씻어낼 것. 토하게 하지 말 것. 긴급 의료조치", + "fireFighting": "내알코올 포말/분무주수/CO₂. 중합 반응 유의.", + "spillResponse": "점화원 제거. 주변 해상 통제. 증기운 이동 억제.", + "exposure": "TWA 2 ppm, AEGL-2 1.7 ppm, IDLH 85 ppm", + "regulation": "유해화학물질관리법" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.13, 15.17, 15.19", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "AN", "name": "ACRYLONITRILE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "AN", + "name": "Acrylonitrile", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 57, + "id": 16, "abbreviation": "AND", - "nameKr": "아디포니트릴", - "nameEn": "ADIPONITRILE", - "synonymsEn": "DICYANOBUTANE / HEXANEDINITRILE / ADIPONITRIL / ADIPONITRILE / ADIPYL NITRILE / ADIPICDINTRILE / ADIPODINITRILE / HEXANEDINITRIL / NITRILEADIPICO / ADIPICDINTITRILE", - "synonymsKr": "아디포나이트릴 / 뷰테인 / 1.4-다이사이아노부탄 / 1.4-다이사이아노뷰테인 / 1.4-다이사이아노 / 아디프 산 나이트릴 / 아디프 산 디나이트릴 / 아디프산 나이트릴 / 아디프산 다이나이트릴 / 안디포나이트릴 / 테트라메틸 사이아나이드 / 헥산디나이트 릴 테트라메틸렌 사이아나이드 / 헥산아디프산 / 디나이트릴 / 헥세인다이나이트 릴", + "nameKr": "아디포나이트릴", + "nameEn": "Adiponitrile", + "synonymsKr": "아디포니트릴 / 아디포나이트릴 / 아디포니트릴 / 1,4-다이사이아노부탄 / 1,4-다이사이아노뷰테인 / 뷰테인, 1,4-다이사이아노- / 아디프 산 나이트릴 / 아디프 산 디나이트릴 / 아디프산 나이트릴 / 아디프산 다이나이트릴 / 안디포나이트릴 / 테트라메틸 사이아나이드 / 테트라메틸렌 사이아나이드 / 헥산디나이트릴 / 헥산아디프산, 디나이트릴 / 헥세인다이나이트릴", + "synonymsEn": "Adiponitrile / 1,4-DICYANOBUTANE / HEXANEDINITRILE / adiponitril / ADIPONITRILE / adipylnitrile / Adipicdintrile / Adipodinitrile / Hexanedinitril / nitrileadipico / Adipicdinitrile", "unNumber": "2205", "casNumber": "111-69-3", - "transportMethod": "", - "sebc": "", - "usage": "나일론 6,6 샌상의 주요한 전구체 의료, 에어백, 케이블 타이, 카펫, 자동차 부품 등 일산적인 제품의 핵심 소재", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Z류)", + "sebc": "FD (Float-Dissolver)", + "usage": "유해액체물질/Y 무색무취의 오일류 액체로서 주로 나일론 제조, 녹 제거제, 고무의 가황 촉진제로 사용됨. 해상유출 시예는 용해되 므로 방제조치는 불필요하나, 1 회 노출만으로도 중대한 독성을 일으킬 수 있으므로 방독마스크, 화학", + "state": "오일류 액체", + "color": "무색, 투명", + "odor": "무취", + "flashPoint": "93℃", + "autoIgnition": "55crc", + "boilingPoint": "295℃", + "density": "0.97", + "solubility": "83g/L(2(rc)", + "vaporPressure": "0.003mmHg(20t)", + "vaporDensity": "3.8", + "explosionRange": "1.7~4.9%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 2, + "fire": 1, + "reactivity": 1, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "153", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "휘발성", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "독성(경구/흡입), 부식성, 호흡기 자극", + "firstAid": "흡입노출 •간급의료조치 피부접촉 - 긴급 의료조치, 화상의 경우 다량의 찬물로 씻을 것, 20분 이상 흐르는 물에 씻을 것 안구접촉 • 간급 의료조치, 20분 이상 흐르는 물에 씻을 것 경구섭취 • 구강대구강 인공호흅 하지 말 것, 긴급 의료조치, 입을 씻어낼 것", + "fireFighting": "분무주수/포말/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제. 증기운 이동 억제.", "exposure": "", - "regulation": "" + "regulation": "유해화학물질관리법" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "T", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.17, 15.19, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-B", + "emsFire": "F-A", + "emsSpill": "S-B", "emsFirstAid": "", "cargoCodes": [ { "code": "AND", "name": "ADIPONITRILE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "AND", + "name": "Adiponitrile", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 58, + "id": 17, "abbreviation": "ACN", "nameKr": "아세토나이트릴", "nameEn": "ACETONITRILE", - "synonymsEn": "CYANOMETHANE / ETHYL NITRILE / METHYL CYANIDE", "synonymsKr": "아세토니트릴 / 메탄카르보니트릴 / 에탄니트릴 / 메틸시아나이드 / 시아노메탄 / 아세토나이트릴 / 에틸니트릴 / 나이트로니트릴 / 메틸 시아나이드 / 에탄 나이트릴", - "unNumber": "1093", + "synonymsEn": "CYANOMETHANE / ETHYL NITRILE / METHYL CYANIDE", + "unNumber": "1648", "casNumber": "75-05-8", "transportMethod": "", "sebc": "", "usage": "용매, 화학 반응제로 사용", - "state": "", - "color": "", - "odor": "", + "state": "액체", + "color": "무색, 투명", + "odor": "달콤한 냄새", "flashPoint": "", - "autoIgnition": "", + "autoIgnition": "524℃", "boilingPoint": "", - "density": "", + "density": "0.79", "solubility": "", - "vaporPressure": "", + "vaporPressure": "(물 23.8mmFlg)", "vaporDensity": "", - "explosionRange": "", + "explosionRange": "3~17%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Z", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발용해 (ED)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 •긴급의료조치 물질특성 I 인체 유해성 화재 침강 : 용해 ! 증발 증기밀도 (위험성) . (물=1) : (옿) . (울중기압) (공기=1) O y O ; O 누。 (높응) (용허) (높음) “르 인화점 6’C 발화점 524r 끓는점 82t 수용해도 용해 상온상테 액체 색상 무색. 투명 냄새 달콤한냄새 비중 0.79 증기압 73mmHg(20’C) 휘발성 높음 점도 0.35cP(20t) 증기밀도 1.42 급성독성 TWAffl 시간) 20ppm 경구(LD50) 경피 (LD50) 홉입 (LC50) 노ft 기준 \" STEUis분) 617 >2.000 증기>3,587 노출한게 으 ntg/kg mg/kg ppm/4시간 idlh(30뷴) 『 직접 위헙농도 일반증상 섭취,흠입시유독함 효이 호흡기 자극, 쇠약, 두통, 현기증, 혼란, 청색증 터니 사망할수있음 피부 피부자극, 청색증, 피부염. 흡수 된 후 전신에 영향 안구 눈자극및손상 견구 구토. 구역질, 위장자극, 청색증, 어지러움, 현기증 구 피부를 통해 빠르게 흡수 옹급조치 피부접촉 • 긴급 의료조치, 화상의 경우 다량의 찬물", "fireFighting": "", "spillResponse": "", "exposure": "", "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "R", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", "emsCode": "", @@ -4401,92 +1563,116 @@ { "code": "ACN", "name": "ACETONITRILE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ANL", + "name": "Acetonitrile", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 59, - "abbreviation": "ANONE", - "nameKr": "시클로헥산온", - "nameEn": "CYCLOHEXANONE", - "synonymsEn": "HEXANONE / Anon / ANONE / Hexanon / Sextone / Cykloheksanon / CYCLOHEXANONE REAGENT (ACS) / CYCLOHEXANONE, REAGENT (ACS)CYCLOHEXANONE, REAGENT (ACS)CYCLOHEXANONE, REAGENT (ACS) / Nadone / hytrolo", - "synonymsKr": "섹톤 / 케토헥사메틸렌 / 시클로헥실케톤 / 아논헥사논/ 케토시클로헥산/ 옥소시클로헥산 / 피멜린케톤 / 사이클로헥사논 / 사이클로헥세인온 / 시클로헥사논 / 아논 / 시클로헥산온 / 아농 / 사이클로헥산온 / 나돈 / 섹스톤 / 시클로헥실 케톤 / 케토헥사메틸렌 / 피멜릭 케톤 / 피멜린 케톤 / 헥사논 / 히트롤 O", + "id": 18, + "abbreviation": "CHXN/NL", + "nameKr": "사이클로헥사논", + "nameEn": "Cyclohexanone/Cyclohexanol mixture", + "synonymsKr": "Anon / 싸이클로헥실 케톤 / 헥산온 / 케토헥사메틸렌", + "synonymsEn": "Cyclohexanone / HEXANONE / Anon / ANONE / Hexanon / Sextone / Cykloheksanon / CYCLOHEXANONE REAGENT (ACS) / CYCLOHEXANONE, REAGENT (ACS)CYCLOHEXANONE, REAGENT (ACS)CYCLOHEXANONE, REAGENT (ACS) / Nadone / hytrolo", "unNumber": "1915", "casNumber": "108-94-1", - "transportMethod": "", - "sebc": "", - "usage": "살충제, 페인트, 니스 제거제을 사용 잉크, 코팅, 의약품, 접착제, 감광선 물질, 살충제 등의 다양한 산업에서 고급 용매", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "FE (Float-Evaporator)", + "usage": "", + "state": "액체", + "color": "투명-옅은노란색", + "odor": "!", + "flashPoint": "44℃", + "autoIgnition": "420℃", + "boilingPoint": "155.6℃", + "density": "0.94", + "solubility": "87g/L(2Crc)", + "vaporPressure": "2mmHg(2W", + "vaporDensity": "3.4", + "explosionRange": "1.1~9.4%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Z", + "ergNumber": "127", + "idlh": "700 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "유해액제물질Z류", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성, 호흡기/피부/안구 자극, 중추신경계", + "firstAid": "흡입노출 피부접촉 응급조치 안구접촉 경구섭취 • 신선한 공기가 있는 곳으로 이동, 인공호흡, 산소공급 • 피부를 비누와 물로 씻을 것, 화상의 경우 찬물로 씻을 것 • 몇 분간 물에 씻을 것, 콘택트렌즈 제거할 것 • 긴급 의료조치 초동 대응방법 대응장바 보호복 호흡구 ; ■흐丄누훠삭조石 \"방독마X크〔반면,전면)'' 1형식 (1B) 공기호흡기 보안경 O 보호장갑 O 기타장비 열화상카메라 1 초기 이격거리(m) 50 방호거리 (m) 300 1 ► 유출물질은 증기흡입, 피부 및 눈 접촉 등 인체노출 시 유해성이 있으며, 인화성액체로 화재위험성이 있으므로 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박 통제 (홉연, 불꽃, 스파크 등 모든 점화원 제거) 해상유춭시 ►출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용(사고선 근접 시 1B급 착용), 증기흡입과 피부와 눈에 접촉을 피할 것 ►유출물질은 용해되므로 방제조치 불필요 > 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 I 화재 치대피거리(m) 800 + ►유출물질은 연소시 유독가스 방출, 풍상에 위치, 최소 이격거리 유지하고", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제.", + "exposure": "TWA 50 ppm, STEL 50 ppm, IDLH 700 ppm", "regulation": "" }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "F", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "ANONE", "name": "CYCLOHEXANONE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CHXNN", + "name": "CYCLOHEXANONE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CHXNN", + "name": "Cyclohexanone", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CHXN/NL", + "name": "Cyclohexanone/Cyclohexanol mixture", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 60, + "id": 19, "abbreviation": "ANYSOL100", - "nameKr": "솔벤트 나프타(석유), 중질방향족 (용제 8호 / 한화토탈에너지스 제품)", + "nameKr": "솔벤트 나프타(석유), 중질방향족\n(용제 8호 / 한화토탈에너지스 제품)", "nameEn": "SOLVENT NAPHTHA(PETROLEUM)", + "synonymsKr": "경방향족화합물용제나프타 / 솔벤트나프타(석유),경질방향족화합물 / 솔벤트나프타(석유),경질방향족화합물 / C9-10아로마틱하이드로카본 / 솔벤트나프타(석유),가벼운방향족 / 제품명", "synonymsEn": "Solvent naphtha (petroleum) / SHELLSOLA / C9-10 AROMATIC HYDROCARBONS / 400N base oil / White oil No.5 / 150BS base oil / AROMATIC SOLVENT S-100 / aromatic naphtha, type I / HIGHFLASHAROMATICNAPHTHA / LIGHTAROMATICSOLVENTNAPHTHA", - "synonymsKr": "경방향족화합물용제나프타 / 솔벤트나프타(석유),경질방향족화합물 / 솔벤트나프타(석유),경질방향족화합물/ C9-10아로마틱하이드로카본 / 솔벤트나프타(석유),가벼운방향족 /제품명", "unNumber": "1268", "casNumber": "64742-95-6", "transportMethod": "", "sebc": "", - "usage": "자동차 도장, 코팅 공정 등에서 페인트나 기타 물질을 용해, 희석, 추출하는데 사용", + "usage": "자동차 도장, 코팅 공정 등에서 페인트나\n기타 물질을 용해, 희석, 추출하는데 사용", "state": "", "color": "", "odor": "", @@ -4537,59 +1723,71 @@ { "code": "ANYSOL100", "name": "SOLVENT NAPHTHA(PETROLEUM)", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "C9ANYSOL 100", + "name": "SOLVENT NAPHTHA", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SSA100", + "name": "Shellsol A100", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 61, + "id": 20, "abbreviation": "ANYSOL150", - "nameKr": "솔벤트 나프타(석유), 중질방향족 (용제 9호 / 한화토탈에너지스 제품)", + "nameKr": "솔벤트 나프타(석유), 중질방향족\n(용제 9호 / 한화토탈에너지스 제품)", "nameEn": "SOLVENT NAPHTHA", - "synonymsEn": "Generichydrocarbon heavy aromatic mixed ethylbenzenes solvent naphtha petroleum hydrocarbon", - "synonymsKr": "솔벤트나프타(석유) / 중질방향족화합물 / 중방향족화합물용제나프타 / 나프탈렌 / 타르캄포 / 횐타르 / 둥근방충제나프탈린 / C10-11아로마틱 하이드로카본 C12-15알케인 / 사이클로알케인 / 아로마틱하이드로카본", + "synonymsKr": "솔벤트나프타(석유) / 중질방향족화합물 / 중방향족화합물용제나프타 / 나프탈렌 / 타르캄포 / 횐타르 / 둥근방충제나프탈린 / C10-11아로마틱 / 하이드로카본 C12-15알케인 / 사이클로알케인 / 아로마틱하이드로카본", + "synonymsEn": "D60 SOLVENT OIL / AROMATIC SOLVENT 200 / SOLVENT NAPHTHA / HEAVY AROM / C12-15 ALKANE / CYCLOALKANE / AROMATIC", "unNumber": "3082", "casNumber": "64742-94-5", - "transportMethod": "", - "sebc": "", - "usage": "세척, 용해, 회석, 추출 등 석유화학 부산물로 생산되는 용제", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체", + "sebc": "E (Evaporator)", + "usage": "해양환경관리법/기름 석유 및 석유대체연료사업법 / 석유제품 무색투명의 독특한 방향족 냄새가 나는 액체로 주로 자동차 코팅, 산업용 유지보수 코딩에 사용되며. 해상유출 시에 는 부유하므로 방제조치가 필요함 직접적으로 구강이나 비강을 통해 화학적 폐렴 등 심각한 급성 영향을 줄 수 있고 피부, 눈 자극 등 인체노출 시 유해성이 있으므로 방독마스크, 화학", + "state": "액체", + "color": "무색. 투명", + "odor": "독특한아로마틱", + "flashPoint": "66℃", + "autoIgnition": "286℃", + "boilingPoint": "82~220℃", + "density": "0.8887", + "solubility": "불용", + "vaporPressure": "4mmHg(37.8t)", + "vaporDensity": "4.3", + "explosionRange": "0.6~6.5%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "해양환경관리법/기름", + "ergNumber": "128", + "idlh": "0 본)", + "aegl2": "50 mg/kg", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "부유 (F)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "인화성, 흡입 유해, 발암 의심, 피부 자극", + "firstAid": "흡입노출 • 신선한 굿으로 이동. 산소공급, 인공호흡, 의료조치 피부접촉 • 15분 동안 물과 비누로 씻을 것 안구접촉 • 많은 양의 물로 15분 이상 씻을 것. 의료조치 경구섭취 • 토하게 하지 말 것, 긴급 의료조치", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 오일펜스/흡착재 회수.", "exposure": "", - "regulation": "" + "regulation": "위험물안전관리법" }, "ibcHazard": "", "ibcShipType": "", @@ -4597,27 +1795,39 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { "code": "ANYSOL150", "name": "SOLVENT NAPHTHA", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "C10ANYSOL 150", + "name": "SOLVENT NAPHTHA", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SSAB", + "name": "Shellsol AB", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 62, + "id": 21, "abbreviation": "ANYSOL5", - "nameKr": "수소탈황화된 중질 등유 (용제 3호, 한화토탈에너지스 제품)", + "nameKr": "수소탈황화된 중질 등유\n(용제 3호, 한화토탈에너지스 제품)", "nameEn": "KEROSINE(PETROLEUM)", + "synonymsKr": "등유 / 히드로탈황화케로신 / 히드로탈황화케로신 / 등유(석유),수소화탈황", "synonymsEn": "hydrodesulfurized kerosin / HYDRODESULFURIZEDKEROSENE / HYDRODESULPHURIZEDKEROSINE / hydrodesulphurized kerosene / HYDRODESULFURIZED KEROSINE) / kerosine, hydrodesulfurized / kerosene (non-specific name) / KEROSINE,STRAIGHTRUN,HYDROTREATED / Hydrodesulfurized kerosine (petroleum) / Kerosine (petroleum), hydrodesulfurized", - "synonymsKr": "등유 / 히드로탈황화케로신 / 히드로탈황화케로신/ 등유(석유),수소화탈황", "unNumber": "1268", "casNumber": "64742-81-0", "transportMethod": "", @@ -4673,58 +1883,58 @@ { "code": "ANYSOL5", "name": "KEROSINE(PETROLEUM)", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 63, - "abbreviation": "BA", - "nameKr": "부틸아세테이트", - "nameEn": "BUTYL ACETATE", - "synonymsEn": "N-BUTYL ACETATE / ACETIC ACID BUTYL ESTER / Acetic acid butyl / Butylacetat / Butyl ethanoate / Butyle / butylacetates / Butile / BUTYLE ACETATE / 1-Butyl acetate", - "synonymsKr": "아세트산부틸 / n-부틸아세트산 / n-뷰틸아세트산 / 부틸에탄산 / 뷰틸아세트산 / 초산부틸 / 초산n-부틸 / 부틸아세테이트 / 부틸아세테이트(B.A) / 부틸아세트산 / 초산부틸 / N-뷰틸 아세테이트 / 뷰틸 아세테이트 / 뷰틸 에타노에이트 / 아세트산 n-뷰틸 에스터 / 1-부틸아세테이트", - "unNumber": "1231", + "id": 22, + "abbreviation": "NBACE", + "nameKr": "아세트산부틸(아세트산의 n-부틸 에스터)", + "nameEn": "n-Butyl acetate", + "synonymsKr": "아세트산부틸 / 아세트산부틸 / n-부틸아세트산 / n-뷰틸아세트산 / 부틸에탄산 / 뷰틸아세트산 / 초산부틸 / 초산n-부틸 / 부틸아세테이트 / 부틸아세테이트(B.A) / 부틸아세트산 / 초산부틸 / N-뷰틸 아세테이트 / 뷰틸 아세테이트 / 뷰틸 에타노에이트 / 아세트산 n-뷰틸 에스터 / 1-부틸아세테이트", + "synonymsEn": "Butyl acetate / N-BUTYL ACETATE / ACETIC ACID BUTYL ESTER / Acetic acid butyl / Butylacetat / Butyl ethanoate / Butyle / butylacetates / Butile / BUTYLE ACETATE / 1-Butyl acetate", + "unNumber": "1123", "casNumber": "123-86-4", - "transportMethod": "", - "sebc": "", - "usage": "휘발성 용매로 사용 주로 페인트, 잉크, 화잘품, 향수 등 다양한 분야 에서 용매로 활용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", + "usage": "", + "state": "액체", + "color": "무색", + "odor": "바나나냄새", + "flashPoint": "27℃", + "autoIgnition": "415r", + "boilingPoint": "i26.rc", + "density": "0.88", + "solubility": "5g/L(25“C)", + "vaporPressure": "11.5mmHg(25t)", + "vaporDensity": "4", + "explosionRange": "1.2~7.6%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 3, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "129", + "idlh": "0ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유증발용해 (FED)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "고인화성, 호흡기/피부/안구 자극", + "firstAid": "흡입노출 • 신선한 공기가 있는 곳으로 이동, 인공호흡. 산소공급 피부접촉 • 피부를 물로 씻을 것, 화상의 경우 찬물로 씻을 것 안구접촉 • 20분 이상 흐르는 물에 씻을 것 경구섭취 •긴급의료조치", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제.", + "exposure": "TWA 150 ppm, STEL 200 ppm, IDLH 1,700 ppm", "regulation": "" }, "ibcHazard": "", @@ -4733,66 +1943,84 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "BA", "name": "BUTYL ACETATE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NBAC", + "name": "N-BUTYL ACETATE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BACE", + "name": "Butyl acetate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NBACE", + "name": "n-Butyl acetate", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 64, + "id": 23, "abbreviation": "BACR", - "nameKr": "부틸 아크릴산", - "nameEn": "BUTYL ACRYLATE", - "synonymsEn": "TBA / T-BUTYL ACRYLATE / 2-Propenoic acid butyl ester / Butyl propenoate / ACRYLIC ACID TERT-BUTYL ESTER / TERTIARY-BUTYL ACRYLATE / ButyAcrylate / Butyl acrylate / Acrylic acid b / 1-butylacrylate", - "synonymsKr": "N-뷰틸아크릴레이트 / 노말-부틸프로페논염 / 부틸아크릴산 / 아크릴산노말-부틸에스테르 / 2-프로펜산,부틸에스N-BUTYLACRYLATE / n-부틸아크릴레이트 / 노말-부틸아크릴레이트 / 부탄아크릴레이트 / 부틸-2-프로페논염 / 아크릴산부탄 / 아크릴산뷰틸 / n-뷰틸아크릴산 / N-뷰틸 아크릴레이트 / 2-프로펜 산, n-뷰틸 에스터 / n-뷰틸 아크릴 산 / n-뷰틸 프로펜 산 / 뷰틸-2-프로펜 산 / 아크릴 산 뷰틸 에스터", + "nameKr": "부틸 아크릴레이트", + "nameEn": "Butyl acrylate", + "synonymsKr": "아크릴산부탄 / N-뷰틸아크릴레이트 / 노말-부틸프로페논염 / 부틸아크릴산 / 아크릴산노말-부틸에스테르 / 2-프로펜산,부틸에스N-BUTYLACRYLATE / n-부틸아크릴레이트 / 노말-부틸아크릴레이트 / 부탄아크릴레이트 / 부틸-2-프로페논염 / 아크릴산부탄 / 아크릴산뷰틸 / n-뷰틸아크릴산 / N-뷰틸 아크릴레이트 / 2-프로펜 산, n-뷰틸 에스터 / n-뷰틸 아크릴 산 / n-뷰틸 프로펜 산 / 뷰틸-2-프로펜 산 / 아크릴 산 뷰틸 에스터", + "synonymsEn": "Butyl acrylate / TBA / T-BUTYL ACRYLATE / 2-Propenoic acid butyl ester / Butyl propenoate / ACRYLIC ACID TERT-BUTYL ESTER / TERTIARY-BUTYL ACRYLATE / ButyAcrylate / Butyl acrylate / Acrylic acid b / 1-butylacrylate", "unNumber": "2348", "casNumber": "141-32-2", - "transportMethod": "", - "sebc": "", - "usage": "코팅제, 접착제, 실란트, 섬유 마감재, 플라스틱 등 다양한 분양에서 사용되는 화학물질", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", + "usage": "코팅제, 접착제, 실란트, 섬유 마감재, 플라스틱 등\n다양한 분양에서 사용되는 화학물질", + "state": "액체", + "color": "무색", + "odor": "과일향", + "flashPoint": "39℃", + "autoIgnition": "267℃", + "boilingPoint": "148℃", + "density": "0.89(20℃)", + "solubility": "1.4 g/L (25℃)", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "8.42", + "explosionRange": "1.3~9.9%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 2, + "fire": 2, + "reactivity": 2, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "129P", + "idlh": "113 ppm", + "aegl2": "130 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "반경 50m 이상", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유 •증발용해 (FED)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성, 중합성, 호흡기/피부/안구 자극, 감작", + "firstAid": "흡입노출 • 신선한 공기가 있는 곳으로 이동, 인공호흡. 산소공급 피부접촉 • 피부를 물로 씻을 것. 화상의 경우 찬물로 씻을 것 안구접촉 - 20분 이상 흐르는 물에 씻을 것 경구섭취 •긴급의료조치", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제.", + "exposure": "AEGL-2 130 ppm, IDLH 113 ppm", "regulation": "" }, "ibcHazard": "", @@ -4801,177 +2029,133 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "BACR", "name": "BUTYL ACRYLATE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 65, - "abbreviation": "BAM", - "nameKr": "부틸 아크릴산", - "nameEn": "BUTYL ACRYLATE", - "synonymsEn": "TBA / T-BUTYL ACRYLATE / 2-Propenoic acid butyl ester / Butyl propenoate / ACRYLIC ACID TERT-BUTYL ESTER / TERTIARY-BUTYL ACRYLATE / ButyAcrylate / Butyl acrylate / Acrylic acid b / 1-butylacrylate", - "synonymsKr": "N-뷰틸아크릴레이트 / 노말-부틸프로페논염 / 부틸아크릴산 / 아크릴산노말-부틸에스테르 / 2-프로펜산,부틸에스N-BUTYLACRYLATE / n-부틸아크릴레이트 / 노말-부틸아크릴레이트 / 부탄아크릴레이트 / 부틸-2-프로페논염 / 아크릴산부탄 / 아크릴산뷰틸 / n-뷰틸아크릴산 / N-뷰틸 아크릴레이트 / 2-프로펜 산, n-뷰틸 에스터 / n-뷰틸 아크릴 산 / n-뷰틸 프로펜 산 / 뷰틸-2-프로펜 산 / 아크릴 산 뷰틸 에스터", - "unNumber": "2348", - "casNumber": "141-32-2", - "transportMethod": "", - "sebc": "", - "usage": "코팅제, 접착제, 실란트, 섬유 마감재, 플라스틱 등 다양한 분양에서 사용되는 화학물질", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "BAM", "name": "BUTYL ACRYLATE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BACR", + "name": "Butyl acrylate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NBACR", + "name": "n-Butyl acrylate", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 66, + "id": 24, "abbreviation": "BBP", "nameKr": "부틸벤질프탈산", "nameEn": "BUTYL BENZYL PHTHALATE", - "synonymsEn": "Benzyl butyl phthalate / BBP / BUTYL BENZYL PHTHALATE / Benzyl butyl ester / PHTHALIC ACID, BENZYLBUTYL ESTER / CW17 / mZFM / SF01 / Sicol / Sicol 160 / NCI-C54375", - "synonymsKr": "벤질부틸프탈레이트 / BBP / 부틸벤질프탈레이트 / 뷰틸벤질프탈산 / 부틸벤질프탈레이트 / 벤질부틸프탈레이트 / 뷰틸 벤질 프탈산 / 1,2-벤젠다이카복실산, 뷰틸 페닐메틸 에스터 / O1-뷰틸 O2-(페닐메틸)벤젠-1,2-다이카복실산 / 벤질뷰틸 프탈산 / 부틸벤질 프탈레이트 / 1,3-아이소벤조푸란다이온폴리머(2,2'-옥시비스)", + "synonymsKr": "벤질부틸프탈산 / 부틸벤질프탈산 / BBP / 벨질 N-뷰틸 프탈산", + "synonymsEn": "Benzyl butyl phthalate / BBP / BUTYL BENZYL PHTHALATE / Benzyl butyl ester / PHTHALIC ACID, BENZYLBUTYL ESTER / CW17 / mZFM / SF01 / Sicol / Sicol 160 / NCI-C54375 / BBP / 1,2-Benzenedicarboxylic acid, butyl phenylmethyl ester / Benzyl butylphthalate / Benzyl N-butyl phthalate / Butylbenzyl phthalate / N-Butyl benzyl phthalate / Butyl phenylmethyl 1,2-benzenecarboxylate / NCI-C54375 / Palatinol BB / Phthalic acid, benzyl butyl ester / Santicizer 160 / Sicol 160 / Unimoll BB / Phthalic acid, benzyl butyl ester n-butyl", "unNumber": "3082", "casNumber": "85-68-7", - "transportMethod": "", - "sebc": "", - "usage": "pvc 가소제 사용 비닐 시트 바닥재, 타일 , 식품 포장재 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", + "transportMethod": "포장(9급), 산적액체(X류)", + "sebc": "S (Sinker)", + "usage": "방수제,접착제, 코팅과 잉크 험 해 류 위 유 분 위험 생식세포 변이원성(구분2) 생식독성(구분 1B) 급성 수생환경 유해성(구분1) 만성 수생환경 유해성(구분3) 물잘특성", + "state": "오일류 액체", + "color": "투명", + "odor": "약한냄새", + "flashPoint": "199℃", + "autoIgnition": "425℃", + "boilingPoint": "O", + "density": "1.12", + "solubility": "높음", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "10.08", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/ X", + "ergNumber": "171", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "최소반경 50m", + "responseDistanceSpillNight": "중 50m 이상", + "marineResponse": "침강 (S)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "생식독성 의심, 피부/흡입 자극", + "firstAid": "흡입노출 - 신선한 공기가 얐는 곳으로 이동, 인공호흡, 산소공급 피부접촉 • 20분 이상 흐르는 물에 씻을 것, 긴급 의료조치 안구접촉 . 20분 이상 흐르는 물에 씻을 것 경구섭취 •긴급의료조치 초픙 대용방법 보호복 호흡구 보안경 보호장갑 기타장비 대용장비 3.4형식 (C급) 방독마스크(반면,전면) Q O 열화상카메라 I 초기야격거리 (m) 50 방호거리 (m) 자료없음 I ► 유출물질은 단기적인 노출에도 수생생물에 유해하고, 인제노출 시 생식능력에 악영향과 유전적 결함을 일으킬 수 있으므로 모든 출동세력 풍상에 위치. 최소 50m 이격거리 유지, 주변선박 통제 해상유출시 - 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용, 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 오일류 액체로 미끄러우니. 선박 진입 시 주의할 것 ► 유출물질은 침강하므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지. 안전확보 시까지 지속적인 모니터링 I 화재 사피거리(而 而 I ► 유출물질은 연소시 유독가스 방출, 풍상에 위치, 최소 이격거리 유지하고 내알콜포 이용 화재진압 ► 열화상카메라 운용(결", + "fireFighting": "복합가스탐지기 이용 농도 확인. 분무주수 또는 일반 포말 이용. 직사주수 금지.", + "spillResponse": "주변 해상 통제. 위험하지 않다면 유출 차단. 해수에 유출시 침전(S)되어 해상수거 불가.", "exposure": "", "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "T", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.17, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "BBP", "name": "BUTYL BENZYL PHTHALATE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BBP", + "name": "Butyl benzyl phthalate", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 67, + "id": 25, "abbreviation": "BD PALM", "nameKr": "바이오 디젤 팜오일", "nameEn": "PALM OIL", - "synonymsEn": "·Fatty acids, palm-oil, me esters ·Methyl Myristate C14", - "synonymsKr": "·지방산류, 야자유, 메틸 에스터류 ·메틸 미리스테이트 C14", + "synonymsKr": "팜유 / 메탈에스터 / 페일류", + "synonymsEn": "Fatty acids, palm-oil, Me esters / METHYL PALMATE / Fettsure(C16 / 18)-methylester / PALMOILFATTYACIDS,METHYLESTERS / Fatty acids, palm-oil, Me esters / FATTY ACIDS, PALM-OIL, METHYL ESTERS", "unNumber": "3082", "casNumber": "91051-34-2", "transportMethod": "", "sebc": "", - "usage": "자동차 경유와 같은 연료로 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "usage": "합성윤활제. 세제 자료없음 자료없옴 물칠특성", + "state": "액체", + "color": "노란색", + "odor": "퀴퀴한 냄새", + "flashPoint": "i46r", + "autoIgnition": "자료없음", + "boilingPoint": "293후(0.76mmHg)", + "density": "0.85(40t)", + "solubility": "불용", + "vaporPressure": "(물 23.8【짜1g)", "vaporDensity": "", "explosionRange": "", "nfpa": { @@ -4980,31 +2164,31 @@ "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Y", "ergNumber": "", - "idlh": "", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", + "responseDistanceFire": "위험도", + "responseDistanceSpillDay": "50m", "responseDistanceSpillNight": "", - "marineResponse": "", + "marineResponse": "부유 (F)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 신선한 공기가 있는 곳으로 옮길 것, 호흡이 힘든 경우 산소공 피부접촉 • 20분 이상 흐르는 물에 씻을 것 안구접촉 -20분 이상 흐르는 물에씻을 것 경구섭취 • 의료조치", "fireFighting": "", "spillResponse": "", "exposure": "", "regulation": "" }, "ibcHazard": "P", - "ibcShipType": "IMO 2(k)TYPE", + "ibcShipType": "2(k)", "ibcTankType": "2G", - "ibcDetection": "No", + "ibcDetection": "O", "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7,\n16.2.9", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -5013,125 +2197,63 @@ { "code": "BD PALM", "name": "PALM OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 68, - "abbreviation": "BDO", - "nameKr": "1,4-부탄디올", - "nameEn": "BUTANEDIOL", - "synonymsEn": "1,4-Butanediol / BDO / Butylene glycol / Butanediol / BUTANE-1,4-DIOL / TETRAMETHYLENE GLYCOL / 1,4-Butandiol / 1,4-BD / sucolb / Diol 14B / 4-Butanediol", - "synonymsKr": "1,4-부탄디올 / 1,4-디하이드록시부탄 / 1,4-Dihydroxybutane,뷰틸렌글리콜 / 1,4-뷰테인디올 / 1,4-테트라메틸렌글리콜 / 부틸렌글리콜 / 테트라메틸렌1,4-디올 / 1,4-뷰테인다이올 / 1,4-다이하이드록시부탄 / 1,4-뷰틸렌 글리콜 / 1,4-테트라메틸 글리콜 / 디올 14B / 부탄-1,4-디올 / 부탄디올 / 뷰틸렌 글리콜 / 수콜 B / 테트라메틸렌 1,4-디올 / 테트라메틸렌 글리콜", - "unNumber": "2810", - "casNumber": "110-63-4", - "transportMethod": "", - "sebc": "", - "usage": "플라스틱, 합성 섬유, 용매, 약물 합성 등 폴리우레탄 생산에 주로 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "BDO", - "name": "BUTANEDIOL", - "company": "", - "source": "화물적부도" + "code": "PALM", + "name": "PALM OIL", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 69, + "id": 26, "abbreviation": "BEHA", "nameKr": "디옥틸아디페이트", "nameEn": "BIS(2-ETHYLHEXYL) ADIPATE", - "synonymsEn": "Bis(2-ethylhexyl) adipate / DEHA / Hexanedioic acid, bis(2-ethylhexyl) ester / Diethylhexyl adipate / dioctyl / Beha / bis(2-ethylhexyl) / Bis(2-ethylhexyl)hexanedioate / hexanedioicacidbis(2-ethylhexyl)ester / PX-238 / mollans", - "synonymsKr": "디옥틸아디페이트 / DOA / 디(2-에틸헥실)아디프산 / 디옥틸아디페이트 / 다이에틸헥실아디페이트 / 비스(2-에틸헥실) 아디페이트 / 디(2-에틸헥실)아디페이트", + "synonymsKr": "디옥틸아디페이트 / DOA / 디(2-에틸헥실)아디프산 / 디옥틸아디페이트 / 다이에틸헥실아디페이트 / 비스(2-에틸헥실) 아디페이트 / 디(2-에틸헥실)아디페이트 / 아디프산, 비스(2-에틸헥실) 에스터 / 비스(2-에틸헥실)헥세인다이오에이트 / 다이-2-에틸헥실 아디페이트 / 다이옥틸 아디페이트 / 헥세인다이산, 비스(2-에틸헥실) 에스터 / 헥세인다이산, 다이(2-에틸헥실) 에스터 / 헥세인다이산, 다이옥틸 에스터 / 옥틸 아디페이트 / 비스(2-에틸헥실) 아디페이트 / 옥틸 아디페이트", + "synonymsEn": "Bis(2-ethylhexyl) adipate / DEHA / Hexanedioic acid, bis(2-ethylhexyl) ester / Diethylhexyl adipate / dioctyl / Beha / bis(2-ethylhexyl) / Bis(2-ethylhexyl)hexanedioate / hexanedioicacidbis(2-ethylhexyl)ester / PX-238 / mollans / ADIPIC ACID, BIS(2-ETHYLHEXYL) ESTER / ADIPOL 2EH / AI3-28579 / BEHA / BIS-(2-ETHYLHEXYL)ESTER KYSELINY ADIPOVE (Czech) / Bis(2-Ethylhexyl)Hexanedioate / BISOFLEX DOA / DEHA / Di-2-ethylhexyl adipate / DIOCTYL ADIPATE / DOA / EFFOMOLL DOA / ERGOPLAST AdDO / FLEXOL A 26 / FLEXOL PLASTICIZER 10-A / FLEXOL PLASTICIZER A-26 / HEXANEDIOIC ACID, BIS(2-ETHYLHEXYL) ESTER / HEXANEDIOIC ACID, DI(2-ETHYLHEXYL) ESTER / HEXANEDIOIC ACID, DIOCTYL ESTER / Kemester 5652 / KODAFLEX DOA / MONOPLEX DOA / NCI-C54386 / NSC 56775 / OCTYL ADIPATE / PLASTOMOLL DOA / PX-238 / REOMOL DOA / RUCOFLEX PLASTICIZER DOA / SICOL 250 / STAFLEX DOA / TRUFLEX DOA / VESTINOL OA / WICKENOL 158 / WITAMOL 320 / BEHA / bis(2-ethylhexyl) adipate / DEHA / DOA / octyl adipate / Plasticisor 10-a, A-26 / Mollan S / Uniflex DOA", "unNumber": "3082", "casNumber": "103-23-1", - "transportMethod": "", - "sebc": "", - "usage": "플라스틱, 고무, 잉크 , 접착제, 페인트, 윤활유 등 다양한 분야에서 가소제 및 첨가제로 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "transportMethod": "산적액체(Y류)", + "sebc": "F (Floater)", + "usage": "유해액체물질/Y 무색의 약한 향기가 나는 점성 액체로서 주로 접착제. 화장품. 단열제 등에 사용됨. 해상유출 시에는 부유하므로 중질성 기름과 같은 방제조치가 필요할 것으로 보이며, 생식기능에 유해한 영향을 끼칠 수 있으므로 화학", + "state": "점성 액체", + "color": "무색", + "odor": "약한 항기", + "flashPoint": "196℃", "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", + "boilingPoint": "417℃", + "density": "0.92", + "solubility": "불용", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "12.6", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Y", "ergNumber": "", - "idlh": "", + "idlh": "0 분)", "aegl2": "", "erpg2": "", "responseDistanceFire": "", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "부유 (F)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "피부/흡입 자극", + "firstAid": "흡입노출 - 신선한 곳으로 이동, 산소공급, 인공호흡. 의료조치 피부접촉 • 화상의 경우 다량의 찬물로 씻을 것, 긴급 의료조치, 20분 이상 흐르는 물에 씻을 것 안구접촉 • 긴급 의료조치, 20분 이상 흐르는 물에 씻을 것 경구섭취 • 긴급 의료조치 초동대웅방법 . 대웅장비 보호복 3,4형식 (C급) 호홉구 방독마스크(반면. 전면) 보안경 O 보호장갑 O 기타장비 열화상카메라 초기 이격거리(m) 쟈료없음 방호거리 (m) 자료없음 ► 유출물질은 생식기능에 유해한 영향을 끼칠 수 있으므로 모든 출동세력 풍상에 위치 해상유출시 그 출동 경비정(방제정) 사고선 접군 시 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용. 증기홉입과 미부와 눈에 접촉을 피할 것 > 유출물잘은 부유성 물질로 방제조치가 필요함 (오일펜스 설치, 유겔화제, 유흡착재 이용 흡착회수) 화재 시대피거리(m) 자료없옴 + ► 유출믈질은 연소시 유독가스 방출, 풍상에 위치, 최소 이격거리 유지하고 소화포 이용 화재진압 화재•폭발시 > 열화상카메라 운용(결과전파), 소화포 이용 사고선 냉각조치 할 것 > 직수분사 금지(화재를 번지게 할 수 있음) ► 안전이 확보되면, 화학방제함 또는 예", + "fireFighting": "분무주수/포말/CO₂.", + "spillResponse": "오일펜스/흡착재 회수.", "exposure": "", "regulation": "" }, @@ -5141,63 +2263,167 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "BEHA", "name": "BIS(2-ETHYLHEXYL) ADIPATE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DEHA", + "name": "Bis(2-ethylhexyl) adipate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DOA", + "name": "DIOCTYLADIPATE", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 70, - "abbreviation": "BFT", - "nameKr": "우지", - "nameEn": "BEEF TALLOW", - "synonymsEn": "·Fatty glyceride ·Edible tallow ·Animal tallow ·Horse fat tallow ·Beef tallow ·Stearin tallow ·Oleo tallow ·Mutton tallow ·Sheep fat tallow ·Tallow A1 grade ·Soap grade", - "synonymsKr": "Fatty 글리세라이드 ·Edible 탈로우 ·Animal 탈로우 ·Horse fat 탈로우 ·Beef 탈로우 ·Stearin 탈로우 ·Oleo 탈로우 ·Mutton 탈로우 ·Sheep fat 탈로우", - "unNumber": "-", + "id": 27, + "abbreviation": "BENZ", + "nameKr": "벤젠", + "nameEn": "BENZENE", + "synonymsKr": "벤졸 / 석탄 나프타 / 사이클로헥사트라이엔", + "synonymsEn": "Benzen / BENZOL / Benzene, OMniSolv(R) / Annulene / Pure benzene / PHENE / Benzeen / Benzol,HPLC Grade / anhydrous benzene / Benzene, PestiSolv® / AI3-00808 / (6)Annulene / Benzol / Benzol 90 / Benzole / Bicarburet of hydrogen / Caswell no 077 / Coal naphtha / Cyclohexatriene / EPA pesticide chemical code 008801 / NCI-C55276 / Phene / Phenyl hydride / Polystream / Pyrobenzol / Pyrobenzole / Benzolene / Coal naptha / Mineral naphtha / Motor benzol / Nitration benzene / Benzine", + "unNumber": "1114", + "casNumber": "71-43-2", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", + "usage": "합성섬유, 가소제, 세제, 농약, 염료 인화성액체 (구분2) 홉인유해성 (구분1) 발암성 (구분 1A) 만성 수생환경유해성(구분2)", + "state": "액체(5.56℃", + "color": "무색 ~노란색", + "odor": "-11.11 r", + "flashPoint": "-ii.irc", + "autoIgnition": "497.78℃", + "boilingPoint": "80℃", + "density": "497.78℃", + "solubility": "색", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "2.77", + "explosionRange": "1.8~8.(〕%", + "nfpa": { + "health": 2, + "fire": 4, + "reactivity": 0, + "special": "" + }, + "hazardClass": "유해액체물질Y", + "ergNumber": "130", + "idlh": "3O 분)", + "aegl2": "800 ppm", + "erpg2": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발 (E)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", + "msds": { + "hazard": "고인화성, 증발(E), 해상수거 불가", + "firstAid": "흡입노출 • 토하게 하지 말 것, 호흠이 힘든 경우 산소공급, 인공호흡 피부접촉 • 물로 피부를 씻을 것, 의학조치 a급조치 얀구접촉 • 몇 분간 물로 씻을 것, 콘택트렌즈 제거, 자극 시 병원진료 경구섭취 •긴급 의료조치 초동매옹방법 대옹장비 보호복 호흡구 보안경 보호장갑 기타장비 3,4형식 (C급) 방독마스크(반면,전면) ① O 열화사카메라 1형식 (1B) 공기호홉刀 아 아 널화성카베다 1 초기 이격거리 (m) 50 방호거리 (m) 300 | 해상유출시 ► 유출물질은 증발하므로 방제조치 불필요 단. 이 물질은 5.56七에서 응고하므로 겨올철 항내 유출시 응고되어 보호장구 착용 후 »채# 이용한 회수작업 밀요(회수 시 반드시 밀펴i응기데 담을 것) • 유출물질은 발암성과 생식세포에 돌연변이를 알으킬 수 있는 위험한 물질이며, 고인화성으로 증기의 이동에 의한 폭발가능성이 높은 물질이므로, 모든 출동세력 풍상에 위치. 최소 50m 이격거리 유지. 주변선박 통제 (흠연. 불꽃, 스파크 등 모든 점화원 제거) ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용(사고선 근접 시 1B급 착용), 증기흡입과", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무(안개)주수 또는 일반포말 이용 화재진압, 직사주수 금지. 열화상카메라 운용. 화재진압 후에도 사고선 냉각 조치. 안전 확보 후 예인선 등 동원 사고선 긴급예인 조치.", + "spillResponse": "만약 위험하지 않다면 유출 차단. 모든 점화원(불꽃, 불씨, 스파크) 제거하고 주변 해상 통제. 소화포 이용 분무(안개) 주수로 증기들 줄이고 증기운의 이동 억제. 해수에 유출시 증발(E)되어 해상수거 불가. 안전 확보 시까지 지속적 유출물질 농도 탐지 및 모니터링.", + "exposure": "TWA 0.5 ppm, STEL 2.5 ppm", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "BENZ", + "name": "BENZENE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BNZ", + "name": "BENZENE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BZ", + "name": "BENZENE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BN", + "name": "BENZENE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BZN", + "name": "Benzene", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 28, + "abbreviation": "PBFT", + "nameKr": "순수 소 기름", + "nameEn": "Pure beef tallow", + "synonymsKr": "수지 / 수지", + "synonymsEn": "BEEF TALLOW / Talg / Suet / TALLOW / ET 8715 / Hard fats / Tallowoil / Suet, beef / BEEF TALLOW / Beaf tallow / Tallow, beef", + "unNumber": "", "casNumber": "61789-97-7", "transportMethod": "", "sebc": "", - "usage": "마아가린 등 식용품과", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "usage": "양초. 계면활성제, 타이어톨 접착제 r", + "state": "액체(녹는점 31℃)", + "color": "짙은 노란색", + "odor": "왁스냄새", + "flashPoint": "265。0", "autoIgnition": "", "boilingPoint": "", - "density": "", + "density": "0.86", "solubility": "", - "vaporPressure": "", + "vaporPressure": "(물 23.8【miHg)", "vaporDensity": "", "explosionRange": "", "nfpa": { "health": 0, - "fire": 0, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Y", "ergNumber": "", - "idlh": "", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", + "responseDistanceFire": "자료없음", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", + "marineResponse": "부유 (F)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 인공호흡,산소공급 피부접촉 • 20분 이상 흐르는 물에 씻을 것 =3조지 안구접촉 • 20분 이상 흐르는 물에 씻을 것 경구섭취 • 즉시의료기관 진찰", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -5217,58 +2443,76 @@ { "code": "BFT", "name": "BEEF TALLOW", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EFT", + "name": "Extra fancy tallow", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PTLW", + "name": "Prome tallow", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PBFT", + "name": "Pure beef tallow", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 71, + "id": 29, "abbreviation": "BG", "nameKr": "에틸렌글리콜모노부틸에테르", "nameEn": "BUTYL GLYCOL ETHER", + "synonymsKr": "에틸렌 글리꿀 모노부틸 에테르 / 부틸 옥시톨 / 2-부톡시에탄을", "synonymsEn": "2-Butoxyethanol / BUTYL GLYCOL / Ethanol, 2-butoxy- / BUTYL CELLOSOLVE / ETHYLENE GLYCOL MONOBUTYL ETHER / BUTOXYETHANOL / BUTYL OXITOL / ETHYLENE GLYCOL BUTYL ETHER / egbe / GLYCOL ETHER EB / 2-be", - "synonymsKr": "부틸-β-히드록시에틸에테르 / 2-부톡시에탄올 / 모노부틸글리콜 / 부틸셀로솔브 / 부틸옥시톨 / 뷰틸셀로솔브 / 에틸렌글리콜모노부틸에테르 / 부톡시에탄올 / 에틸렌 글리콜 모노-N-뷰틸 에테르 / 부톡시에탄올", "unNumber": "2810", "casNumber": "111-76-2", - "transportMethod": "", - "sebc": "", - "usage": "페인트, 잉크, 세정제, 화장품, 농약 등 다양한 산업 및 일상생활에서 용매, 세정제, 가소제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(6.1급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "페인트류, 래커류. 광택제류, 희석제, 화장품 구분-3(호흡기계 자극) 특정표적장기 독성(반복노출) 급성독성-경피 (구분2) 구분-2", + "state": "액체", + "color": "무색", + "odor": "달콤한 냄새", + "flashPoint": "60℃", + "autoIgnition": "238℃", + "boilingPoint": "171℃", + "density": "0.9015", + "solubility": "1,000 g/L (잘 녹음)", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "4.11", + "explosionRange": "1.1~12.7%", "nfpa": { - "health": 0, - "fire": 0, + "health": 3, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "153", + "idlh": "700 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "독성, 혈액/신장 영향, 피부 흡수", + "firstAid": "흡입노출 • 즉시 의료조치 피부접촉 • 화상의 경우 다량의 찬물로 씻을 것, 긴급 의료조치, 20분 이상 흐르는 물에 씻을 것 3 급조치 안구접촉 • 몇 분간 물로 씻을 것, 콘택트렌즈 제거, 긴급 의료조치 경구섭취 • 입올 씻어 낼 것, 긴급 의료조치, 구강대구강법 인공호흡 하지 말 것 초동 태응방법 대응장비 보호복 : 호흡구 보안경 보호장갑 ' 3.4형&(C급) 丁 방독먀스크(반면: 전면) 三 ① 1형삭 (1B) , 공가호홈기 피 피 기타장비 열화상카메라 1 초기 이격거리(m) 50 방호거리(m) 50 1 헤상유출시 > 유출물질은 피부접촉. 증기흡입 시 매우 유해하며, 눈, 피부에 자극을 일으킬 수 있으므로. 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박 통제 (흡연, 불꽃, 스파크 등 모든 점화원 제거) 乂 금속과 접촉 시 가연성 수소가스 생성. 플라스틱, 고무 부식 > 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3.4형식 보호의 착용(사고선 근접 시 1B이상 착용), 증기홉입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 용해되므로 방제조치 물필요 > 화학방제함 유출물질 농도 탐지, 안전확보", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제.", + "exposure": "TWA 20 ppm, IDLH 700 ppm", "regulation": "" }, "ibcHazard": "", @@ -5277,199 +2521,87 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "BG", "name": "BUTYL GLYCOL ETHER", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 72, - "abbreviation": "BGE", - "nameKr": "에틸렌글리콜모노부틸에테르", - "nameEn": "BUTYL GLYCOL ETHER(2-BUTOXYETHANOL)", - "synonymsEn": "2-Butoxyethanol / BUTYL GLYCOL / Ethanol, 2-butoxy- / BUTYL CELLOSOLVE / ETHYLENE GLYCOL MONOBUTYL ETHER / BUTOXYETHANOL / BUTYL OXITOL / ETHYLENE GLYCOL BUTYL ETHER / egbe / GLYCOL ETHER EB / 2-be", - "synonymsKr": "부틸-β-히드록시에틸에테르 / 2-부톡시에탄올 / 모노부틸글리콜 / 부틸셀로솔브 / 부틸옥시톨 / 뷰틸셀로솔브 / 에틸렌글리콜모노부틸에테르 / 부톡시에탄올 / 에틸렌 글리콜 모노-N-뷰틸 에테르 / 부톡시에탄올", - "unNumber": "2810", - "casNumber": "111-76-2", - "transportMethod": "", - "sebc": "", - "usage": "페인트, 잉크, 세정제, 화장품, 농약 등 다양한 산업 및 일상생활에서 용매, 세정제, 가소제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "BGE", "name": "BUTYL GLYCOL ETHER(2-BUTOXYETHANOL)", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 73, - "abbreviation": "BNZ", - "nameKr": "벤젠", - "nameEn": "BENZENE", - "synonymsEn": "Benzen / BENZOL / Benzene, OMniSolv(R) / Annulene / Pure benzene / PHENE / Benzeen / Benzol,HPLC Grade / anhydrous benzene / Benzene, PestiSolv®", - "synonymsKr": "벤젠 / 벤졸렌 / 석탄나프타 / 시클로헥사트리엔 / 아눌렌 / 콜타르나프타 / 탄소오일 / 페닐수화 / 펜 / 피로벤졸 / 벤졸 / 싸이클로헥사트라이엔 / 페닐 하이드리드", - "unNumber": "1114", - "casNumber": "71-43-2", - "transportMethod": "", - "sebc": "", - "usage": "플라스틱, 합성고무, 세제, 페인트, 의약품 등 석유화학 제품의 원료로 활용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "BNZ", - "name": "BENZENE", - "company": "", - "source": "화물적부도" + "code": "BUCS", + "name": "ETHYLENE GLYCOL MONO-N-BUTYL ETHER", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BOL", + "name": "Butyl oxitol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EGMBE", + "name": "Ethylene glycol monobutyl ether", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 74, + "id": 30, "abbreviation": "BUCB", "nameKr": "다이에틸렌 글라이콜 모노-N-뷰틸 에테르", "nameEn": "DIETHYLENE GLYCOL MONO-N-BUTYL ETHER", - "synonymsEn": "BUCB / BUTOXYDIETHYLENE GLYCOL / BUTOXYDIGLYCOL / BUTOXYETHOXYETHANOL / 2-(2BUTOXYETHOXY) ETHANOL / BUTYLCARBITOL / O-BUTYL DIETHYLENE GLYCOL / BUTYLDIGLYCOL / BUTYLDIGOL / BUTYL ETHYL CELLOSOLVE / DIETHYLENE GLYCOL BUTYL ETHER / DIETHYLENE GLYCOL N-BUTYL ETHER / DIETHYLENE GLYCOL MONOBUTYL ETHER / DGBE / BUTYL DIGLYCOL ETHER / BDGE / BUTYL DIETHOXOL / DEGBE", - "synonymsKr": "뷰톡시다이에틸렌 글라이콜 / 뷰톡시다이글라이콜 / 뷰톡시에툭시에탄올 / 2-(2-뷰톡시에톡시_에탄올 / 뷰틸카르비톨 / O-뷰틸 다이에틸렌 글라이콜 / 뷰틸다이글라이콜 / 뷰틸다이골 / 뷰틸 다이옥시톨 / 뷰틸 에틸 셀로솔브 / 다이에틸렌 글라이콜 뷰틸 에테르 / 다이에틸렌 글라이콜 N-뷰틸 에테르 / 다이에틸렌 글라이콜 모노뷰틸 에테르 / 다이글라이콜 모노뷰틸 에테르", + "synonymsKr": "다이에틸렌 글라이콜 모노-N-뷰틸 에테르 / 뷰톡시다이에틸렌 글라이볼 / 뷰틸다이골", + "synonymsEn": "BUCB / BUTOXYDIETHYLENE GLYCOL / BUTOXYDIGLYCOL / BUTOXYETHOXYETHANOL / 2-(2BUTOXYETHOXY) ETHANOL / BUTYLCARBITOL / O-BUTYL DIETHYLENE GLYCOL / BUTYLDIGLYCOL / BUTYLDIGOL / BUTYL ETHYL CELLOSOLVE / DIETHYLENE GLYCOL / BUTYL ETHER / DIETHYLENE GLYCOL N-BUTYL ETHER / DIETHYLENE GLYCOL MONOBUTYL ETHER / DGBE / BUTYL DIGLYCOL ETHER / BDGE / BUTYL DIETHOXOL / DEGBE", "unNumber": "2810", "casNumber": "112-34-5", "transportMethod": "", "sebc": "", - "usage": "용매, 보습제, 유화제 등 사용", - "state": "", - "color": "", - "odor": "", + "usage": "접착제. 표백제, 전도체, 충진제, 반도체 심한 눈 손상/자극성(구분2)", + "state": "액체 (찐득한)", + "color": "무색", + "odor": "순한 냄새", "flashPoint": "", "autoIgnition": "", "boilingPoint": "", - "density": "", + "density": "0.95", "solubility": "", "vaporPressure": "", "vaporDensity": "", - "explosionRange": "", + "explosionRange": "0.85-24.6%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Z", "ergNumber": "", - "idlh": "", + "idlh": "3O 呈〉", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", + "responseDistanceFire": "※화재위험등급기준", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", + "marineResponse": "용해 (D)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 신선한 곳으로 이동, 산소공급, 인공호휴 피부접촉 - 긴급 의료조치, 20분 이상 흐르는 물에 씻을 것 안구접촉 • 몇 분간 물로 씻을 것, 콘택트렌즈 제거, 긴급 의료조치 경구섭취 •긴급의료조치", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -5489,24 +2621,42 @@ { "code": "BUCB", "name": "DIETHYLENE GLYCOL MONO-N-BUTYL ETHER", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BDG", + "name": "Butyldiglycol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DEGBE", + "name": "Diethylene glycol butyl ether", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BCTOL", + "name": "Butyl Carbitol", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 75, - "abbreviation": "BUCS", - "nameKr": "부틸 셀레솔브", - "nameEn": "ETHYLENE GLYCOL MONO-N-BUTYL ETHER", - "synonymsEn": "2-Butoxyethanol / BUTYL GLYCOL / Ethanol, 2-butoxy- / BUTYL CELLOSOLVE / ETHYLENE GLYCOL MONOBUTYL ETHER / BUTOXYETHANOL / BUTYL OXITOL / ETHYLENE GLYCOL BUTYL ETHER / egbe / GLYCOL ETHER EB / 2-be", - "synonymsKr": "부틸-β-히드록시에틸에테르 / 2-부톡시에탄올 / 모노부틸글리콜 / 부틸셀로솔브 / 부틸옥시톨 / 뷰틸셀로솔브 / 에틸렌글리콜모노부틸에테르 / 부톡시에탄올 / 에틸렌 글리콜 모노-N-뷰틸 에테르 / 부틸셀로솔브", - "unNumber": "2810", - "casNumber": "111-76-2", + "id": 31, + "abbreviation": "C10", + "nameKr": "", + "nameEn": "", + "synonymsKr": "", + "synonymsEn": "", + "unNumber": "", + "casNumber": "", "transportMethod": "", "sebc": "", - "usage": "페인트, 잉크, 세정제, 화장품, 농약 등 다양한 산업 및 일상생활에서 용매, 세정제, 가소제 등 사용", + "usage": "", "state": "", "color": "", "odor": "", @@ -5555,193 +2705,2355 @@ "emsFirstAid": "", "cargoCodes": [ { - "code": "BUCS", - "name": "ETHYLENE GLYCOL MONO-N-BUTYL ETHER", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 76, - "abbreviation": "BZ", - "nameKr": "벤젠", - "nameEn": "BENZENE", - "synonymsEn": "Benzen / BENZOL / Benzene, OMniSolv(R) / Annulene / Pure benzene / PHENE / Benzeen / Benzol,HPLC Grade / anhydrous benzene / Benzene, PestiSolv®", - "synonymsKr": "벤젠 / 벤졸렌 / 석탄나프타 / 시클로헥사트리엔 / 아눌렌 / 콜타르나프타 / 탄소오일 / 페닐수화 / 펜 / 피로벤졸 / 벤졸 / 싸이클로헥사트라이엔 / 페닐 하이드리드", - "unNumber": "1114", - "casNumber": "71-43-2", - "transportMethod": "", - "sebc": "", - "usage": "플라스틱, 합성고무, 세제, 페인트, 의약품 등 석유화학 제품의 원료로 활용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "code": "C10", + "name": "", + "company": "국제공통", + "source": "적부도" + }, { - "code": "BZ", - "name": "BENZENE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 77, - "abbreviation": "C10ANYSOL 150", - "nameKr": "솔벤트 나프타(석유), 중질방향족 (용제 9호 / 한화토탈에너지스 제품)", - "nameEn": "SOLVENT NAPHTHA", - "synonymsEn": "Generichydrocarbon heavy aromatic mixed ethylbenzenes solvent naphtha petroleum hydrocarbon", - "synonymsKr": "솔벤트나프타(석유) / 중질방향족화합물 / 중방향족화합물용제나프타 / 나프탈렌 / 타르캄포 / 횐타르 / 둥근방충제나프탈린 / C10-11아로마틱 하이드로카본 C12-15알케인 / 사이클로알케인 / 아로마틱하이드로카본", - "unNumber": "3082", - "casNumber": "64742-94-5", - "transportMethod": "", - "sebc": "", - "usage": "세척, 용해, 회석, 추출 등 석유화학 부산물로 생산되는 용제", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "code": "C12", + "name": "", + "company": "국제공통", + "source": "적부도" + }, { - "code": "C10ANYSOL 150", - "name": "SOLVENT NAPHTHA", - "company": "", - "source": "화물적부도" + "code": "GVGAS", + "name": "", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HAS", + "name": "", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "LBOGO", + "name": "", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "LSAFO", + "name": "", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MAOO", + "name": "", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NA40", + "name": "", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NTDF", + "name": "", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "P18", + "name": "", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "POMEME", + "name": "", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "R180", + "name": "", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "R46", + "name": "", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SLO", + "name": "", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SMX", + "name": "", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TADE", + "name": "", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TEC100", + "name": "", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TEC5", + "name": "", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TX", + "name": "ALKYLBENZEN MIXTURE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "VCN", + "name": "", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "150HPN", + "name": "150 SUS HPN", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "180SW", + "name": "180F Slack wax", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "500HPN", + "name": "500 SUS HPN", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "AC45C", + "name": "AC-45-C", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "AL150Z", + "name": "AL 150Z", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "AL304", + "name": "AL 304", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "AL304B", + "name": "AL 304B", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "AMOXPOL", + "name": "Alkeny Mod ,Oxyalkylene polymer", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ALP79", + "name": "Alphanol-79", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "AMIX", + "name": "Ammix", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ANOL", + "name": "Anol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ANOND", + "name": "Anon D", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ANON/ANL", + "name": "Anon-Anool mixture", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "APJUC", + "name": "Apple juice concentrate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ASLH", + "name": "Aromasol H", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BNUT", + "name": "Beechnut oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BFT", + "name": "Bleachble fancy tallow", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "C10", + "name": "C10", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "C6CUT", + "name": "C6 CUT", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "C6/7GAS", + "name": "C6/C7 Gasoline", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "C7/8MIX", + "name": "C7-C8 mixture", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "C9", + "name": "C9", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "C9/11ACL", + "name": "C9-C11 alcohol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CNPACID", + "name": "Calium nitrophosphoric acid", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SC5601", + "name": "Caradol SC56-01", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SC5602", + "name": "Caradol SC56-02", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SC5616", + "name": "Caradol SC56-16", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SP4303", + "name": "Caradol SP43-03", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CRDL", + "name": "Caradols", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CARDURAE", + "name": "Cardura E", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CPTSH", + "name": "Caustic potash solution", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CLS", + "name": "Cereclors", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CSLR", + "name": "China clay slurry", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CLBZN", + "name": "Chlorobenzene", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CWG", + "name": "Choice white grease", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CCL", + "name": "Choline chloride", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CK9", + "name": "CK9 acid", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CME", + "name": "Coco methyl esters", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CDRSO", + "name": "Crude degummed rapeseed oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CDSBO", + "name": "Crude degummed soya bean oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CGLCOL", + "name": "Crude glycol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CHORSO", + "name": "Crude high oleic rapeseed oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CPKO", + "name": "Crude palm kernel oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DIALAA", + "name": "Diala A", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DOBA", + "name": "Dobanic", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DBNL45", + "name": "Dobanol 45 (C14-C15)", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DDECA", + "name": "Dodecanol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DOWFR", + "name": "Dowfroth", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DUTREX", + "name": "Dutrex", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EAK", + "name": "Ethyl amyl ketone", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ECYH", + "name": "Ethylene cyanohydrin", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EPT76A", + "name": "EXX-PRINT T76A", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "FA12/18", + "name": "FA C12-18", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "FA14", + "name": "FA C14", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "FA16", + "name": "FA C16", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "FA18", + "name": "FA C18", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "FA6/12", + "name": "FA C6-12", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HEND", + "name": "Heavy end", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HERO", + "name": "Herring oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HTC9300", + "name": "HiTEC 9300", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "IFM1284", + "name": "Infineum D1284", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "IFM1688", + "name": "Infineum D1688", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "IFM2281", + "name": "Infineum D2281", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "IDAL", + "name": "Isodecaldehyde", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HPN150", + "name": "J150 SUS HPN", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HPN500", + "name": "J500 SUS HPN", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "JHG", + "name": "Japanese hog grease", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "LAWS", + "name": "LAWS", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "LIAL123", + "name": "LIALCHEM 123", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "LIAL145", + "name": "LIALCHEM 145", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "LIAL23/75", + "name": "LIALCHEM 23-75", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "LINLEIC", + "name": "Linoleic acid", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "LUXWAX", + "name": "Luxco slax wax", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MOSM", + "name": "MOSSPAR M", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MOS120", + "name": "Mosstanol 120", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MVIN40", + "name": "MVIN 40", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MVIN65", + "name": "MVIN 65 NG", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MVIN170", + "name": "MVIN170", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MYRISTIC", + "name": "Myristic acid", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NBDPO", + "name": "NBD palm oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NBDPL", + "name": "NBD palm olein", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NBDPS", + "name": "NBD palm stearin", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NPOL", + "name": "Niax polyol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NBZN", + "name": "Nitrobenzene", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NPPE", + "name": "Nonyl phenol poly ethoxylate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NOLFN10/13", + "name": "Normal olefins C10-13", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NPARA7", + "name": "NORPAR 7", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NPARA", + "name": "N-Paraffin", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NPARA10/13", + "name": "n-Paraffin C10-13", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NPARA14", + "name": "n-Paraffin C14", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NPARA1417", + "name": "n-Paraffin C14-17", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NVA", + "name": "n-Valeraldehyde", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "OLA219", + "name": "OLOA 219M,219C", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "OLA273", + "name": "OLOA 237", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "OLA246B", + "name": "OLOA 246B", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "OLA246S", + "name": "OLOA 246S", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "OLA247Z", + "name": "OLOA 247Z", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "OLA249S", + "name": "OLOA 249S", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "OLA270", + "name": "OLOA 270", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "OLA271", + "name": "OLOA 271", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "OLA6125", + "name": "OLOA 6125", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "OLA758A", + "name": "OLOA 758A", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "OLN", + "name": "Olone", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "OMC586", + "name": "OMC586", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "GA479R", + "name": "Oronte gasoline additive 479R", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PMF34", + "name": "Palm mid fraction 34", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PMF45", + "name": "Palm mid fraction 45", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PRO", + "name": "Palm residue oil ?", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PS50", + "name": "Palm stearin M.P.50", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PBR9344", + "name": "Parabar 9344", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PFL335", + "name": "Paraflow 335", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PGS1425", + "name": "Pegasol 1425", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PGS3040", + "name": "Pegasol 3040", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PGSR100", + "name": "Pegasol R100", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PGSR150", + "name": "Pegasol R150", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PCDO", + "name": "Pilchard oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PSTL135", + "name": "Plastol 135", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PSTL172", + "name": "Plastol 172", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PSTL382", + "name": "Plastol 382", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PFM", + "name": "Platformate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "POL1342", + "name": "Polyol 1342", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "POLF3020", + "name": "Polyol F3020", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "POLF3022", + "name": "Polyol F3022", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "POLF3040", + "name": "Polyol F3040", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PLYLHL108", + "name": "Polyol HL108", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "POLUBAD", + "name": "Polyolefin lub with additive", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "POPFAT", + "name": "POP FAT", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PAA", + "name": "Primary-amyl alcohol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PANON", + "name": "Pure anon", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RBDPMF", + "name": "RBD Palm mid fraction", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RBDSQPL", + "name": "RBD Special quarility palm olein", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "REO", + "name": "Rubber extender oil 1 (EO-1)", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SALFAT", + "name": "Sal fat", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SRLI85V", + "name": "Saraline 185V", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SRP147", + "name": "Sarapar 147", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SSL175/360", + "name": "Sarasol 175/360", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SSL210/350", + "name": "Sarasol 210/350", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SBPX95", + "name": "SBP X95", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SF131", + "name": "Shell flex 131", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SF210", + "name": "Shell flex 210", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SF212", + "name": "Shell flex 212", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SF213", + "name": "Shell flex 213", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SF214", + "name": "Shell flex 214", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SF274", + "name": "Shell flex 274", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SF293", + "name": "Shell flex 293", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SF310", + "name": "Shell flex 310", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SF3310", + "name": "Shell flex 3310", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SF371", + "name": "Shell flex 371", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SF412", + "name": "Shell flex 412", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SF625", + "name": "Shell flex 625", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SF6371S", + "name": "Shell flex 6371S", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SF6371UV", + "name": "Shell flex 6371UV", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SF683", + "name": "Shell flex 683", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SF700", + "name": "Shell flex 700", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SF724", + "name": "Shell flex 724", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SF790", + "name": "Shell flex 790", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SF881", + "name": "Shell flex 881", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SNF", + "name": "Shell Neoflex", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SSF", + "name": "Shellsol F", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SSK", + "name": "Shellsol K", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SSLF", + "name": "Shellsol LF", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SSN", + "name": "Shellsol N", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SSR", + "name": "Shellsol R", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SSRA", + "name": "Shellsol RA", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SSS", + "name": "Shellsol S", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SST", + "name": "Shellsol T", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SHF20", + "name": "SHF 20", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SHF41", + "name": "SHF 41", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SHF61", + "name": "SHF 61", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SHF63", + "name": "SHF 63", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SHF83", + "name": "SHF 83", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SILDOX", + "name": "Silicon dioxide", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SWAX", + "name": "Slack wax", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BSSW", + "name": "Slack wax(BS SW)", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BS150", + "name": "Slack wax(SW150)", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SW500", + "name": "Slack wax(SW500)", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SLOP", + "name": "Slop water", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SLUDG", + "name": "Sludge oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SN55", + "name": "SN 55", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SN150", + "name": "SN 150", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SN500", + "name": "SN 500", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SN65", + "name": "SN65", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SBRMID", + "name": "Sodium bromide", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SLIGNO", + "name": "Sodium lignosulfonate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SODSLIC", + "name": "Sodium silicate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SFTNL", + "name": "Softanol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NPTHH", + "name": "Solvent naphtha H", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NPTHL", + "name": "Solvent naphtha L", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NPTHM", + "name": "Solvent naphtha M", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SN60", + "name": "Solvent neutral 60", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SL100", + "name": "Solvess 100", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SL150", + "name": "Solvess 150", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SBTL", + "name": "Sorbitol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SOYWY", + "name": "Soyaway water", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SBO", + "name": "Soybean oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SEFT", + "name": "Special extra fancy tallow", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SPERM", + "name": "Sperm oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SPFA", + "name": "Split fatty acid", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SHPSFA", + "name": "Split hydrogenated palm stearin fatty acid", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SPKFA", + "name": "Split palm kernel oil fatty acid", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SPSFA", + "name": "Split palm stearin fatty acid", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SSPKFA", + "name": "Split stearin palm kernel fatty acid", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SUPS", + "name": "Splitted undistilled palm stearin", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SQPO", + "name": "SQ Palm oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SQPL", + "name": "SQ Palm olein", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "STWAX", + "name": "Stearine wax", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SUCROSE", + "name": "Sucrose", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SUGAL", + "name": "Sugar alcohol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "FSACID", + "name": "Sulfuric acid (Fuming)", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SUN", + "name": "Sunflower seed oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "STLW", + "name": "Supreme tallow", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SX50", + "name": "SX-50", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SX70", + "name": "SX-70", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SDEE", + "name": "sym-Dichloroethyl ether", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SNP9", + "name": "Synperonic NP-9", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SPNCS", + "name": "Synperonics", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TALL", + "name": "Tall oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TOFA", + "name": "Tall oil fatty acid (resin acid less than 20%)", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TLW", + "name": "Tallow", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TLWAFAT", + "name": "Tallow animal fat", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TLWFA", + "name": "Tallow fatty acid", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TLWFAL", + "name": "Tallow fatty alcohol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PGTA1618", + "name": "Tallow fatty alcohol(P&G TA-1618)", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TLWS", + "name": "Tallow sterine", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TARACD", + "name": "Tar acid", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TBMA", + "name": "t-Butyl methacrylate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TEE", + "name": "Tee froth", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TEEPOL", + "name": "Teepol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TSDO", + "name": "Teeseed oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TELON", + "name": "Tellone", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TAACE", + "name": "tert-Amyl acetate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TAAL", + "name": "tert-Amyl alcohol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TBA", + "name": "tert-Butanol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TBACE", + "name": "tert-Butyl acetate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TBACR", + "name": "tert-Butylacrylate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TTCE", + "name": "Tetrachloroethane", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TCELN", + "name": "Tetrachloroethylene", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TTEG", + "name": "Tetraethylene glycol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TPB", + "name": "Tetrapropylene benzene", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TMTSO", + "name": "Tomato seed oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TPKFA", + "name": "Top palm kernel fatty acid", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TWT", + "name": "Top white beef tallow", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TDE", + "name": "Trans-Dichloroethylene", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TFM", + "name": "Transformer oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "T2EHT", + "name": "tri-2-Ethylhexyl trimellitate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TPP", + "name": "Tributyl phosphate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TCPP", + "name": "Tricresyl phosphate (containing less than 1% ortho-isomer)", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TETAMN", + "name": "Triethanolamine", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TEAMN", + "name": "Triethylamine", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TEBZN", + "name": "Triethylbenzene", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TEG", + "name": "Triethylene glycol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TETTMN", + "name": "Triethylene tetramine", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TPPG", + "name": "Tripropylene glycol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TPPGMME", + "name": "Tripropylene glycol monomethyl ether", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TXPP", + "name": "Trixylyl phosphate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TCMO", + "name": "Tucum oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TUNG", + "name": "Tung oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TPTN", + "name": "Turpentine", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "UNDECA", + "name": "Undecanol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "UVL51", + "name": "UNIVOLT 51", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "UND", + "name": "Unneutralized naphthenic distilate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "UETLW", + "name": "Unsealed edible tallow", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "UAN", + "name": "Urea ammonium nitrate solution", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "UAS", + "name": "Urea ammonium solution", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "UFA", + "name": "Urea formaldehyde solution", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "VAR40", + "name": "Varsol 40", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "VEO10", + "name": "Veova 10", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "VER10", + "name": "Versatic 10", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "VER911", + "name": "Versatic 911", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "VINEGAR", + "name": "Vinegar", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "VEE", + "name": "Vinyl ethyl ether", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "VNDECA", + "name": "Vinyl neodecanoate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "VDNC", + "name": "Vinylidene chloride", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "VVT500", + "name": "VIVATEC 500", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "VNL3010", + "name": "Voranol®3010 polyol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "WNUTO", + "name": "Walnut oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "WATER", + "name": "Water(Ballast/River water)", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "WSP", + "name": "White spirit", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "X55", + "name": "X-55", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "X55B", + "name": "X-55B", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "XHVI4", + "name": "XHVI 4", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "XHVI5.2", + "name": "XHVI 5.2", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "XHVI8", + "name": "XHVI 8", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EXA9S", + "name": "EXXAL 9S", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HPS", + "name": "Hydro palm stearin", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "C12IOLFN", + "name": "C12 ISO OLEFIN", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DCPN", + "name": "DICHLOROPROPENE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DMDS", + "name": "DIMETHYL DISULFIDE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BS150", + "name": "BSS", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "150NS", + "name": "150NS", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "150NS", + "name": "150NS", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HDRS", + "name": "HYDROSEAL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BCSOL", + "name": "Butyl Cellosolve", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CTOLS", + "name": "Carbito / Solvent", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EPOR331", + "name": "Dow Epoxy Resin/331", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EPOR383", + "name": "Dow Epoxy Resin/383", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DOWNLDB", + "name": "Dowanols DB", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DOWNLEB", + "name": "Dowanols EB", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DOWNLPM", + "name": "Dowanols PM", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DOWP", + "name": "Dowper", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ETHA190", + "name": "Ehanol 190 PF Syn SD 40-B", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EDXE310", + "name": "Emkadioxol E310", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MCFA", + "name": "Methyl Cellosolve FA grade", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MIC", + "name": "Methyl Isobutol Carbinol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NTS", + "name": "Neu-Tri solvent", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PPC", + "name": "Propyl Cellosolve", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SES300", + "name": "Solvent ES 300", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SFX625", + "name": "Specflex*IP 625", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SFX630", + "name": "Specflex*NC 630 Polyol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SFX700", + "name": "Specflex*NC 700", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TGOL10", + "name": "Tergitol NP-10", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TGOL9", + "name": "Tergitol NP-9", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TETA", + "name": "TETA", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "UEEEP", + "name": "Ucar Ester EEP", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "VNOL", + "name": "Voranols", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HNPTH", + "name": "Heavy Naptha", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SYN4", + "name": "Spectrasyn 4", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "14BD", + "name": "1-4 Butanediol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NDCORN", + "name": "Neutralized Dewaxed Corn Oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "OLA249SX", + "name": "OLOA 249SX", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "OLA16502", + "name": "OLOA 16502", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NN10GB", + "name": "NYNAS NYTRO 10GB INSULATING OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EXSD80/100", + "name": "EXXSOL DSP 80/100", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "OLA9842", + "name": "OLOA 9842", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "GLSP1000", + "name": "Glissopal 1000", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SSL75", + "name": "Sarasol 75", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PRW710", + "name": "PROWAX 710", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SA30", + "name": "Stearic acid 30%", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SA60", + "name": "Stearic acid 60%", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "YG", + "name": "Yellow Grease", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NO100R", + "name": "Neutral oil 100R", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NO220R", + "name": "Neutral oil 220R", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NO600R", + "name": "Neutral oil 600R", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "500SN", + "name": "500 SN", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SN80E", + "name": "SOLVENT NEUTRAL 80E", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "FAME", + "name": "Fatty acid methyl ester", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "OLA13000", + "name": "OLOA 13000", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "OLA216Q", + "name": "OLOA 216Q", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "INNACID", + "name": "Isononanoic acid", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NAACE", + "name": "n-Amyl acetate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NBA", + "name": "n-Butyl alcohol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NBALD", + "name": "n-Butyl aldehyde", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NBAMN", + "name": "n-Butyl amine", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NBE", + "name": "n-Butyl ether", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NDCAN", + "name": "n-Decane", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NDA", + "name": "n-Decyl alcohol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NHXN", + "name": "n-Hexane", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NHXNL", + "name": "n-Hexanol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NMEAMN", + "name": "n-Methyl ethanolamine", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NNNAN", + "name": "n-Nonane", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NNNA", + "name": "n-Nonyl alcohol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NPACE", + "name": "n-Propyl acetate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NPA", + "name": "n-Propyl alcohol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NPAMN", + "name": "n-Propylamine", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NUD", + "name": "n-Undecane", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NVA", + "name": "n-Valeraldehyde", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TOTM", + "name": "Tri-2-ethylhexyl trimelliate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MCZW700", + "name": "MONOCIZER W-700", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HGLN60", + "name": "Hygolg LN60", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BGE", + "name": "Butyl Glycol Ether", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CE810", + "name": "CE-810", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CE810K", + "name": "CE-810K", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SYN6", + "name": "Spectrasyn 6", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TXM16342", + "name": "Toluene/Xylene Mix-16342", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 78, - "abbreviation": "C5", - "nameKr": "C5 라피네이트", - "nameEn": "C5 NA RAFFINATE", - "synonymsEn": "raffinate", - "synonymsKr": "C5라피네이트", - "unNumber": "3295", + "id": 32, + "abbreviation": "C8", + "nameKr": "C8(혼합 아로마틱스)", + "nameEn": "C8(mixed aromatics)", + "synonymsKr": "Mixed Aromatics", + "synonymsEn": "C8(mixed aromatics)", + "unNumber": "1993", "casNumber": "혼합물", "transportMethod": "", "sebc": "", - "usage": "부산물(혼합물)", - "state": "", + "usage": "제품원료 분자식 NFPA 코드(0~4단계) 4>⑤ 인화성 경 고 발암성 수생환경유해성 건강 : 2 화재 : 3 반응 : 0 인화성 액체 : 구분3 급성 독성(흡입: 증기): 구분4 피부 부식성/피부 자극성 : 구분2 심한 눈 자극성 : 구분2 발암성:구분2 흡인 유해성: 구분1 급성 수생환경 유해성 : 구분1 만성 수생환경 유해성 : 구분2", + "state": "액체", "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", + "odor": "석유냄새", + "flashPoint": "30℃~33℃", + "autoIgnition": "자료없음", "boilingPoint": "", "density": "", "solubility": "", - "vaporPressure": "", + "vaporPressure": "(물 23.8imiHg)", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 3, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Y", "ergNumber": "", - "idlh": "", + "idlh": "0 분)", "aegl2": "", "erpg2": "", "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유증발 (FE)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 신선한 곳으로 이동, 산소공급, 인공호흡 피부접촉 • 15분 이상 비누아 물로 씻을 것, 의료조치 안구접촉 • 눈을 문지르지 말 것, 15분 동안 물로 씻을 것, 의료조치, 콘택트렌즈 제거 경구섭취 . 즉시 물로 입을 씻어넬 것. 의사진료", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -5761,194 +5073,70 @@ { "code": "C5", "name": "C5 NA RAFFINATE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 79, - "abbreviation": "C5NAR", - "nameKr": "C5 라피네이트", - "nameEn": "C5 NA RAFFINATE", - "synonymsEn": "C5 raffinate", - "synonymsKr": "C5라피네이트", - "unNumber": "3295", - "casNumber": "혼합물", - "transportMethod": "", - "sebc": "", - "usage": "부산물(혼합물)", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "C5NAR", "name": "C5 NA RAFFINATE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 80, - "abbreviation": "C8", - "nameKr": "C8(혼합 아로마틱스)", - "nameEn": "C8(mixed aromatics)", - "synonymsEn": "C8(mixed aromatics)", - "synonymsKr": "C8(혼합 아로마틱스)", - "unNumber": "1993", - "casNumber": "혼합물", - "transportMethod": "", - "sebc": "", - "usage": "제품원료(혼합물)", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "C8", "name": "C8(mixed aromatics)", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 81, + "id": 33, "abbreviation": "C9", "nameKr": "C9+ 아로마틱스", "nameEn": "C9+ AROMATICS", - "synonymsEn": "C9+ AROMATICS", "synonymsKr": "C9+ 아로마틱스", - "unNumber": "-", + "synonymsEn": "C9+ AROMATICS", + "unNumber": "1330", "casNumber": "1330-20-7", "transportMethod": "", - "sebc": "", + "sebc": "E (Evaporator)", "usage": "석유화학 원료, 용제, 비료원료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "액체", + "color": "무색, 투명", + "odor": "독특한 냄새", + "flashPoint": "27~32℃", + "autoIgnition": "464-52*", + "boilingPoint": "135-145^", + "density": "0.8611~0.8802", + "solubility": "0.00003%(20'C)", + "vaporPressure": "7~9mmHg(20t)", + "vaporDensity": "3.7", + "explosionRange": "0.9~7%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 3, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Y", "ergNumber": "", - "idlh": "", + "idlh": "3=", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유 •증발 (FE)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성, 피부/흡입 유해성, 생식독성 우려", + "firstAid": "흡입노출 • 토하게 하지 말 것, 즉시 의료조치, 산소공급, 인공호흡 ________ 피부접촉 • 비누와 물로 씻을 것, 화상의 경우 다량의 찬물로 씻을 것 °“조지 안구접촉 • 몇 분간물로 조심해서 씻어낼 것, 콘택트렌즈를 제거할 것 경구섭취 • 토하게 하지 말 것, 즉시 의료조치 초동 태응방법 대응장비 보호복 호홈구 보안경 보호장갑 기타장비 3,4형식 (C급) 방독마스크(반면,전면) 역흐 W 카메가 1형식 (1B) 공기호홉기 ① ① 열화상카메라 1 초기 이격거리 (m) 50 방호거리 (m) 300 | 해상유후시 ►유출물질윤 생식능력에 악역향과 삼켜서 기도로 유입되면 치명적일 수 있고. 반복노출 시 중대한 독성과 눈, 피부, 호흡기 자극과 두통 현기증을 일으킬 수 있음. 고인화성 물질로 증기의 이동에 의한 폭발 가능성이 높으며. 모든 출동세력 퐁상에 위치, 최소 50m 이격거리 유지. 주변선박 통제(흡연. 불꽃, 스파크 등 모든 점화원 제거) ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3,4형식 보호의 착용(사고선 근접 시 1B이상 착용), 증기흡입과 피부와 눈에 접촉을 피할 것 > 유출물질은 증기밀도가", + "fireFighting": "분무주수/내알코올성 포말/CO₂. 사고선 냉각.", + "spillResponse": "점화원 제거. 주변 해상 통제. 증기운 억제.", + "exposure": "TWA 100 ppm, STEL 150 ppm", "regulation": "" }, "ibcHazard": "", @@ -5957,186 +5145,62 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { "code": "C9", "name": "C9+ AROMATICS", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 82, - "abbreviation": "C9+", - "nameKr": "C9+ 아로마틱스", - "nameEn": "C9+ AROMATICS", - "synonymsEn": "C9+ AROMATICS", - "synonymsKr": "C9+ 아로마틱스", - "unNumber": "-", - "casNumber": "1330-20-7", - "transportMethod": "", - "sebc": "", - "usage": "석유화학 원료, 용제, 비료원료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "C9+", "name": "C9+ AROMATICS", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 83, - "abbreviation": "C9ANYSOL 100", - "nameKr": "경 방향족 화합물 용제 나프타 (용제 8호 / 한화토탈에너제스 제품)", - "nameEn": "SOLVENT NAPHTHA", - "synonymsEn": "/ Solvent naphtha (petroleum), light arom. / Solvent naphtha (petroleum) / SHELLSOLA / C9-10 AROMATIC HYDROCARBONS / 400N base oil / White oil No.5 / 150BS base oil / AROMATIC SOLVENT S-100 / aromatic naphtha, type I / HIGHFLASHAROMATICNAPHTHA / LIGHTAROMATICSOLVENTNAPHTHA", - "synonymsKr": "경 방향족 화합물 용제 나프타 / 경방향족화합물용제나프타 / 솔벤트나프타(석유),경질방향족화합물 / 솔벤트나프타(석유),경질방향족화합물 / C9-10아로마틱하이드로카본 / 솔벤트나프타(석유),가벼운방향족.", - "unNumber": "1268", - "casNumber": "64742-95-6", - "transportMethod": "", - "sebc": "", - "usage": "석유화학 제품의 원료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "C9ANYSOL 100", - "name": "SOLVENT NAPHTHA", - "company": "", - "source": "화물적부도" + "code": "MXX", + "name": "Mixed xylene", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 84, + "id": 34, "abbreviation": "CAN", "nameKr": "카놀라 오일", "nameEn": "CANOLA OIL", - "synonymsEn": "canola / CANBRAOIL / PRIMOROIL / CANOLA OIL / CANOLAOILFUMES / HEATEDCANOLAOIL / Canola Oil (1 g) / CANOLACOOKINGOIL / oils,glyceridic,canola / LOWERUCICACIDRAPESEEDOIL", "synonymsKr": "채종유 / 카놀라유", + "synonymsEn": "canola / CANBRAOIL / PRIMOROIL / CANOLA OIL / CANOLAOILFUMES / HEATEDCANOLAOIL / Canola Oil (1 g) / CANOLACOOKINGOIL / oils,glyceridic,canola / LOWERUCICACIDRAPESEEDOIL", "unNumber": "-", "casNumber": "120962-03-0", - "transportMethod": "", - "sebc": "", + "transportMethod": "산적액체(Y류)", + "sebc": "F (Floater)", "usage": "식용유 등 식용으로 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", + "state": "액체", + "color": "노란색~흰색", + "odor": "불쾌한", + "flashPoint": "163℃", + "autoIgnition": "447℃", "boilingPoint": "", - "density": "", - "solubility": "", + "density": "0.9", + "solubility": "불용", "vaporPressure": "", "vaporDensity": "", "explosionRange": "", "nfpa": { "health": 0, - "fire": 0, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "지속성 부유(F), 해상수거 필요", "ergNumber": "", "idlh": "", "aegl2": "", @@ -6144,16 +5208,16 @@ "responseDistanceFire": "", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "해상부유, 오일 회수", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "식용유, 연소 시 매운 연기 및 독성의 일산화탄소 가스 방출", + "firstAid": "흡입: 신선한 공기. 피부/안구: 물과 비누로 충분히 세척. 경구: 생리식염수로 세척, 의료조치.", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 내알코올 포말.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 부유(F)되어 내화학흡착재 등 이용 흡착제거.", "exposure": "", - "regulation": "" + "regulation": "CAS 8002-13-9" }, "ibcHazard": "", "ibcShipType": "", @@ -6161,201 +5225,205 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "CAN", "name": "CANOLA OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 85, - "abbreviation": "CHXNN", - "nameKr": "시클로헥산온", - "nameEn": "CYCLOHEXANONE", - "synonymsEn": "Cyclohexanone / HEXANONE / Anon / ANONE / Hexanon / Sextone / Cykloheksanon / CYCLOHEXANONE REAGENT (ACS) / CYCLOHEXANONE, REAGENT (ACS)CYCLOHEXANONE, REAGENT (ACS)CYCLOHEXANONE, REAGENT (ACS) / Nadone / hytrolo", - "synonymsKr": "/ 사이클로헥사논 / 섹톤 케토헥사메틸렌 / 시클로헥실케톤 / 아논헥사논 / 케토시클로헥산옥소시클로헥산 / 피멜린케톤 / 히트롤O나돈피메르케톤 / 사이클로헥사논 / 사이클로헥세인온 / 시클로헥사논 / 아논 / 시클로헥산온 / 아농 / 사이클로헥산온 / 나돈 / 섹스톤 / 시클로헥실 케톤 / 케토헥사메틸렌 / 피멜릭 케톤 / 피멜린 케톤 / 헥사논 / 히트롤 O", - "unNumber": "1915", - "casNumber": "108-94-1", - "transportMethod": "", - "sebc": "", - "usage": "주로 나일론 생산에 사용되는 아디포산 합성, 폐인트 제거제, 살충제 용제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "F", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "CHXNN", - "name": "CYCLOHEXANONE", - "company": "", - "source": "화물적부도" + "code": "CAN", + "name": "Canola oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CCAN", + "name": "Crude canola oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HCAO", + "name": "HEA Canola oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HOCAN", + "name": "High oleic canola oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HCAO", + "name": "Hydrogenated canola oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RBDCAO", + "name": "RBD Canola oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RCAO", + "name": "Refined Canola oil", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 86, - "abbreviation": "CNO", - "nameKr": "코코넛 오일", - "nameEn": "Coconut oil", - "synonymsEn": "COCOS NUCIFERA (COCONUT) OIL / Virgin Coconut oil / coconutbutter / Kokosnuoel / Coconut Oil – RBD / Koline / Copra. / oils,copra / Coconut oil / oils,coconut", - "synonymsKr": "/ 야자유 / 코코넛버터 / 코코넛오일 / 코코넛야자씨버터 / 코코넛야자오일 / 코코넛오일(COCONUTOIL) / 코코넛 오일", - "unNumber": "1353", + "id": 35, + "abbreviation": "RBDCNO", + "nameKr": "정제, 탈색, 탈취 공정을 거친 코코넛 오일", + "nameEn": "RBD Coconut oil", + "synonymsKr": "야자유 / 야자유 / 코코넛버터 / 코코넛오일 / 코코넛야자씨버터 / 코코넛야자오일 / 코코넛오일(COCONUTOIL) / 코코넛 오일", + "synonymsEn": "Coconut oil / COCOS NUCIFERA (COCONUT) OIL / Virgin Coconut oil / coconutbutter / Kokosnuoel / Coconut Oil – RBD / Koline / Copra. / oils,copra / Coconut oil / oils,coconut", + "unNumber": "", "casNumber": "8001-31-8", - "transportMethod": "", - "sebc": "", - "usage": "화장품, 세제, 식품 첨가제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "transportMethod": "포장(4.2급), 산적액체(Y류)", + "sebc": "F (Floater)", + "usage": "", + "state": "액체", + "color": "연노랑", + "odor": "코코넛유", + "flashPoint": "113℃", "autoIgnition": "", "boilingPoint": "", - "density": "", - "solubility": "", + "density": "0.92", + "solubility": "불용", "vaporPressure": "", "vaporDensity": "", "explosionRange": "", "nfpa": { "health": 0, - "fire": 0, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "자연발화성, 지속성 부유(F)", + "ergNumber": "135", "idlh": "", "aegl2": "", "erpg2": "", "responseDistanceFire": "", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "해상부유, 오일 회수", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "자연발화성(낙화석 위험), 부유성", + "firstAid": "흡입: 신선한 공기. 피부/안구: 물/비누 세척. 경구: 의료조치.", + "fireFighting": "포말/분무주수/CO₂.", + "spillResponse": "오일펜스/흡착재 회수.", "exposure": "", "regulation": "" }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2(k)TYPE", - "ibcTankType": "2G", - "ibcDetection": "No", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "CNO", "name": "Coconut oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CTCNO", + "name": "Cochin type coconut oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CNO", + "name": "Coconut oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CCNO", + "name": "Crude coconut oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RBDCNO", + "name": "RBD Coconut oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RCNO", + "name": "Refined Coconut oil", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 87, + "id": 36, "abbreviation": "CPP", "nameKr": "폴리프로필렌", "nameEn": "CAST POLYPROPYLENE", - "synonymsEn": "Polypropylene / dlp / PROPYLENE RESIN / POLYPROPYLENE (PP) / HoMopolyMer Polypropylene / soMe / celgard / RPP / j400 / amco / p6500", - "synonymsKr": "폴리프로필렌 / 폴리프로필렌 / 폴리프로필렌", + "synonymsKr": "펜타머 / 1-프로펜, 호모중합물 / 폴리프로펜 / 프로펜. 중합체 / 프로필렌 중합체", + "synonymsEn": "Polypropylene / dlp / PROPYLENE RESIN / POLYPROPYLENE (PP) / HoMopolyMer Polypropylene / soMe / celgard / RPP / j400 / amco / p6500 / K 300 / Amoco 1010 / AT 36 / Atactic polypropylene / Avisun 12-407A / Azdel / Bicolene P / Carlona KM 61 / Carlona PM 61 naturel / Celgard KKX 2 / Clysar / Coathylene PF 0548 / Daplen AD / Daplen ATK 92 / DS 8620 / Eastobond M 5H / Elpon / Enjay E 117 / Escon CD 44A / Hercotuf 110A / Hercules 6523 / Hostalen PPH 1050 / Hostalen PPN / Hostalen PPN 1075 F / ICI 543 / Lupareen / Moplen AD 5ON / Noblen D 50 / Novamont 2030 / Novolen / Oletac 100 / Paisley polymer / Pistac CC / Polypropene / Poprolin / PP 4 [polymer] / Profax / Profax 6601 / Propathene / Propathene GWE 21 / Propathene HWM 25 / Propathene PXC 4515 / 1-Propene, homopolymer / Propene, polymers / Propylene polymer / Tatren EB 111 / Tenite 423DF / Trespaphan / USI 11-4-0047 / Viscol 350P", "unNumber": "-", "casNumber": "9003-07-0", - "transportMethod": "", - "sebc": "", + "transportMethod": "산적액체(Y류)", + "sebc": "F (Floater)", "usage": "식품 포장, 레토르트 식품 포장, 스택 포장 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "state": "점성액체", + "color": "무색, 반투명", + "odor": "무취", + "flashPoint": "98℃", + "autoIgnition": "375℃", + "boilingPoint": "221℃", + "density": "0.805", + "solubility": "불용", + "vaporPressure": "낮음", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "128", + "idlh": "3=", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "반경 50m 이상", + "responseDistanceSpillNight": "중하 100m 이상", + "marineResponse": "부유 (F)", + "ppeClose": "근거리(레벨 B)", + "ppeFar": "원거리(레벨 C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "폴리프로필렌 중합용 원료. 해상 유출 시 부유(F)", + "firstAid": "흡입노출 - 긴급 의료조치. 신선한 곳으로 이동, 산소공급, 인공호흠 피부접촉 - 20분 이상 흐르는 물에 씻을 것, 즉시 의료조치 안구접촉 - 20분 이상 흐르는 물에 씻을 것 경구섭취 •긴급의료조치", + "fireFighting": "드라이케미컬·CO2·포말 사용. 물 분무는 용기 냉각용", + "spillResponse": "해상 유출 시 부유(F)하므로 오일붐으로 포위 후 스키머로 회수", "exposure": "", "regulation": "" }, @@ -6365,67 +5433,73 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-F", + "emsFire": "F-E", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "CPP", "name": "CAST POLYPROPYLENE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PPPG", + "name": "Polypropylene glycol", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 88, + "id": 37, "abbreviation": "CSODA", "nameKr": "수산화나트륨", "nameEn": "CAUSTIC SODA", - "synonymsEn": "/ Sodium hydroxide / NaOH / Caustic soda / Caustic Soda flakes / Caustic soda pearl / CAUSTIC FLAKES / Natriumhydroxid / IODINE SOLUTION / FLAKE CAUSTIC SODA / Hydroxyde de sodium / SODIUM HYDROXIDE, REAGENT GRADE, 97%, FL", - "synonymsKr": "WHITE가성용액 / 나트륨수산화물리퀴드 / 히드록시나트륨용액 / 가성소다,고체 / 가성소다,과립상 / 가성소다,용구 / 가성소다,건조 / 나트륨수산화물,고체 / 나트륨수화물 / 나트륨수산화물,건조고체,플레이크,용구,또는과립상 / 소다알칼리액 / 알칼리액 / 화이트가성 / 0.025N-수산화나트륨(0.025M) / 0.05N-수산화나트륨(0.05M) / 0.1N(0.1M)수산화나트륨 / 0.25M수산화나트륨 / 0.2N-수산화나트륨(0.2M) / 0.5N-수산화나트륨(0.5M) / 1N-수산화나트륨 / 가성소다", - "unNumber": "1823", + "synonymsKr": "WHITE가성용액 / 나트륨수산화물리퀴드 / 히드록시나트륨용액 / 가성소다,고체 / 가성소다,과립상 / 가성소다,용구 / 가성소다,건조 / 나트륨수산화물,고체 / 나트륨수화물 / 나트륨수산화물,건조고체,플레이크,용구,또는과립상 / 소다알칼리액 / 알칼리액 / 화이트가성 / 0.025N-수산화나트륨(0.025M) / 0.05N-수산화나트륨(0.05M) / 0.1N(0.1M)수산화나트륨 / 0.25M수산화나트륨 / 0.2N-수산화나트륨(0.2M) / 0.5N-수산화나트륨(0.5M) / 1N-수산화나트륨 / 가성소다 / 가성 소다 / 가성 소다, 방울 (DOT) / 가성 소다, 건조 (DOT) / 가성 소다, 조각 (DOT) / 가성 소다, 알갱이 (DOT) / 가성 소다, 고체 (DOT) / 소다, 가성 / 소다, 수화물 / 잿물 / 소듐 수화물 / 소듐 수화물, 방울 (DOT) / 소듐 수화물, 건조 (DOT) / 소듐 수화물, 조각 (DOT) / 소듐 수화물, 알갱이 (DOT) / 소듐 수화물, 고체 (DOT) / 잿물 / 하얀 가성 소다 / 가성 소다, 무수물 / 잿물 / 소듐 수화물 고체 / 알갱이 / 진주 / 조각 / 알칼리 / 가성 소다- 진주 / 고체 등급 / 스펙트럼 S1303", + "synonymsEn": "Sodium hydroxide / NaOH / Caustic soda / Caustic Soda flakes / Caustic soda pearl / CAUSTIC FLAKES / Natriumhydroxid / IODINE SOLUTION / FLAKE CAUSTIC SODA / Hydroxyde de sodium / SODIUM HYDROXIDE, REAGENT GRADE, 97%, FL / CAUSTIC SODA / Caustic Soda, Bead (DOT) / Caustic Soda, Dry (DOT) / Caustic Soda, Flake (DOT) / Caustic Soda, Granular (DOT) / Caustic Soda, Solid (DOT) / HYDROXYDE DE SODIUM (FRENCH) / NATRIUMHYDROXID (GERMAN) / NATRIUMHYDROXYDE (DUTCH) / Soda, caustic / Soda, hydrate / SODA LYE / Sodium Hydrate / Sodium Hydroxide, Bead (DOT) / Sodium(hydroxide de) (French) / Sodium Hydroxide, Dry (DOT) / Sodium Hydroxide, Flake (DOT) / Sodium Hydroxide, Granular (DOT) / Sodium Hydroxide, Solid (DOT) / Soda lye / White caustic soda / Caustic soda, anhydrous / Lye / Sodium hydroxide solid / Pellets / Pearl / Flakes / Alkali / Caustic soda -pearl / Solid grades / 30167 / PPG Pels Caustic Soda Beads / Spectrum S1303 / S1302 / S1303 / S1305 / S1308 / SO170", + "unNumber": "1824", "casNumber": "1310-73-2", - "transportMethod": "", - "sebc": "", - "usage": "펄프 및 종이 제조, 비누 및 세제 제조, 섬유, 금속 세정 등에 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "transportMethod": "포장(8급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "펄프 및 종이 제조, 비누 및 세제 제조, 섬유, 금속 세정\n등에 사용", + "state": "액체", + "color": "무색~흰색", + "odor": "무취", + "flashPoint": "해당없음", + "autoIgnition": "해당없음", + "boilingPoint": "14ZC", + "density": "1,518", + "solubility": "111g/L", + "vaporPressure": "15mmHg(20t)", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, + "health": 3, "fire": 0, - "reactivity": 0, + "reactivity": 1, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "유해액체물질(Y) / 국가긴급방제계획 포함 위험•유해물질", + "ergNumber": "154", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "25m", + "responseDistanceSpillNight": "25m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "부식성, 물과 발열 반응, 피부/안구 심각한 손상", + "firstAid": "흡입노출 • 즉시의료기관진찰 피부접촉 - 피부를 물로 씻을 것, 열을 없애기 위해 잔물로 씻을 것 안구접촉 • 몇 분간 물에 조심해서 씻을 것, 콘택트렌즈 제거 경구섭취 • 구강대구강 인공호흡 하지 말 것, 즉시 의료기관 진찰 초동대옹방법 대응장비 보호복 호흡구 보안경 보호장갑 기타장비 3,4형식 (C급) 방독마스크(반면, 전면) „ 수 보호장화 1형식 (1B) 공기호흡기 이 열화상카메라 1 초기 이격거리(m) 25 방호거리(m) 25 | 해상유출시 ►유출물질은 금속을 부삭시키며, 물과 접촉 시 상당한 열을 방출, 심한 눈 손상, 피부화상 등 인체노출 시 유해성이 매우 크므로. 모든 출동세력 풍상에 위치, 최소 25m 이격거리 유지, 주변선박 통제 ►출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3, 4형식 보호의 착용(사고선 근접 시 1B급 착용), 증기흡입, 피부와 눈에 접촉을 피할 것 ►유출물질은 용해되므로 방제조치 불필요 ►화학방제함 유출물질 농도 탐지, 안전 확보 시까지 지속적인 모니터링 1 화재 시대피거리(m) 800 1 + 화재 •폭발시 ► 유출물질은 물질자체는 타지 않으나, 가열시 분해하여 독성가스 방", + "fireFighting": "분무주수/포말/CO₂. 금속과 반응(수소 발생) 유의.", + "spillResponse": "다량 물로 희석. 점화원 제거. 금속과 격리.", "exposure": "", - "regulation": "" + "regulation": "유해화학물질관리법" }, "ibcHazard": "", "ibcShipType": "", @@ -6433,135 +5507,85 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-B", + "emsFire": "F-A", + "emsSpill": "S-B", "emsFirstAid": "", "cargoCodes": [ { "code": "CSODA", "name": "CAUSTIC SODA", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 89, - "abbreviation": "CSS", - "nameKr": "수산화나트륨", - "nameEn": "CAUSTIC SODA", - "synonymsEn": "/ Sodium hydroxide / NaOH / Caustic soda / Caustic Soda flakes / Caustic soda pearl / CAUSTIC FLAKES / Natriumhydroxid / IODINE SOLUTION / FLAKE CAUSTIC SODA / Hydroxyde de sodium / SODIUM HYDROXIDE, REAGENT GRADE, 97%, FL", - "synonymsKr": "/ WHITE가성용액 / 나트륨수산화물리퀴드 / 히드록시나트륨용액 / 가성소다,고체 / 가성소다,과립상 / 가성소다,용구 / 가성소다,건조 / 나트륨수산화물,고체 / 나트륨수화물 / 나트륨수산화물,건조고체,플레이크,용구,또는과립상 / 소다알칼리액 / 알칼리액 / 화이트가성 / 0.025N-수산화나트륨(0.025M) / 0.05N-수산화나트륨(0.05M) / 0.1N(0.1M)수산화나트륨 / 0.25M수산화나트륨 / 0.2N-수산화나트륨(0.2M) / 0.5N-수산화나트륨(0.5M) / 1N-수산화나트륨 / 가성소다", - "unNumber": "1823", - "casNumber": "1310-73-2", - "transportMethod": "", - "sebc": "", - "usage": "펄프 및 종이 제조, 비누 및 세제 제조, 섬유, 금속 세정 등에 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "CSS", "name": "CAUSTIC SODA", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "LYE", + "name": "SODIUM HYDRATE, SOLID", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CSS", + "name": "Caustic soda", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 90, + "id": 38, "abbreviation": "CT", "nameKr": "석탄 타르", "nameEn": "COAL TAR", + "synonymsKr": "타르, 석탄(TAR, COAL)", "synonymsEn": "kc261 / zetar / D03573 / syntar / lavatar / Aquatar / supertah / pixalbol / Crudetar / Tar,coal", - "synonymsKr": "석탄타르 / 콜타르 / 콜타르및정제콜타르 / 석탄 타르", - "unNumber": "1999", + "unNumber": "3082", "casNumber": "8007-45-2", - "transportMethod": "", - "sebc": "", + "transportMethod": "산적액체(Y류)", + "sebc": "F (Floater)", "usage": "붕부제, 지붕 및 도로 포장재, 페인트 원료 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "state": "액체", + "color": "검정색", + "odor": "나프탈렌냄새", + "flashPoint": "207 r", + "autoIgnition": "자료없음", + "boilingPoint": "2051℃", + "density": "1.18~1.23", + "solubility": "약간용해", + "vaporPressure": "(물 23.8imHg)", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, + "health": 3, "fire": 0, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/X", + "ergNumber": "130", + "idlh": "3O 분〉 자己 ch 으", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "침강 (S)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "발암성(PAH), 피부/호흡기 자극, 감작성", + "firstAid": "흡입: 신선한 공기. 피부/안구: 물/비누 세척. 경구: 의료조치.", + "fireFighting": "포말/분무주수/CO₂.", + "spillResponse": "오일펜스/흡착재 회수.", "exposure": "", - "regulation": "" + "regulation": "유해화학물질관리법, CAS 8007-45-2" }, "ibcHazard": "", "ibcShipType": "", @@ -6569,66 +5593,66 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-B", + "emsFire": "F-A", + "emsSpill": "S-B", "emsFirstAid": "", "cargoCodes": [ { "code": "CT", "name": "COAL TAR", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 91, - "abbreviation": "CUMENE", - "nameKr": "큐멘", - "nameEn": "CUMENE", - "synonymsEn": "ISOPROPYLBENZENE / 2-PHENYLPROPANE / CUMEEN / ISOPROPYLBENZEN / ISOPROPILBENZENE / CUMOL / CUMENE", - "synonymsKr": "쿠멘 / 큐멘 / (1-메틸에틸)벤젠 / 메틸 에틸 벤젠 / 아이소프로필벤젠 / 큐몰 / 프로판-2-일베젠 /쿠메네", + "id": 39, + "abbreviation": "IPBZN", + "nameKr": "이소프로필 벤젠", + "nameEn": "Isopropyl benzene", + "synonymsKr": "큐멘 / 아이소프로필 벤젠-쿠멘 / 벤젠, 아이소프로필 / 쿠몰 / 2-페닐프로페인", + "synonymsEn": "Cumene / ISOPROPYLBENZENE / 2-PHENYLPROPANE / Cumeen / Isopropylbenzen / Isopropilbenzene / (1-METHYLETHYL)BENZENE / CUMOL / CUMENE / NSC 8776 / Cumene,99%", "unNumber": "1918", "casNumber": "98-82-8", - "transportMethod": "", - "sebc": "", - "usage": "페놀과 아세톤을 제조하는데 사용되는 원료 물질", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", + "usage": "", + "state": "액체", + "color": "무색", + "odor": "자극적", + "flashPoint": "36。0", + "autoIgnition": "420℃", + "boilingPoint": "152℃", + "density": "0.86", + "solubility": "0.061 g/L (25℃)", + "vaporPressure": "(물 17.5rmiHg))", + "vaporDensity": "4", + "explosionRange": "0.9~6.5%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 2, + "fire": 3, + "reactivity": 1, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "130", + "idlh": "900 ppm", + "aegl2": "300 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "휘발성", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성, 흡인성 유해, 호흡기/피부/안구 자극", + "firstAid": "흡입노출 • 토하게 하지 말 것, 인공호흡, 산소공급 피부접촉 • 긴급 의료조치, 화상이 경우 찬물로 식힐 것 안구접촉 • 긴급 의료조치, 즉시 20분 이상 흐르는 물에 씻을 것 경구섭취 • 긴급 의료조치, 토하게 하지 말 것. 위세척 고려 ► 안전이 확보되면, 화학방제함 또는 예인선 동원 긴급예인 조치 초똥 대응방법 대몽장비 보호볶 너 호홉구 보안경 서 보호장갑 기타장비 3,4형식 (C급) 방독마스크(반면.전면) 仁, 주 연하사가 mi 가 1형식 (1B) 공기호홉기 ① O 열 M 카메라 1 초기 이격거리(m) 50 방호거리(m) 300 해상유출치 ►유출물질윤 인화성 물질로 화재위험성이 있으며, 삼■켜서 기도로 유입되면 치명적일 수 있고, 호홈기 자극등 인체유해성이 있으므로 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박 통제 (홉연. 불꽃, 스파크 등 모든 점화원 제거) ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3.4형식 보호의 착용(사고선 근접 시 1B이상 착용), 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질온 부유하면서 증발하므로 방제조치 불필요 〈단, 추운날씨에 증발이", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 오일펜스/흡착재 회수.", + "exposure": "TWA 50 ppm, AEGL-2 300 ppm, IDLH 900 ppm", "regulation": "" }, "ibcHazard": "", @@ -6637,32 +5661,44 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "CUMENE", "name": "CUMENE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CMN", + "name": "Cumene", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "IPBZN", + "name": "Isopropyl benzene", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 92, + "id": 40, "abbreviation": "CWNO", "nameKr": "캐슈넛 오일", "nameEn": "Cashew nut oil", - "synonymsEn": "CNSL / CASHEWOIL / CASHEWNUTSHELLLIQUID / CASHEWNUTSHELLLIQUIDS / Cashew, nutshell liq. / 3-(8-Pentadecenyl)-phenol / Quantum Cashew Nutshell Oil / CNSL - Cashew Nut Shell Liquid / Anacardium occidentale nutshell oil / Anacardium occidentale,nutshell liq.", "synonymsKr": "캐슈,넛쉘액 / 캐슈,넛쉘액 / 캐슈넛오일 / 캐슈", + "synonymsEn": "CNSL / CASHEWOIL / CASHEWNUTSHELLLIQUID / CASHEWNUTSHELLLIQUIDS / Cashew, nutshell liq. / 3-(8-Pentadecenyl)-phenol / Quantum Cashew Nutshell Oil / CNSL - Cashew Nut Shell Liquid / Anacardium occidentale nutshell oil / Anacardium occidentale,nutshell liq.", "unNumber": "3000", "casNumber": "8007-24-7", "transportMethod": "", "sebc": "", - "usage": "바이오 연료, 접착제, 방수제, 수지, 코팅제, 도장 등 사용", + "usage": "바이오 연료, 접착제, 방수제, 수지, 코팅제, 도장 등\n 사용", "state": "", "color": "", "odor": "", @@ -6713,19 +5749,25 @@ { "code": "CWNO", "name": "Cashew nut oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CWNO", + "name": "Cashew nut oil", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 93, + "id": 41, "abbreviation": "BITUMEN", "nameKr": "비투멘", "nameEn": "BITUMEN", - "synonymsEn": "BITUMEN", "synonymsKr": "콜타르, 핏치, 아스팔트", + "synonymsEn": "BITUMEN", "unNumber": "3257", "casNumber": "8052-42-4", "transportMethod": "", @@ -6781,19 +5823,87 @@ { "code": "BITUMEN", "name": "BITUMEN", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 94, - "abbreviation": "DCBC", - "nameKr": "벙커-c (한화토탈에너지스 제품명)", - "nameEn": "BUNKER C", - "synonymsEn": "", + "id": 42, + "abbreviation": "DBO", + "nameKr": "", + "nameEn": "", "synonymsKr": "", + "synonymsEn": "", + "unNumber": "", + "casNumber": "3551-78-8", + "transportMethod": "", + "sebc": "", + "usage": "", + "state": "", + "color": "", + "odor": "", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "", + "solubility": "", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 0, + "fire": 0, + "reactivity": 0, + "special": "" + }, + "hazardClass": "", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DBO", + "name": "", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 43, + "abbreviation": "DCBC", + "nameKr": "벙커-c\n(한화토탈에너지스 제품명)", + "nameEn": "BUNKER C", + "synonymsKr": "", + "synonymsEn": "", "unNumber": "", "casNumber": "64741-80-6", "transportMethod": "", @@ -6849,59 +5959,59 @@ { "code": "DCBC", "name": "BUNKER C", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 95, + "id": 44, "abbreviation": "DCE", "nameKr": "1,2-디클로로에탄", "nameEn": "1,2-Dichloroethane", - "synonymsEn": "DCE / EDC / 1,2-DCE / ETHYLENE DICHLORIDE / ETHYLENE CHLORIDE / CH2ClCH2Cl / 1,2-Dichlorethane / 1,2-Dichlorethan / Ethane,1,2-dichloro- / ethylene dichloride (eDC)", "synonymsKr": "염화에틸렌 / 1,2-디클로로에탄 / 1,2-비클로로에탄 알파,베타-디클로로에탄 / SYM-디클로로에탄 / 이염화글리콜 / 이염화에틸렌 / 이염화에탄 / 이염화에테인 / 1,2-이염화에탄 / 1,2-다이클로로에탄 / 다이클로로에탄(에틸렌다이클로라이드) / 에틸렌디클로라이드 / 1,2-디클로로에탄", + "synonymsEn": "DCE / EDC / 1,2-DCE / ETHYLENE DICHLORIDE / ETHYLENE CHLORIDE / CH2ClCH2Cl / 1,2-Dichlorethane / 1,2-Dichlorethan / Ethane,1,2-dichloro- / ethylene dichloride (eDC)", "unNumber": "1184", "casNumber": "107-06-2", - "transportMethod": "", - "sebc": "", - "usage": "용제, 합성 원료, 가소제 등으로 활용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "페인트. 코팅제, 접착제의 약품 4>4>위험 인화성 액체(구분2) 발암성 (구분 1B) 급성독성-흡입증기 (구분3) 피부부식/자극성(구분2) 심한 눈 손상성/자극성(구분1) 생식세포 변이원성(구분2) 피부과민성(구분1) 특정표적장기독성(1회노출) -구분3(마취작용)", + "state": "액체", + "color": "무색, 투명", + "odor": "좋은 냄새", + "flashPoint": "13。0", + "autoIgnition": "4131", + "boilingPoint": "84℃", + "density": "1.26", + "solubility": "8.9 g/L (25℃)", + "vaporPressure": "(물 23.8(miHg)", + "vaporDensity": "3.42", + "explosionRange": "6.2~16%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "131", + "idlh": "3O 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "최소반경 50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "침강용해 (SD)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "발암성 의심, 인화성, 호흡기/피부/안구 자극, 중추신경계", + "firstAid": "흡입노출 • 즉시 의료조치, 산소공급, 인공호흡 으그지 피부접촉 • 비누와 물로 씻을 것, 화상의 경우 다량의 찬물로 씻을 것 하오지 안구접촉 • 몇 분간 물로 조심해서 씻어낼 것. 콘택트렌즈를 제거할 것 경구섭취 • 입올 씻어낼 것, 즉시 의료조치", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제. 증기운 이동 억제.", + "exposure": "TWA 10 ppm, IDLH 50 ppm", + "regulation": "유해화학물질관리법" }, "ibcHazard": "", "ibcShipType": "", @@ -6909,194 +6019,180 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "DCE", "name": "1,2-Dichloroethane", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EDC", + "name": "ETHYLENE DICHLORIDE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "1,1DCE", + "name": "1,1-Dichloroethane", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EDC", + "name": "Ethylene dichloride", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 96, - "abbreviation": "DCLM", - "nameKr": "디클로로메탄", - "nameEn": "Dichloromethane", - "synonymsEn": "DCM / METHYLENE CHLORIDE / CH2Cl2 / Methylene dichloride / Dichlormethan / F30 / Methylenchlorid / DichL / Metaclen / Dichlorome", - "synonymsKr": "염화메틸렌 / 솔라에스틴 / 솔메틴 / 에어로텐MM / 이염화메틸렌 / TC523에폭시 / 나르코틸 / 다이클로로메테인 / 디클로로메탄 / 락코메틸렌염화물 / 메탄,디클로로- / 설비세척솔벤트 / 에어로텐(R)MM솔벤트(AEROTHENE / 이염화메탄 / 다이클로로메탄 / 메틸렌 다이클로라이드 / 메틸렌 클로라이드", + "id": 45, + "abbreviation": "MEC", + "nameKr": "메틸렌 클로라이드", + "nameEn": "Methylene chloride", + "synonymsKr": "이염화메틸렌/염화메틸렌/메틸렌클로라이드/DCM", + "synonymsEn": "Dichloromethane / DCM / METHYLENE CHLORIDE / CH2Cl2 / Methylene dichloride / Dichlormethan / F30 / Methylenchlorid / DichL / Metaclen / Dichlorome", "unNumber": "1593", "casNumber": "75-09-2", - "transportMethod": "", - "sebc": "", - "usage": "페인트 제거제, 접착제 제거제, 부품 세척제 등 사용 유연 우레탄 폼, 산업용 접착제, 플라스틱 생산", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(6.1급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "페인트 제거제, 접착제 제거제, 부품 세척제 등 사용\n유연 우레탄 폼, 산업용 접착제, 플라스틱 생산", + "state": "액체", + "color": "무색", + "odor": "달콤한 냄새", + "flashPoint": "0", + "autoIgnition": "556℃", + "boilingPoint": "4O’C", + "density": "1.33", + "solubility": "13g/L(25“C)", + "vaporPressure": "435mmHg(25t;)", + "vaporDensity": "2.93", + "explosionRange": "12~25%", "nfpa": { - "health": 0, + "health": 2, "fire": 0, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "160", + "idlh": "2,300 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "침강용해 (SD)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "독성, 발암 의심, 중추신경계 억제", + "firstAid": "흡입노출 • 의료조치, 산소공급, 인공호흡 피부접촉 • 화상의 경우 다량의 찬물로 씻을 것. 20분 이상 흐르는 물에 씻을 것 안구접촉 • 몇 분간 물로 씻을 것, 콘택트렌즈 제거, 긴급 의료조치 경구섭취 •긴급의료조치", + "fireFighting": "분무주수/포말/CO₂/건조분말. 용기 냉각.", + "spillResponse": "주변 통제. 증기운 이동 억제. 흡수제로 회수.", + "exposure": "TWA 50 ppm", + "regulation": "유해화학물질관리법" }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "FT", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12, 15.17, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-A, S-B", + "emsFire": "F-A", + "emsSpill": "S-B", "emsFirstAid": "", "cargoCodes": [ { "code": "DCLM", "name": "Dichloromethane", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 97, - "abbreviation": "DCM", - "nameKr": "디클로로메탄", - "nameEn": "Dichloromethane", - "synonymsEn": "DCM / METHYLENE CHLORIDE / CH2Cl2 / Methylene dichloride / Dichlormethan / F30 / Methylenchlorid / DichL / Metaclen / Dichlorome", - "synonymsKr": "/ 염화메틸렌 / 솔라에스틴 / 솔메틴 / 에어로텐MM / 이염화메틸렌 / TC523에폭시 / 나르코틸 / 다이클로로메테인 / 디클로로메탄 / 락코메틸렌염화물 / 메탄,디클로로- / 설비세척솔벤트 / 에어로텐(R)MM솔벤트(AEROTHENE / 이염화메탄 / 다이클로로메탄 / 메틸렌 다이클로라이드 / 메틸렌 클로라이드", - "unNumber": "1593", - "casNumber": "75-09-2", - "transportMethod": "", - "sebc": "", - "usage": "페인트 제거제, 접착제 제거제, 부품 세척제 등 사용 유연 우레탄 폼, 산업용 접착제, 플라스틱 생산", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "FT", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12, 15.17, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "DCM", "name": "Dichloromethane", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MC", + "name": "METHYLENE CHLORIDE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MEC", + "name": "METHYLENE CHLORIDE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DCLM", + "name": "Dichloromethane", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DCM", + "name": "Dicyclomethane", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MEC", + "name": "Methylene chloride", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 98, + "id": 46, "abbreviation": "DCPD", "nameKr": "디사이클로펜타디엔", "nameEn": "Dicyclopentadiene", + "synonymsKr": "바이 사이클로펜 타 디엔 , 사이클로펜 타디엔다이 머 , DCPD", "synonymsEn": "DCPD / C10H12 / Dicyclopentadien / CYCLOPENTADIENE DIMER / 3A,4,7,7A-TETRAHYDRO-4,7-METHANOINDENE / Dicyclpentadiene / Bicyclopentadiene / 1,3-cyclopentadiene dimer / DicycL / DCPD90%", - "synonymsKr": "디사이클로펜타디엔 / 디시클로펜타디엔 / 다이사이클로펜타디엔 / 1,3-다이사이클로펜타디엔 이합체 / 1,3-사이클로펜타디엔 이합체 / 1,3-사이클로펜타디엔, 이합체 / 3a,4,7,7a-테트라하이드로-4,7-메타노인덴 / 4,7-메타노-1H-인덴, 3a,4,7,7,7a-테트라하이드로- / 4,7-메타노-3A,4,7,7A-테트라하이드로인덴 / 바이사이클로펜타디엔 / 사이클로펜타디엔 이합체 / 트라이사이클로(5.2.1.02,6)데카-3,8-디렌", "unNumber": "1993", "casNumber": "77-73-6", "transportMethod": "", "sebc": "", - "usage": "플라스틱, 레진, 윤활유, 접착제, 엑포시, 폼, 실리콘 ,고무 등의 원료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "usage": "1992,2048 CioHi2 _ EPDM 탄성중합체, 메탈로센용 화학물질 분류 중간체, 석유화학수지 4> 요위험 환경부기준 수생환경유해성(만성) 구분2 인화성 액체구분2 급성독성(경구) 구분4 급성독성(홉입-미스트) 구분3 피부부식성/자극성구분2 - 심한눈손상/자극성구분2 표적장기전신독성(마취) 구분3 물질톡성 T", + "state": "넘", + "color": "무색, 투명", + "odor": "2.29mmHg", + "flashPoint": "32。6", + "autoIgnition": "503℃", + "boilingPoint": "X", + "density": "0.99", + "solubility": "높음", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "4.6(공기=1)", + "explosionRange": "0.8~6.3%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 3, + "fire": 3, + "reactivity": 1, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Y", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "최소반경 50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유증발 (FE)", "ppeClose": "", "ppeFar": "", "msds": { @@ -7121,200 +6217,224 @@ { "code": "DCPD", "name": "Dicyclopentadiene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DPN", + "name": "Dicyclopentadiene", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 99, + "id": 47, "abbreviation": "DDBZN", "nameKr": "도데실벤젠", "nameEn": "DODECYL BENZENE", - "synonymsEn": "ALKYLBENZENE / LAURYLBENZENE / PHENYLDODECANE / N-LAURYLBENZENE / N-DODECYLBENZENE / 1-PHENYLDODECANE / Tetrapropylenbenzol / tetrapropylene-benzen / tetrapropylene-Benzene / Benzene, tetrapropylene-", - "synonymsKr": "테트라프로필렌벤젠", + "synonymsKr": "벤젠 도데실- / 라우릴벤젠 / N-도데실벤젠", + "synonymsEn": "ALKYLBENZENE / LAURYLBENZENE / PHENYLDODECANE / N-LAURYLBENZENE / N-DODECYLBENZENE / 1-PHENYLDODECANE / Tetrapropylenbenzol / tetrapropylene-benzen / tetrapropylene-Benzene / Benzene, tetrapropylene- / ALKYLATE P 1 / BENZENE, DODECYL- / DETERGENT ALKYLATE NO 2 / DODECANE, 1-PHENYL- / N-DODECYLBENZENE / DODECYLBENZENE (LINEAR) / LAURYLBENZENE / MARLICAN / NALKYLENE 500 / 1-PHENYLDODECANE / PHENYLDODECAN (GERMAN) / UCANE ALKYLATE 12 / dodecylbenzene / nonionic surfactant / detergent alkylate", "unNumber": "3077", "casNumber": "123-01-3", - "transportMethod": "", - "sebc": "", - "usage": "합성 세제, 유지화학물질, 윤활유, 방수제 등 플라스틱 가소제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "산적액체(Y류)", + "sebc": "F (Floater)", + "usage": "합성 세제, 유지화학물질, 윤활유, 방수제 등\n플라스틱 가소제 등 사용", + "state": "액체", + "color": "무색", + "odor": "약한", + "flashPoint": "i3(rc", + "autoIgnition": "자료없음", + "boilingPoint": "266-303℃", + "density": "0.8551", + "solubility": "불용", + "vaporPressure": "5.11mmHg(25‘t:)", + "vaporDensity": "8.47", + "explosionRange": "0.4~2.9%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "유해액체물질/Z", + "ergNumber": "171", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "인화점", + "responseDistanceSpillDay": "25m", + "responseDistanceSpillNight": "100m", + "marineResponse": "부유증발 (FE)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "수생환경 유해성, 피부/흡입 자극", + "firstAid": "흡입노출 • 즉시 의료조치 피부접촉 • 뜨거운 물질의 경우 찬물로 식힐 것, 긴급 의료조치. 20분 이상 흐르는 물에 씻을 것 안구접촉 • 긴급 의료조치, 즉시 20분 이상 흐르는 물에 씻을 것 경구섭취 • 구강대구강 인공호흡 하지 말 것, 긴급 의료조치", + "fireFighting": "포말/분무주수/CO₂.", + "spillResponse": "오일펜스/흡착재 회수.", "exposure": "", "regulation": "" }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "ibcHazard": "S/P", + "ibcShipType": "2", + "ibcTankType": "2G", + "ibcDetection": "R", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "DDBZN", "name": "DODECYL BENZENE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DDBZN", + "name": "Dodecyl benzene", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 100, + "id": 48, "abbreviation": "DEA", "nameKr": "다이에탄올아민", "nameEn": "Diethanolamine", - "synonymsEn": "DEA / Aliphatic amine / Diolamine / Diethanolamin / dela / Iminodiethanol / 2,2'-Azanediyldiethanol / 2-(2-hydroxyethylamino)ethanol / 2,2-IMINODIETHANOL / 2,2'-DIHYDROXYDIETHYLAMINE", "synonymsKr": "2,2-이미노디에탄올 / 디올아민 / 2,2-이미노비스(에탄올) / 이미노디에탄올 / 다이에탄올아민 / 다이에탄올아민(디에탄올아민) / 디에탄올아민 / 비스(2-히드록시에틸)아민 / 2,2-디히드록시디에틸아민 / 디(2-히드록시에틸)아민 / 2-((2-히드록시에틸)아미노)에탄올 / 비스(히드록시에틸)아민(BIS / N,N-디에탄올아민 / B,B-디히드록시-디에틸아민 / 2,2'-이미노비스-에탄올 / 2,2’악사네딜-b-에탄올 / 2,2'-다이하이드록시다이에틸아민 / 2,2'-이미노다이에탄올 / 다이(2-하이드록시에틸)아민 / 비스(2-하이드록시에틸)아민 / N,N-디에탄올아민", - "unNumber": "1719", + "synonymsEn": "DEA / Aliphatic amine / Diolamine / Diethanolamin / dela / Iminodiethanol / 2,2'-Azanediyldiethanol / 2-(2-hydroxyethylamino)ethanol / 2,2-IMINODIETHANOL / 2,2'-DIHYDROXYDIETHYLAMINE", + "unNumber": "1154", "casNumber": "111-42-2", - "transportMethod": "", - "sebc": "", - "usage": "액체 세탁 및 식기 세척, 세제, 화장품, 샴푸 및 헤어 컨디셔너 등 사용 (계면활성제 성분)", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(9급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "유해액체물질/Y 국가긴급방제계획 포함 위험•유해물질 섬유공업에서 윤활유 왁스, 절삭유 등에 주로 사용되며, 암모니아 냄새가 나는 찐득한 점성 있는 액체임. 물에 용해 되므로 방제조치는 불필요 함. 심한 눈 손상과 피부자극을 유발할 수 있고 인체노출 시 유해성이 있으므로, 화학", + "state": "액체 (찐득한)", + "color": "옅은색", + "odor": "암모니아 냄새", + "flashPoint": "138℃", + "autoIgnition": "662℃", + "boilingPoint": "268℃", + "density": "1.09", + "solubility": "완전 혼화", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "3.62", + "explosionRange": "1.7~9.8%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "154", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "최소반경 액체 50m(고체 25m", + "responseDistanceSpillNight": "풍하 방향으로 최소 액체 50m(고체 25m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "독성, 부식성, 피부/안구 심각한 손상", + "firstAid": "흡입노출 • 의학적인 조치, 신선한 공기를 깊게 호흡할 것 피부접촉 • 뜨거운 물질의 경우, 다량의 찬물로 씻을 것, 20분 이상 물에 씻을 것 안구접촉 - 몇 분간 물로 조심해서 씻을 것, 콘택트렌즈 제거 경구섭취 - 입을 씻을 것, 구강대구강법 인공호흡 금지. 의학적인 조치 초몽 대응방법 + ► 유출룰질은 연소시 유독가스 방출, 풍상에 위치, 최소 이격거리 유지하고 내알쿨포 이용 화재진압 화재•폭발시 > 열화상카메라 운용(결과전파). 소화포 아용 사고선 냉각조치 할 것 > 직수분사 금자(화재를 번지게 할 수 있음) - 안전이 확보되면, 화학방제함 또는 예인선 동원 긴급예인 조치 보호복 호홈구 보안경 보호장갑 기타장비 대응장비 3,4형식 (C급) 저 방독마스크(반면. 전면) 1형식 (1B) 공기호흡기 O O 열화상카메라 1 초기 아격거리(m) 액체50(고체 25) 방호거리 (m) 액체50(고체25) 1 해상유출시 • 유출물질은 눈, 피부, 호흡기를 자극하는 등 인제에 유해한 물질로 모든 출동세력 풍상에 위치, 최소 50m 이격 거리 유지하고 주변선박 통제에 집중 ‘ 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3,4형식 보호의", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 통제. 다량 물로 희석.", + "exposure": "TWA 3 ppm", "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "T", + "ibcDetection": "C", "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12, 15.17, 15.19.6, 16.2.6, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "ibcMinRequirement": "15.12, 15.17, 15.19.6,\n16.2.6, 16.2.9", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { "code": "DEA", "name": "Diethanolamine", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DLA", + "name": "Diethanolamine", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DEA", + "name": "Diethyl amine", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 101, + "id": 49, "abbreviation": "DEG", "nameKr": "다이에틸렌 글리콜", "nameEn": "Diethylene glycol", + "synonymsKr": "다이콜 / 글리콜에테르 / 글리콜 에틸 에테르 / 카비톨 / 비스(베타-하이드록시에틸)에테르", "synonymsEn": "DEG / Her / Diethylene glyco / DIGLYCOL / 2,2'-Oxybis(ethan-1-ol) / DIGOL / Diethylenglycol / Ethanol, 2,2'-oxybis- / Diethyleneglyc / Diethylenglykol", - "synonymsKr": "디에틸렌글리콜 / 다이에틸렌글리콜 / 비스(2-하이드록시에틸)에테르 / 다이에틸렌글리콜 / 다이에틸렌글라이콜 / 2,2'-옥시다이에탄올 / 다이에틸렌글라이콜(다만,비의도적잔류물로서0.1%이하인경우는제외) / 다이에틸렌 글리콜 / 2-(2-하이드록시에톡시)에탄올 / 2,2'-다이하이드록시에틸 에테르 / 3-옥시펜탄-1,5-디올 / 에틸렌 다이글리콜 / 2,2'-옥시비스에탄올", "unNumber": "-", "casNumber": "111-46-6", "transportMethod": "", "sebc": "", - "usage": "폴리에스터 수지, 폴리우레탄, 가소제, 합성수지 유화제 등의 원료로 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "usage": "폴리에스터 수지, 폴리우레탄, 가소제, 합성수지\n유화제 등의 원료로 사용", + "state": "점성 액체", + "color": "무색", + "odor": "무취", + "flashPoint": "12*", + "autoIgnition": "229℃", + "boilingPoint": "244-245℃", + "density": "1.12", + "solubility": "1,000g/L(25‘’C)", + "vaporPressure": "0.0057mmHg", + "vaporDensity": "3.66", + "explosionRange": "1.8-12.2%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Z", "ergNumber": "", - "idlh": "", + "idlh": "3O 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", + "responseDistanceFire": "자료없음", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", + "marineResponse": "용해 (D)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 - 신선한 곳으로 이동, 긴급 의료조치, 산소공급, 인공호흡 몽급조치 피부접촉 • 20분 이상 흐르는 물에 씻을 것, 긴급 의료조치 안구접촉 - 20분 이상 흐르는 물에 씻을 것, 의료조치 경구섭취 • 구강대구강 인공호흡 하지 말 것, 즉시 의료조치 초통대응방법 대응장비 보호복 호흡구 ■ 보안경 보호장갑 기타장비 3,4형식 (C급) 방독마스크(반면, 전면)' O 0 열화상카메라 초기 이격거리 (m) 자료없음 방호거리 (m) 자료없음 해상유출치 ► 유출물질은 반복노출 시 중대한 독성을 일으킬 수 있고 생식기능에 악영향을 끼칠 수 있으므로, 모든 출동세력 풍상에 위치, 죄소 이격거리 유지, 주변선박 통제 • 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3.4형삭 보호의 착용. 증기흡입과 피부아 눈에 접촉을 피할 것 ’ 유출물질은 용해되므로 방제조치 불필요 > 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 화재 시대피거리(m) 자료없음 + 화재 •폭발시 • 유출물잘은 연소시 유독가스 방출, 풍상에 위치. 최소 이격거리 유지하고 내얄콜포 이용 화재진압 > 열화상카메라 운용(결과전파), 소화포 이용 사고선", "fireFighting": "", "spillResponse": "", "exposure": "", "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "T", + "ibcDetection": "R", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", "emsCode": "", @@ -7325,127 +6445,71 @@ { "code": "DEG", "name": "Diethylene glycol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 102, - "abbreviation": "DEHA", - "nameKr": "디옥틸아디페이트", - "nameEn": "Bis(2-ethylhexyl) adipate", - "synonymsEn": "DEHA / Hexanedioic acid, bis(2-ethylhexyl) ester / Diethylhexyl adipate / dioctyl / Beha / bis(2-ethylhexyl) / Bis(2-ethylhexyl)hexanedioate / hexanedioicacidbis(2-ethylhexyl)ester / PX-238 / mollans", - "synonymsKr": "DOA / 디(2-에틸헥실)아디프산 / 디옥틸아디페이트 / 다이에틸헥실아디페이트 / 비스(2-에틸헥실) 아디페이트 / 디(2-에틸헥실)아디페이트", - "unNumber": "3082", - "casNumber": "103-23-1", - "transportMethod": "", - "sebc": "", - "usage": "가소제, 유압유, 윤활유 PVC 기반 플라스틱 랩 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "DEHA", - "name": "Bis(2-ethylhexyl) adipate", - "company": "", - "source": "화물적부도" + "code": "DICOL", + "name": "Diethylene glycol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DEG", + "name": "Diethylene glycol", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 103, + "id": 50, "abbreviation": "DEHP", "nameKr": "디(2-에틸헥실)프탈레이트", "nameEn": "Bis(2-ethylhexyl) phthalate", + "synonymsKr": "DOP / 디옥틸프탈레이트 / 비스(2-에틸헥실)프탈레이트 / 디-이차-옥틸프탈레이트", "synonymsEn": "DEHP / DOP / DIOCTYL PHTHALATE / DEHP-D4 / 1,2-Benzenedicarboxylic acid, bis(2-ethylhexyl) ester / Behp / Diisocapryl phthalate / Di(ethylhexyl) phthalate / DI-2-ETHYLHEXYL PHTHALATE / di-sec", - "synonymsKr": "DOP / 디(2-에틸헥실)프탈레이트 / 디옥틸프탈레이트(DOP) / 디프탈산(D.O.P) / 비스(2-에틸헥실)프탈레이트 / 다이에틸헥실프탈레이트 / 비스(2-에틸헥실)프탈레이트 / 비스(2-에틸헥실) 프탈레이트 / 2-에틸헥실프탈레이트", - "unNumber": "-", + "unNumber": "3082", "casNumber": "117-81-7", - "transportMethod": "", - "sebc": "", - "usage": "플라스틱의 유연성을 높이기 위해 사용되는 대표적인 가소제", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "산적액체(Y류)", + "sebc": "F (Floater)", + "usage": "플라스틱 제조. 사진용 필름, 와이어 8 〉 < 〈 扇 험 해 류 위 유 분 급성독성-증기흡입(구분4) 발암성 (구분2) 생식독성(구분 1B) 급성 수생환경유해성(구분1) 만성 수생환경유해성(구분2)", + "state": "액체", + "color": "무색", + "odor": "오일류 냄새", + "flashPoint": "215℃", + "autoIgnition": "350℃", + "boilingPoint": "384℃", + "density": "0.981", + "solubility": "불용", + "vaporPressure": "1.4×10⁻⁷", + "vaporDensity": "13.45", + "explosionRange": "0.3%(245℃)", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "유해액체물질/X", + "ergNumber": "171", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "최소반경 50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유 (F)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "생식독성(DEHP), 발암 의심", + "firstAid": "흡입노출 - 의료조치, 산소공급, 인공호흡 물질특성 인체 유해성 화재 침강 용해 증발 증기밀도 (위험성) . (뭍=1) (물) : (울증기압) (공기=1) V 乂 O O 누 O 入 恨음) (낮욤) 교” 인화점 215仁 발화점 350仁 끓는점 38* 수용해도 °•끼헝唱〒幻) 상온상태 오일류액체 색상 무색 냄새 매우 약한 냄새 비중 0,981 증기압 m2쮸쌔;) 휘발성 낮음 mmHg(25T:) 점도 자료없음 증기밀도 13.45 급성독성 TWA(8A| 간) 5 경구 (LD50) 경피 (LD50) 흡입 (LC50) 노출기준 히' 증기 이티쎠분) 10mg/m’ 30,000 25,000 心g 스 노출한계 ”9'k9 mg/kg 阿/J/4시간 빴뼈뼈 5.000mg/m’ 직접 위험농도 일반증상 - 흡입 구역질, 코와 목의 염증, 폐 손상(발암성 물질〉 피부 피부염증 아그 다량 섭취시 메스꺼움 유발, 염증 己〒 중추신경계기능저하,눈손상 경구 복부경련, 메스꺼움, 설사 응급조치 피부접촉 • 간급 의료조치, 20분 이상 흐르는 물에 씻을 것 안구접촉 • 긴급 의료조치, 20분 이상 흐르는 물에 씻", + "fireFighting": "분무주수/포말/CO₂.", + "spillResponse": "오일펜스/흡착재 회수.", "exposure": "", - "regulation": "" + "regulation": "유해화학물질관리법" }, "ibcHazard": "", "ibcShipType": "", @@ -7453,50 +6517,50 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "DEHP", "name": "Bis(2-ethylhexyl) phthalate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 104, + "id": 51, "abbreviation": "DER", "nameKr": "디글리시딜 에테르", "nameEn": "DIGLYCIDYL ETHER", - "synonymsEn": "dge / nsc54739 / glycidylether / ether,diglycidyl / DIGLYCIDYL ETHER / oxydedediglycidyle / 2-epoxypropylether / diallyletherdioxide / Diglycidyl ether,95% / Di(2-epoxypropyl)ether", "synonymsKr": "디글리시딜에테르 / 다이글라이시딜 에테르", + "synonymsEn": "dge / nsc54739 / glycidylether / ether,diglycidyl / DIGLYCIDYL ETHER / oxydedediglycidyle / 2-epoxypropylether / diallyletherdioxide / Diglycidyl ether,95% / Di(2-epoxypropyl)ether", "unNumber": "-", "casNumber": "1675-54-3", - "transportMethod": "", - "sebc": "", + "transportMethod": "산적액체(Z류)", + "sebc": "F (Floater)", "usage": "에폭시 수지의 반응성 회석제 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "state": "반점성 액체", + "color": "황갈색", + "odor": "무취", + "flashPoint": "79℃", "autoIgnition": "", "boilingPoint": "", - "density": "", - "solubility": "", + "density": "1.16", + "solubility": "불용", "vaporPressure": "", - "vaporDensity": "", + "vaporDensity": "11.4", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "해양오염물질", "ergNumber": "", "idlh": "", "aegl2": "", @@ -7504,14 +6568,14 @@ "responseDistanceFire": "", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "해상부유, 흡착재 회수", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "연소 시 독성 유해 가스 발생, 피부자극, 알레르기성 피부반응, 안구자극, 호흡기자극", + "firstAid": "흡입: 신선한 공기, 인공호흡. 피부: 자극 → 물 세척. 안구: 20분 이상 물로 세척. 경구: 구토유발 금지, 의료조치.", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "오일펜스/흡착재 회수.", "exposure": "", "regulation": "" }, @@ -7521,95 +6585,33 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "DER", "name": "DIGLYCIDYL ETHER", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 105, - "abbreviation": "DGE", - "nameKr": "디글리시딜 에테르", - "nameEn": "DIGLYCIDYL ETHER", - "synonymsEn": "dge / nsc54739 / glycidylether / ether,diglycidyl / DIGLYCIDYL ETHER / oxydedediglycidyle / 2-epoxypropylether / diallyletherdioxide / Diglycidyl ether,95% / Di(2-epoxypropyl)ether", - "synonymsKr": "디글리시딜에테르 / 다이글라이시딜 에테르", - "unNumber": "-", - "casNumber": "1675-54-3", - "transportMethod": "", - "sebc": "", - "usage": "에폭시 수지의 반응성 회석제 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "DGE", "name": "DIGLYCIDYL ETHER", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 106, + "id": 52, "abbreviation": "DIB", "nameKr": "디이소부틸렌", "nameEn": "DIISOBUTYLENE", - "synonymsEn": "Diisobutylene (DIB) / DIB 2 / Two isobutylene / Diisobutylene 2,4,4-trimethyl-penten / 2,2,4-Trimethylpentene / Pentene, 2,4,4-trimethyl- / diisobutylene,isomericcompounds / DIISOBUTYLENE(MIXTURE OF ISOMERS) / DIISOBUTYLENE ISO 9001:2015 REACH", "synonymsKr": "2,4,4-트리메틸펜텐 / 2,4,4-트리메틸펜텐 / 다이아이소뷰틸렌", + "synonymsEn": "Diisobutylene (DIB) / DIB 2 / Two isobutylene / Diisobutylene 2,4,4-trimethyl-penten / 2,2,4-Trimethylpentene / Pentene, 2,4,4-trimethyl- / diisobutylene,isomericcompounds / DIISOBUTYLENE(MIXTURE OF ISOMERS) / DIISOBUTYLENE ISO 9001:2015 REACH", "unNumber": "2050", "casNumber": "25167-70-8", "transportMethod": "", @@ -7652,9 +6654,9 @@ "regulation": "" }, "ibcHazard": "P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "F", + "ibcDetection": "R", "ibcFireFighting": "AC", "ibcMinRequirement": "15.19.6", "emsCode": "", @@ -7665,193 +6667,137 @@ { "code": "DIB", "name": "DIISOBUTYLENE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DIB", + "name": "Diisobutylene", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 107, + "id": 53, "abbreviation": "DIBK", "nameKr": "디이소부틸케톤", "nameEn": "DIISOBUTYL KETONE", - "synonymsEn": "2,6-Dimethyl-4-heptanone / DIBK / DIISOBUTYL KETONE / ISOBUTYL KETONE / 2,6-Dimethylheptan-4-one / VALERONE / FEMA 3537 / NSC 15136 / isovaleron / NSC 406913 / ISOVALERONE", - "synonymsKr": "다이아이소부틸케톤 / 다이아이소부틸케톤(디이소부틸케톤) / 디이소부틸케톤 / 다이아이소뷰틸케톤 / 다이아이소부틸 케톤 / 2,6-다이메틸-4-헵탄온 / 2,6-다이메틸헵탄-4-온 / 디아이비케이 / 발러론", + "synonymsKr": "DiBK / 아이소부틸케톤 / 다이아이소데실 / 이이소바렐론 / 바렐론", + "synonymsEn": "2,6-Dimethyl-4-heptanone / DIBK / DIISOBUTYL KETONE / ISOBUTYL KETONE / 2,6-Dimethylheptan-4-one / VALERONE / FEMA 3537 / NSC 15136 / isovaleron / NSC 406913 / ISOVALERONE / DIBK / DIISOBUTILCHETONE (ITALIAN) / DI-ISOBUTYLCETONE (FRENCH) / DIISOBUTYLKETON (DUTCH, GERMAN) / S-DIISOPROPYLACETONE / sec-Diisopropyl acetone / sym-Diisopropyl acetone / 2,6-DIMETHYL-HEPTAN-4-ON (DUTCH, GERMAN) / 2,6-DIMETHYLHEPTAN-4-ONE / 2,6-DIMETIL-EPTAN-4-ONE (ITALIAN) / 4-HEPTANONE, 2,6-DIMETHYL- / ISOBUTYL KETONE / ISOVALERONE / VALERONE / DIBK", "unNumber": "1157", "casNumber": "108-83-8", - "transportMethod": "", - "sebc": "", - "usage": "주로 합성 및 공정 약품, 실험 연구용 시약 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", + "usage": "고무,래커. 코팅제,의약품 층 험 해 류 위 유 분 인화성액체 (구분3) 특정표적장기 독성(1회노출) - 구분3(호흡기계 자극) 25ppm", + "state": "액체", + "color": "무색투명", + "odor": "가벼운 냄새", + "flashPoint": "48.8℃", + "autoIgnition": "396.1 ℃", + "boilingPoint": "168℃", + "density": "0.81", + "solubility": "0.47 g/L", + "vaporPressure": "1.68 mmHg (20℃)", + "vaporDensity": "4q", + "explosionRange": "0.8~6.2%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "129", + "idlh": "500 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "휘발성", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성, 피부/호흡기 자극, 중추신경계 억제", + "firstAid": "흡입노출 - 신선한 공기가 있는 곳으로 이동, 호흡이 힘들면 산소공급, 의료조치 피부접촉 • 비누와물로 씻을 것 안구접촉 • 즉시 20분 이상 물에 씻을 것 경구섭취 •긴급의료조치 초동 대응방법 대응장비 보호복 호흡구 보안경 보호장갑 3,4형식 (C급) 방독마스크(반면,전면) 수 수 1형식 (1B) 공기호흡기 이 이 기타장비 열화상카메라 1 초기 이격거리 (m) 50 방호거리 (m) 300 1 \" 유출물질은 인화성물질로 화재위험성이 있으며, 인체노출 시 호흡기를 자극할 수 있으므로 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지하고 주변선박 통제 (흡연, 불꽃, 스파크 등 모든 점화원 제거) 해상유출시 ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3,4형식 보호의 착용(사고선 근접 시 1B이상 착용), 증 기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 부유, 용해돠므로 방제조치 불필요 (단. 추운날씨에 증발이 쉽지 않은 경우 오일펜스 설치, 유흡착재 등 이용한 방제조치 필요) > 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 1 화재 시대피거리(m) 800 1 + ► 유출물질은 연소시", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제.", + "exposure": "TWA 25 ppm, IDLH 500 ppm", "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "R", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "DIBK", "name": "DIISOBUTYL KETONE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 108, - "abbreviation": "DICOL", - "nameKr": "다이에틸렌 글리콜", - "nameEn": "Diethylene glycol", - "synonymsEn": "DEG / Her / Diethylene glyco / DIGLYCOL / 2,2'-Oxybis(ethan-1-ol) / DIGOL / Diethylenglycol / Ethanol, 2,2'-oxybis- / Diethyleneglyc / Diethylenglykol", - "synonymsKr": "디에틸렌글리콜 / 다이에틸렌글리콜 / 비스(2-하이드록시에틸)에테르 / 다이에틸렌글리콜 / 다이에틸렌글라이콜 / 2,2'-옥시다이에탄올 / 다이에틸렌글라이콜(다만,비의도적잔류물로서0.1%이하인경우는제외) / 다이에틸렌 글리콜 / 2-(2-하이드록시에톡시)에탄올 / 2,2'-다이하이드록시에틸 에테르 / 3-옥시펜탄-1,5-디올 / 에틸렌 다이글리콜 / 2,2'-옥시비스에탄올", - "unNumber": "-", - "casNumber": "111-46-6", - "transportMethod": "", - "sebc": "", - "usage": "폴리에스터 수지, 폴리우레탄, 가소제, 용매, 습윤제 탈수제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "T", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "DICOL", - "name": "Diethylene glycol", - "company": "", - "source": "화물적부도" + "code": "DIBK", + "name": "Diisobutyl ketone", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 109, - "abbreviation": "DIPP", - "nameKr": "디이소데실프탈산", - "nameEn": "Diisodecyl phthalate", - "synonymsEn": "·1,2-BENZENEDICARBOXYLIC ACID, DIISODECYL ESTER ·BIS(ISODECYL) PHTHALATE ·DIDP ·DIDP (PLASTICIZER) ·PHTHALIC ACID, BIS(8-METHYLNONYL) ESTER ·PHTHALIC ACID, DIISODECYL ESTER ·PLASTICIZED DDP ·PX 120 ·SICOL 184 ·Phthalic acid, diisodecyl ester ·bis(isodecyl phthalate) ·DIDP ·DisoDP ·1, 2 benzenedicarboxylic acid, diisodecyl ester ·1, 2-benzenedicarboxylic acid, di-(C9-C11) branched chain alkyl ester", - "synonymsKr": "·벤젠다이카복실산, 다이아이소데실 에스터 ·비스(아이소데실) 프탈레이트 ·프탈익산, 비스(8-메틸노닐) 에스터 ·프탈익 산, 다이아이소데실 에스터 ·프탈익산, 다이아이소데실 에스터 ·비스(아이소데실 프탈레이트) ·1, 2 벤젠다이카복실산, 다이아이소데실 에스터 ·1, 2-벤젠다이카복실산, 다이-(C9-C11) 알킬 에스터 체인", + "id": 54, + "abbreviation": "DIDPE", + "nameKr": "디이소도데실 프탈레이트", + "nameEn": "DIDP-E", + "synonymsKr": "CAM", + "synonymsEn": "Diisodecyl phthalate / DIDP / Bis(8-methylnonyl) phthalate / diisodecyl / PX 120 / Sicol 184 / BISOFLEX100 / Palatinol Z / Vestinol DZ / Reomol DiDP / BISOFLEXDIDP", "unNumber": "3082", "casNumber": "26761-40-0", - "transportMethod": "", - "sebc": "", - "usage": "케이블, 자동차 내장재, 컨베이어 벨트, 플라스티졸, 코팅 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "산적액체(Y류)", + "sebc": "F (Floater)", + "usage": "케이블, 자동차 내장재, 컨베이어 벨트, 플라스티졸,\n코팅 등 사용", + "state": "액체", + "color": "투명", + "odor": "순한냄새", + "flashPoint": "217℃", + "autoIgnition": "405℃", + "boilingPoint": "463℃", + "density": "0.97", + "solubility": "불용", + "vaporPressure": "5.28X10-gimHg", + "vaporDensity": "154", + "explosionRange": "0.4~2.9%", "nfpa": { "health": 0, - "fire": 0, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/X", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", + "responseDistanceFire": "500m", + "responseDistanceSpillDay": "최소반경 50m", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "부유 (F)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "피부/흡입 자극 (미약)", + "firstAid": "흡입노출 • 신선한 공기가 있는 곳으로 이동, 따뜻하게 안정되게 조치 피부접촉 • 즉시 20분 이상 물에 씻을 것 안구접촉 • 즉시 20분 이상 물에 씻을 것 경구섭취 • 구강대구강법으로 인공호흡 금지. 적절한 호흡의료장비 이용. 의학적인 조치", + "fireFighting": "분무주수/포말/CO₂.", + "spillResponse": "오일펜스/흡착재 회수.", "exposure": "", "regulation": "" }, @@ -7861,118 +6807,68 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "DIPP", "name": "Diisodecyl phthalate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 110, - "abbreviation": "DIDP", - "nameKr": "디이소데실 프탈레이트", - "nameEn": "Diisodecyl phthalate", - "synonymsEn": "·1,2-BENZENEDICARBOXYLIC ACID, DIISODECYL ESTER ·BIS(ISODECYL) PHTHALATE ·DIDP ·DIDP (PLASTICIZER) ·PHTHALIC ACID, BIS(8-METHYLNONYL) ESTER ·PHTHALIC ACID, DIISODECYL ESTER ·PLASTICIZED DDP ·PX 120 ·SICOL 184 ·Phthalic acid, diisodecyl ester ·bis(isodecyl phthalate) ·DIDP ·DisoDP ·1, 2 benzenedicarboxylic acid, diisodecyl ester ·1, 2-benzenedicarboxylic acid, di-(C9-C11) branched chain alkyl ester", - "synonymsKr": "·벤젠다이카복실산, 다이아이소데실 에스터 ·비스(아이소데실) 프탈레이트 ·프탈익산, 비스(8-메틸노닐) 에스터 ·프탈익 산, 다이아이소데실 에스터 ·프탈익산, 다이아이소데실 에스터 ·비스(아이소데실 프탈레이트) ·1, 2 벤젠다이카복실산, 다이아이소데실 에스터 ·1, 2-벤젠다이카복실산, 다이-(C9-C11) 알킬 에스터 체인", - "unNumber": "3082", - "casNumber": "26761-40-0", - "transportMethod": "", - "sebc": "", - "usage": "케이블, 자동차 내장재, 컨베이어 벨트, 플라스티졸, 코팅 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "DIDP", "name": "Diisodecyl phthalate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DIDPE", + "name": "DIDP-E", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DIDP", + "name": "Diisodecyl phthalate", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 111, + "id": 55, "abbreviation": "DINP", "nameKr": "다이아이소노닐프탈산", "nameEn": "DIISONONYL PHTHALATE", + "synonymsKr": "프탈산디이소노닐에스테르 / 다이아이소노닐프탈산 / 디이소노닐프탈산 / 프탈산디이소노닐에스테르 / 다이아이소노닐프탈산 / 1,2-벤젠다이카복실산, 다이(C=8-10) 가지친 알킬 에스터, (C=9)-풍부 / 1,2-벤젠다이카복실산, 다이-C8-10 가지친 알킬 에스터, C9-풍부 / 1,2-벤젠다이카복실산, 다이-C8-10-가지친 알킬 에스터, C9-풍부", "synonymsEn": "Diisononyl phthalate / BIS(3,5,5-TRIMETHYLHEXYL) PHTHALATE / 1,2-benzenedicarboxylicacid,di-c8-c10-branchedalkylester,c9-rich / DINP-1 / Diisononyl phthalate / DI(ISONONYL)PHTHALATE1 / Dialkyl-(C8-C10)phthalate / Diisononyl Phthalate Bis(3,5,5-trimethylhexyl) / DIISONONYL PHTHALATE, TECH. / DI-ISONONYLPHTHALATE,BRANCHED", - "synonymsKr": "프탈산디이소노닐에스테르/ 다이아이소노닐프탈산 / 디이소노닐프탈산 / 프탈산디이소노닐에스테르 / 다이아이소노닐프탈산/ 1,2-벤젠다이카복실산, 다이(C=8-10) 가지친 알킬 에스터, (C=9)-풍부 / 1,2-벤젠다이카복실산, 다이-C8-10 가지친 알킬 에스터, C9-풍부 / 1,2-벤젠다이카복실산, 다이-C8-10-가지친 알킬 에스터, C9-풍부", "unNumber": "3082", "casNumber": "68515-48-0", - "transportMethod": "", - "sebc": "", - "usage": "주로 플라스틱, 고무, 접착제 등의 연화제, 점도 조정제 등으로 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "transportMethod": "산적액체(Y류)", + "sebc": "F (Floater)", + "usage": "주로 플라스틱, 고무, 접착제 등의 연화제, 점도\n조정제 등으로 사용", + "state": "액체", + "color": "무색~연황색", + "odor": "약함", + "flashPoint": "252℃", "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", + "boilingPoint": "250℃", + "density": "0.97", + "solubility": "5.4×10⁻⁴ mg/L (20℃)", + "vaporPressure": "0.3", + "vaporDensity": "16", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "생식독성(구분1B)", "ergNumber": "", "idlh": "", "aegl2": "", @@ -7980,14 +6876,14 @@ "responseDistanceFire": "", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "해상부유, 흡착재 회수", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "생식독성 의심, 피부/흡입 자극", + "firstAid": "흡입: 신선한 공기. 피부/안구: 물로 세척. 경구: 의료조치.", + "fireFighting": "분무주수/포말/CO₂.", + "spillResponse": "오일펜스/흡착재 회수.", "exposure": "", "regulation": "" }, @@ -7997,27 +6893,27 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "DINP", "name": "DIISONONYL PHTHALATE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 112, + "id": 56, "abbreviation": "DMC", "nameKr": "디메틸 카보네이트", "nameEn": "DIMETHYL CARBONATE", - "synonymsEn": "Dimethyl carbonate / METHYL CARBONATE / CARBONIC ACID DIMETHYL ESTER / Dimethylcarbonat / dimetyl carbonate / methylcarbonate((meo)2co) / CH3OCOOCH3 / Dimethylcarbonate,99% / DMC / dimethly carbonate", "synonymsKr": "다이메틸카보네이트 / 다이메틸카르보네이트 / 디메틸카보네이트 / 다이메틸카르보네이트 / 다이메틸 카보네이트", + "synonymsEn": "Dimethyl carbonate / METHYL CARBONATE / CARBONIC ACID DIMETHYL ESTER / Dimethylcarbonat / dimetyl carbonate / methylcarbonate((meo)2co) / CH3OCOOCH3 / Dimethylcarbonate,99% / DMC / dimethly carbonate", "unNumber": "1161", "casNumber": "616-38-6", "transportMethod": "", @@ -8073,64 +6969,64 @@ { "code": "DMC", "name": "DIMETHYL CARBONATE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 113, + "id": 57, "abbreviation": "DMDS", "nameKr": "이황화메틸", "nameEn": "DIMETHYL DISULPHIDE", - "synonymsEn": "Dimethyl disulfide / DMDS / 1,2-dimethyldisulfane / mds / Disulfide,dimethyl / (CH3S)2 / DiMethyl disul / Dimethyldisulfid / 143B / FEMA 3536", "synonymsKr": "디메틸디설파이드 / 디메틸디설파이드 / 메틸 다이설파이드 / 다이메틸다이설파이드 / 디메틸이황화물", + "synonymsEn": "Dimethyl disulfide / DMDS / 1,2-dimethyldisulfane / mds / Disulfide,dimethyl / (CH3S)2 / DiMethyl disul / Dimethyldisulfid / 143B / FEMA 3536", "unNumber": "2381", "casNumber": "624-92-0", "transportMethod": "", "sebc": "", - "usage": "토양 훈증제, 황화제, 살충제, 중간체, 연료 및 윤활유 첨가제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "usage": "토양 훈증제, 황화제, 살충제, 중간체, 연료 및 \n윤활유 첨가제 등 사용", + "state": "액체", + "color": "옅은 노란색", + "odor": "불쾌한 냄새", + "flashPoint": "15^", + "autoIgnition": "37O‘C", + "boilingPoint": "107시 10。€", + "density": "1.063", + "solubility": "불용", + "vaporPressure": "28.7mmHg(25t)", + "vaporDensity": "3,25", + "explosionRange": "1.1~16%", "nfpa": { - "health": 0, - "fire": 0, + "health": 3, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Y", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "최소반경 50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "침강 (S)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 - 신선한 곳으로 이동, 의료조치, 산소공급, 인공호흡 피부접촉 . 비누와 물로 씻을 것, 화상외 경우 다량의 찬물로 씻을 것 안구접촉 • 몇 분간 물로 조심해서 씻어낼 것, 콘택트렌즈를 제거할 것 경구섭취 • 입을 씻어낼 것, 즉시 의료조치 초동 대응방법 보호복 호흡구 보안경 보호장갑 기타장비 대응장비 3.4형식 (C급) 1 형식 (1B) 방독마스크(반면, 전면) 공기호흠기 O O 열화상카메라 1 초기 아격거리(m) 50 방호거리 (m) 50 - 유출물질은 반복노출 시 중대한 독성을 일으킬 수 있고 눈, 피부 자극과 섭취 및 흡입 시 매우 유해하므로 주의가 필요함. 고인화성 물질로 층기의 이동에 의한 폭발가능성이 높으므로 모든 출동세력 풍상에 위치. 최소 50m 이격 해상유출시 거리 유지' 주변선박 통제 (흡연’ 불꽃’ 스파크 등 모든 점화원 제거) - 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3.4형식 보호의 착용(사고선 근접 시 1B이상 착용 증기흡입과 피부와 눈에 접촉을 피할 것 으 유출물질은 침강하므로 방제조치 불필요 > 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 I 화재시대피거리", "fireFighting": "", "spillResponse": "", "exposure": "", "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "R", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", "emsCode": "", @@ -8141,228 +7037,110 @@ { "code": "DMDS", "name": "DIMETHYL DISULPHIDE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 114, + "id": 58, "abbreviation": "DMF", "nameKr": "N,N-다이메틸폼아마이드", "nameEn": "DIMETHYLFORMAMIDE", - "synonymsEn": "N,N-Dimethylformamide / DMF / DMFA / amide,n,n-dimethyl-formicaci / Dimethylformamid / HCON(CH3)2 / Dimethylforamide / DIMETHYL FORMIDE / N,N-Dimethylmethanamide / EMF", "synonymsKr": "다이메틸폼아마이드 / N,N-다이메틸폼아마이드 / N,N-디메틸포름아미드 / N-포밀다이메틸아민 / 디메틸포름아미드 / 디엠에프 / N,N-다이메틸포름아마이드 / 다이메틸포름아마이드", + "synonymsEn": "N,N-Dimethylformamide / DMF / DMFA / amide,n,n-dimethyl-formicaci / Dimethylformamid / HCON(CH3)2 / Dimethylforamide / DIMETHYL FORMIDE / N,N-Dimethylmethanamide / EMF", "unNumber": "2265", "casNumber": "68-12-2", - "transportMethod": "", - "sebc": "", - "usage": "합성피혁, 섬유, 화학제품 생산 공정에서 용매나 첨가제로 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "합성피혁, 섬유, 화학제품 생산 공정에서 용매나\n첨가제로 사용", + "state": "액체", + "color": "무색", + "odor": "아민 냄새", + "flashPoint": "58℃", + "autoIgnition": "445℃", + "boilingPoint": "153℃", + "density": "0.94", + "solubility": "1,000 g/L (25℃, 완전 혼화)", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "2.5", + "explosionRange": "2.2~15.2%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "129", + "idlh": "500 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성, 생식독성, 간독성, 피부 흡수", + "firstAid": "흡입노출 • 의료기관의 진찰, 호흡이 힘든 경우 산소공급, 인공호흡 피부접촉 . 피부를 물로 씻을 것, 화상의 경우 즉시 찬물로 식힐 것 안구접촉 • 몇 분간 물로 조심해서 씻을 것. 콘택트렌즈 제거 경구섭취 •의학적인조치 초동매옹방법 해상유츨시 스파크’ 화염 제거) • 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3,4형식 보호의 착용(사고선 근접 시 1B이상 착용), 증 기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 빠르게 용해되브로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지. 안전홬보 시까지 지속적인 모니터링 보호복 호흡구 보안경 보호장갑 기타장비 대웅장비 3,4형식 (C급) 방독마스크(반면,전면) 1형식 (1B) 공기호홉기 O O 열화상카메라 1 초기 이격거리(m) 50 방호거리 (m) 300 1 > 유출물질은 발암성 물질로 생식기능에 악영향을 끼칠 수 있고 눈과 호흡기를 자극할 수 있음. 인화성물질로 화재 위험성이 있으므로 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지하고 주변선박 통제에 집중(흡연. 불꽃, 화재 시대피거리(m) 800 + ► 풍상에 위치. 최소 이격거리 유지하고 내알콜포", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제. 증기운 이동 억제.", + "exposure": "TWA 10 ppm, IDLH 500 ppm", "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.17, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "DMF", "name": "DIMETHYLFORMAMIDE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 115, - "abbreviation": "DMFA", - "nameKr": "N,N-다이메틸폼아마이드", - "nameEn": "DIMETHYLFORMAMIDE", - "synonymsEn": "N,N-Dimethylformamide / DMF / DMFA / amide,n,n-dimethyl-formicaci / Dimethylformamid / HCON(CH3)2 / Dimethylforamide / DIMETHYL FORMIDE / N,N-Dimethylmethanamide / EMF", - "synonymsKr": "다이메틸폼아마이드 / N,N-다이메틸폼아마이드 / N,N-디메틸포름아미드 / N-포밀다이메틸아민 / 디메틸포름아미드 / 디엠에프 / N,N-다이메틸포름아마이드 / 다이메틸포름아마이드", - "unNumber": "2265", - "casNumber": "68-12-2", - "transportMethod": "", - "sebc": "", - "usage": "합성피혁, 섬유, 화학제품 생산 공정에서 용매나 첨가제로 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "FT", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12, 15.17, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "DMFA", "name": "DIMETHYLFORMAMIDE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 116, - "abbreviation": "DMK", - "nameKr": "아세톤", - "nameEn": "DIMETHYLKETAL", - "synonymsEn": "propan-2-one / aceton / 2-Propanone / (CH3)2CO / ACETONE ALCOHOL / Propan-1-one / Propanon / 2-Propanon / Dimethylketal / GRAMS DECOLORIZER", - "synonymsKr": "/ 아세톤 / 디메틸포름알데히드 / 베타-케토프로판 / 프로파논엔 / 2-프로파논 / 디메틸케톤 / 디메틸케톤,2-프로파논 / 메틸케톤 / 피로아세트에테르 / 다이메틸 케톤 / 다이메틸포름알데하이드 / 메틸 케톤 / 피로아세트 에테르", - "unNumber": "1090", - "casNumber": "67-64-1", - "transportMethod": "", - "sebc": "", - "usage": "페인트, 코팅제, 접착제, 화장품 등 다양한 제품 제조에 활용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "DMK", - "name": "DIMETHYLKETAL", - "company": "", - "source": "화물적부도" + "code": "DMF", + "name": "Dimethylformamide", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DMP", + "name": "Dimethylphenol", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 117, + "id": 59, "abbreviation": "DML", "nameKr": "디메틸실록산", "nameEn": "DIMETHYLPOLYSILOXANE", + "synonymsKr": "다이메틸폴리실록산 / 다이메틸폴리실록산 / 다이메틸폴리실록산 / 폴리(디메틸실록산)", "synonymsEn": "Poly(dimethylsiloxane) / Simethicone / Dimethylpolysiloxane / SILICONE FLUID / POLYDIMETHYLSILOXANE, TRIMETHYLSILOXY TERM / baros / silain / Dimethylpolysiloxan / Simethicone Emulsion 30% / dimethyl(l1-oxidaneyl)-l3-silane / POLYDIMETHYLSILOXANES, TRIMETHYLSILOXY TERMINATED", - "synonymsKr": "다이메틸폴리실록산 / 다이메틸폴리실록산 / 다이메틸폴리실록산/ 폴리(디메틸실록산)", "unNumber": "-", "casNumber": "9016-00-6", "transportMethod": "", "sebc": "", - "usage": "화학 및 식품 산업에서 소포제, 화장품의 계면 활성제 사용", + "usage": "화학 및 식품 산업에서 소포제, 화장품의 계면\n활성제 사용", "state": "", "color": "", "odor": "", @@ -8400,9 +7178,9 @@ "regulation": "" }, "ibcHazard": "P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "No", + "ibcDetection": "O", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.19.6", "emsCode": "", @@ -8413,123 +7191,55 @@ { "code": "DML", "name": "DIMETHYLPOLYSILOXANE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 118, - "abbreviation": "DOA", - "nameKr": "디옥틸아디페이트", - "nameEn": "DIOCTYLADIPATE", - "synonymsEn": "Bis(2-ethylhexyl) adipate / DEHA / Hexanedioic acid, bis(2-ethylhexyl) ester / Diethylhexyl adipate / dioctyl / Beha / bis(2-ethylhexyl) / Bis(2-ethylhexyl)hexanedioate / hexanedioicacidbis(2-ethylhexyl)ester / PX-238 / mollans", - "synonymsKr": "디옥틸아디페이트 / DOA / 디(2-에틸헥실)아디프산 / 디옥틸아디페이트 / 다이에틸헥실아디페이트 / 비스(2-에틸헥실) 아디페이트 / 디(2-에틸헥실)아디페이트", - "unNumber": "3082", - "casNumber": "103-23-1", - "transportMethod": "", - "sebc": "", - "usage": "플라스틱, 고무, 잉크 , 접착제, 페인트, 윤활유 등 다양한 분야에서 가소제 및 첨가제로 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "DOA", - "name": "DIOCTYLADIPATE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 119, + "id": 60, "abbreviation": "DOTP", "nameKr": "디옥틸 테레프탈산", "nameEn": "DIOCTYL TEREPHTHALATE", - "synonymsEn": "Dioctyl terephthalate / DOTP / BIS(2-ETHYLHEXYL) TEREPHTHALATE / DOPT / Dioctyl Terepthalate / Di(2-ethylhexyl)terephthalate / BIS(2-ETHYLHEXYL)-1,4-BENZENEDICARBOXYLATE / 168 plasticizer / 1,4-Benzenedicarboxylic acid, 1,4-bis(2-ethylhexyl) ester / Dioctyl terephthalate,Bis(2-ethylhexyl) terephthalate, PA-6 Plasticizer adhesive / DP-28", "synonymsKr": "디옥틸테레프탈산 / 디옥틸테레프탈산 / 다이에틸헥실테레프탈레이트", + "synonymsEn": "Dioctyl terephthalate / DOTP / BIS(2-ETHYLHEXYL) TEREPHTHALATE / DOPT / Dioctyl Terepthalate / Di(2-ethylhexyl)terephthalate / BIS(2-ETHYLHEXYL)-1,4-BENZENEDICARBOXYLATE / 168 plasticizer / 1,4-Benzenedicarboxylic acid, 1,4-bis(2-ethylhexyl) ester / Dioctyl terephthalate,Bis(2-ethylhexyl) terephthalate, PA-6 Plasticizer adhesive / DP-28", "unNumber": "-", "casNumber": "6422-86-2", "transportMethod": "", "sebc": "", "usage": "가소제, 특히 케이블 재료에 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", + "state": "액체", + "color": "투명", + "odor": "무취", + "flashPoint": "238℃", + "autoIgnition": "자료없음", "boilingPoint": "", - "density": "", + "density": "0.9835", "solubility": "", "vaporPressure": "", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 1, "reactivity": 0, "special": "" }, "hazardClass": "", "ergNumber": "", - "idlh": "", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", + "responseDistanceFire": "자료없음", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", + "marineResponse": "부유 (F)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 신선한 공기가 있는 곳으로 옮기고 호흡하지 않는 경우 인공호흡 실시. 호흡이 힘든 경우 산소를 공급 피트 저초 • 긴급 의료조치를 받을 것. 오염된 옷과 신발을 제거하고 오염지역을 격리할 것. 물질과 접촉 시 즉시 띠〒 目느 20분 이상 흐르는 물에 씻어낼 것 안구접촉 • 긴급 의료조치를 받을 것. 물질과 접촉 시 즉시 20분 이상 흐르는 물에 씻어낼 것 경구섭취 • 긴급 의료조치를 받을 것", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -8549,87 +7259,93 @@ { "code": "DOTP", "name": "DIOCTYL TEREPHTHALATE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 120, + "id": 61, "abbreviation": "DPG", - "nameKr": "옥시비스프로판올", - "nameEn": "DIPROPYLENE GLYCOL", - "synonymsEn": "·PROPANOL, OXYBIS- ·EPA Pesticide Chemical Code 068604 ·4-Oxa-2,6-heptandiol ·Dipropylene glycol (6CI) ·Dipropyleneglycol ·Dipropylenglykol 1,1'-Oxybis(2-propanol) ·Oxybispropanol ·Di-1,2-propylene glycol ·2, 2'-Dihydroxydipropyl ether ·2, 2-'Dihydroxyisopropyl ether ·1, 1'Oxydi-2-propanol ·1, 1'-Oxybis-2-propanol ·Bis(2-Hydroxypropyl)ether ·1, 1'-Dimethyldiethylene glycol ·2, 2'-Dihydroxydiisopropyl ether ·2, 2'-Dihydroxydipropyl ether ·2-Hydroxypropyl-2'-hydroxyisopropyl ether", - "synonymsKr": "·프로판올, 옥시비스- ·EPA 살충제 Chemical Code 068604 ·4-옥사-2,6-헵탄다이올 ·다이프로필렌 글리콜 (6CI) ·다이프로필렌글리콜 ·다이프로필렌글리콜 1,1'-옥시비스(2-프로판올) ·옥시비스프로판올 ·다이-1,2-프로필렌 글리콜 ·2, 2'-다이하이드록시다이프로필 에테르 ·2, 2-'다이하이드록시아이소프로필 에테르 ·1, 1'옥시다이-2-프로판올 ·1, 1'-옥시비스-2-프로판올 ·비스(2-하이드록시프로필)에테르 ·1, 1'-다이메틸다이에틸렌 글리콜 ·2, 2'-다이하이드록시다이아이소프로필 에테르 ·2, 2'-다이하이드록시다이프로필 에테르 ·2-하이드록시프로필-2'-하이드록시아이소프로필 에테르", + "nameKr": "디프로필렌 글리콜", + "nameEn": "Dipropylene glycol", + "synonymsKr": "옥시비스프로판올", + "synonymsEn": "Dipropylene glycol / oxydipropanol / oxybispropanol / DipropyleneGlycol,Certified / Dipropyleneglycol,MixedIsomers,~98% / oxybis-propano / HOSTALUXPNFLUID / oxybis-Propanol / Propanol, oxybis- / DIPROPYLENE GLYCOL / Dipropylene isomers / PROPANOL, OXYBIS- / EPA Pesticide Chemical Code 068604 / 4-Oxa-2,6-heptandiol / Dipropylene glycol (6CI) / Dipropyleneglycol / Dipropylenglykol 1,1'-Oxybis(2-propanol) / Oxybispropanol / Di-1,2-propylene glycol / 2, 2'-Dihydroxydipropyl ether / 2, 2-'Dihydroxyisopropyl ether / 1, 1'Oxydi-2-propanol / 1, 1'-Oxybis-2-propanol / Bis(2-Hydroxypropyl)ether / 1, 1'-Dimethyldiethylene glycol / 2, 2'-Dihydroxydiisopropyl ether / 2, 2'-Dihydroxydipropyl ether / 2-Hydroxypropyl-2'-hydroxyisopropyl ether", "unNumber": "-", "casNumber": "25265-71-8", - "transportMethod": "", - "sebc": "", - "usage": "화장품 원료, 솔벤트, 식품 첨가제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "transportMethod": "산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "접착제, 소독제, 살균제, 향료, 윤활유, 계면활성제", + "state": "액체", + "color": "무채색", + "odor": "매우 약한 냄새", + "flashPoint": "121℃", + "autoIgnition": "자료없음", + "boilingPoint": "228℃", + "density": "1.02", + "solubility": "1,000 g/L (25℃, 완전 혼화)", + "vaporPressure": "(물 17.5mmHg)", "vaporDensity": "", - "explosionRange": "", + "explosionRange": "2.9~12.6%", "nfpa": { "health": 0, - "fire": 0, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Y", "ergNumber": "", - "idlh": "", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", + "responseDistanceFire": "자료없음", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "피부/안구 자극 (경미)", + "firstAid": "흡입노출 - 신선한 곳으로 이동, 산소공급, 인공호흡 피부접촉 • 뜨거운 물질의 경우 찬물로 식힐 것, 긴급 의료조치, 20분 이상 흐르는 물에 씻을 것 응급조치 - 안구접촉 경구섭취 • 긴급 의료조치, 20분 이상 흐르는 물에 씻을 것 •긴급의료조치 _____ 초동대웅방법 대응장비 보호복 호흡구 보안경 3,4형식 (C급) 방독마스그(반면. 전면) O 보호장갑 O 기타장비 열화상카메라 1 초기이격거리 (m) 자료없음 방호거리 (m) 자료없음 1 해상유출시 . 유출물질은 피부를 자극하는 물질로, 최소 이격거리 유지, 주변선박 통제 ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3,4형식 보호의 착용, 증기흅입과 피부와 눈에 접촉올 피할 것 - 유출물질은 용해되므로 방제조치 불필요 느 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 1 화재 시대피거리(m) 자료없음 1 으 유출물질은 연소시 유독가스 방출, 풍상에 위치, 최소 이격거리 유지하고 내알콜포 이용 화재진압 - 열화상카메라 운용(결과전파), 소화포 이용 사고선 냉각조치 할 것 ► 직수분사 금지(화재를 번지게 할 수 있음) 으 안전이 확보되면", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "주변 통제. 희석 처리.", + "exposure": "TWA 2,000 mg/㎥, IDLH 100 mg/㎥", "regulation": "" }, "ibcHazard": "P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "No", + "ibcDetection": "O", "ibcFireFighting": "AC", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-A", + "emsFire": "F-A", + "emsSpill": "S-A", "emsFirstAid": "", "cargoCodes": [ { "code": "DPG", "name": "DIPROPYLENE GLYCOL", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DPG", + "name": "Dipropylene glycol", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 121, + "id": 62, "abbreviation": "CDP", "nameKr": "크레질 디페닐 포스페이트", "nameEn": "DIPHENYL CRESYL PHOSHATE", - "synonymsEn": "diphenyl CRESYL PHOSPHATE / MONOCRESYL DIPHENYL PHOSPHATE / METHYLPHENYL DIPHENYL PHOSPHATE / 3-METHYLPHENYL DIPHENYL", "synonymsKr": "메틸페닐디페닐인산 / 크로질디페닐포스페이트 / 메틸페닐디페닐인산 / 다이페닐 인산 크레실 / 다이페닐 인산 톨릴", + "synonymsEn": "diphenyl CRESYL PHOSPHATE / MONOCRESYL DIPHENYL PHOSPHATE / METHYLPHENYL DIPHENYL PHOSPHATE / 3-METHYLPHENYL DIPHENYL", "unNumber": "-", "casNumber": "26444-49-5", "transportMethod": "", @@ -8685,87 +7401,25 @@ { "code": "CDP", "name": "DIPHENYL CRESYL PHOSHATE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 122, - "abbreviation": "DPK", - "nameKr": "크레질 디페닐 포스페이트", - "nameEn": "DIPHENYL CRESYL PHOSHATE", - "synonymsEn": "diphenyl CRESYL PHOSPHATE / MONOCRESYL DIPHENYL PHOSPHATE / METHYLPHENYL DIPHENYL PHOSPHATE / 3-METHYLPHENYL DIPHENYL", - "synonymsKr": "메틸페닐디페닐인산 / 크로질디페닐포스페이트 / 메틸페닐디페닐인산 / 다이페닐 인산 크레실 / 다이페닐 인산 톨릴", - "unNumber": "-", - "casNumber": "26444-49-5", - "transportMethod": "", - "sebc": "", - "usage": "나연제 및 가소제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "DPK", "name": "DIPHENYL CRESYL PHOSHATE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 123, + "id": 63, "abbreviation": "MDI", "nameKr": "메틸렌비스페닐아이소사이안산(메틸렌비스페닐이소시안산)", "nameEn": "METHYLENEDIPHENYL 4,4-DIISOCYANATE", - "synonymsEn": "4,4'-Diphenylmethane diisocyanate / MDI / methylene / Methylene diphenyl diisocyanate / DIPHENYLMETHANE DIISOCYANATE / DESMODUR / MBI / yiqingsuanzhi / methylenediphenyldiisocyanate / BIS(4-ISOCYANATOPHENYL)METHANE / Isonate", "synonymsKr": "4,4′-메틸렌 비스(페닐 이소시아네이트)(고체) / 4,4'-디페닐메탄디이소시아네이트 / 4,4′-메틸렌비스(페닐이소시아네 / 4,4′-메틸렌비스(페닐이소시아네이트)(고체) / 메틸렌디(비스)페닐4,4‘-디이소시아네이트 / 메틸렌비스페닐아이소사이안산(메틸렌비스페닐이소시안산) / 4,4'-메틸렌디(비스)페닐디이소시아네이트 / 메틸렌비스(4-페닐아이소사이아네이트) / 4,4'-디이소시안산 디페닐메탄 / 4,4-디이소시안산디페닐메탄 / 메틸렌비스페닐이소시아네이트", + "synonymsEn": "4,4'-Diphenylmethane diisocyanate / MDI / methylene / Methylene diphenyl diisocyanate / DIPHENYLMETHANE DIISOCYANATE / DESMODUR / MBI / yiqingsuanzhi / methylenediphenyldiisocyanate / BIS(4-ISOCYANATOPHENYL)METHANE / Isonate", "unNumber": "2206", "casNumber": "101-68-8", "transportMethod": "", @@ -8821,21 +7475,45 @@ { "code": "MDI", "name": "METHYLENEDIPHENYL 4,4-DIISOCYANATE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DPMD", + "name": "Diphenylmethane diisocyanate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DPLST", + "name": "DIPLAST TM", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MDI", + "name": "MDI", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MDISO", + "name": "Methyl diisocyanate", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 124, + "id": 64, "abbreviation": "NARO", "nameKr": "논-아로마틱스", "nameEn": "NON AROMATIC RAFFINATE", - "synonymsEn": "NON AROMATIC RAFFINATE", "synonymsKr": "비방향족 혼합물(연료 첨가제, 공업용 용제원료)", + "synonymsEn": "NON AROMATIC RAFFINATE", "unNumber": "-", - "casNumber": "64741-46-4 96-37-7 110-54-3 110-82-7", + "casNumber": "64741-46-4\n96-37-7\n110-54-3\n110-82-7", "transportMethod": "", "sebc": "", "usage": "연료 첨가제, 공업용 용제원료", @@ -8889,59 +7567,65 @@ { "code": "NARO", "name": "NON AROMATIC RAFFINATE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NoNAROMATICS", + "name": "NON AROMATIC RAFFINATE", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 125, + "id": 65, "abbreviation": "BUTANE", "nameKr": "부탄", "nameEn": "n-Butane", + "synonymsKr": "부탄 / 부탄 / 부타디엔0.1%w / w이상함유하는부탄", "synonymsEn": "n-Butane / BUTANE / r600 / n-Butan / Batane / n-C4H10 / BUTANES / 1-Butane / A-17 / Q GAS / Bu-Gas", - "synonymsKr": "부탄 / 부탄 / 부타디엔0.1%w/w이상함유하는부탄", "unNumber": "1011", "casNumber": "106-97-8", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(2급), 산적액화가스", + "sebc": "G (Gas)", "usage": "라이터, 버너 등 휴대용 연료 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "기체(액화)", + "color": "무색", + "odor": "무취(부취제 첨가)", + "flashPoint": "-60℃", + "autoIgnition": "287℃", + "boilingPoint": "-0.5℃", + "density": "0.6", + "solubility": "0.06 g/L (25℃)", + "vaporPressure": "1,820 mmHg (25℃)", + "vaporDensity": "2.07", + "explosionRange": "1.9~8.5%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "고인화성가스, 비등가체(BLEVE)", + "ergNumber": "115", + "idlh": "1,600 ppm", + "aegl2": "17,000 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "반경 800m 이상", + "responseDistanceSpillDay": "반경 50m 이상", + "responseDistanceSpillNight": "중하 300m 이상", + "marineResponse": "기체로 확산, 해상수거 불가", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "고인화성, 질식성, 동상 위험", + "firstAid": "흡입: 신선한 공기, 산소공급. 동상(액화): 미온수 해동. 긴급 의료조치.", + "fireFighting": "가스 차단 우선. 차단 불가 시 화재 유지. CO₂/건조분말. 용기 냉각.", + "spillResponse": "점화원 제거. 환기 확보. 가스검지기. 증기운 형성 시 대피.", + "exposure": "TWA 800 ppm, AEGL-2 17,000 ppm, IDLH 1,600 ppm", + "regulation": "고압가스안전관리법" }, "ibcHazard": "", "ibcShipType": "", @@ -8949,63 +7633,63 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-D, S-U", + "emsFire": "F-D", + "emsSpill": "S-U", "emsFirstAid": "", "cargoCodes": [ { "code": "BUTANE", "name": "n-Butane", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 126, + "id": 66, "abbreviation": "HRAFF", "nameKr": "헤비 라피네이트", "nameEn": "Hydrocarbons, C5-8", - "synonymsEn": "Hydrocarbons, C5-8", "synonymsKr": "헤비 라피네이트", + "synonymsEn": "Hydrocarbons, C5-8", "unNumber": "-", "casNumber": "92128-65-9", "transportMethod": "", "sebc": "", "usage": "사이클로헥산, 헥산 등의 제조 원료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "state": "액체", + "color": "-", + "odor": "가솔린 같은 냄새", + "flashPoint": "<-18℃", "autoIgnition": "", "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "density": "0.749", + "solubility": "-", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "2.9", + "explosionRange": "1.1~8.7%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 4, "reactivity": 0, "special": "" }, "hazardClass": "", "ergNumber": "", - "idlh": "", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발©", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 토하게 하지 말고 의사 조치 필요 피부접촉 • 피부에 자극이 생기면 의사 조치 안구접촉 • 몇 분간 물로 조심해서 씻으시오 경구섭취 •즉시의사조치", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -9025,127 +7709,151 @@ { "code": "HRAFF", "name": "Hydrocarbons, C5-8", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 127, - "abbreviation": "IP", - "nameKr": "이소프렌", - "nameEn": "Isoprene", + "id": 67, + "abbreviation": "IPRE", + "nameKr": "이소프렌(2-메틸-1,3-부타디엔)", + "nameEn": "ISOPRENE", + "synonymsKr": "펜탄디엔 / 2-메틸-1,3-부타디엔 / 이소프렌 / 이소프렌(2-메틸-1,3-부타디엔) / 아이소프렌(2-메틸-1,3-부타디엔) / 아이소프렌 / 1,3-부타디엔, 2-메틸-", "synonymsEn": "Isoprene / 2-METHYL-1,3-BUTADIENE / ACETATE BUFFER / BUFFER SOLUTION / SODIUM ACETATE BUFFER / lsoprene / BUFFER PH7.20 / BUFFER PH 4.65 / Isoprene, stabilized / 2-Methyl-1,3-butadien / nsc9237", - "synonymsKr": "이소프렌(2-메틸-1,3-부타디엔) / 펜탄디엔 / 2-메틸-1,3-부타디엔 / 이소프렌 / 이소프렌(2-메틸-1,3-부타디엔) / 아이소프렌(2-메틸-1,3-부타디엔) / 아이소프렌 / 1,3-부타디엔, 2-메틸-", "unNumber": "1218", "casNumber": "78-79-5", - "transportMethod": "", - "sebc": "", - "usage": "합성고무, 타이어 제조", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", + "usage": "합성 고무, 타이어, 점도증진제, 에센셜 오일 등 사용", + "state": "액체", + "color": "무색", + "odor": "석유 냄새", + "flashPoint": "-54℃ 가열시 분해하여", + "autoIgnition": "39513", + "boilingPoint": "34℃", + "density": "0.68(물=1)", + "solubility": "642ppm @ 25℃", + "vaporPressure": "550mmHg@25℃", + "vaporDensity": "2.35(공기=1)", + "explosionRange": "1.5 ~ 8.9%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 1, + "fire": 4, + "reactivity": 2, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "130", + "idlh": "0 분", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발 (E)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "고인화성, 발암 의심, 호흡기/피부/안구 자극, 중합성", + "firstAid": "흡입노출 • 즉시 오염 지역을 벗어나, 신선한 공기를 깊게 호흡하게 할 것 물칠톡성 I 인체 유해성 화재 침강 용해 증발 증기밀도 (위험성) (물=1) (물) (물증기압) (공기=1) 0 乂 O O .누므 (높옴) (낮음) (높음) “러 인화점 18.33 仁 발화점 39513 끓는점 34仁 수용해도 642ppm @ 25仁 상온상태 액체 색상 무색 냄새 석유 냄새 비중 0.68(물=1) 증기압 550mmHg@25t 휘발성 매우높음 점모 0.23cP@15t 증기밀도 2.35(공기=1) 급성독성 ™A(8 시간) 경구(LD50) 경피 (LD50) 홉입 (LC5O) 노출기준 _ STEL(15분) 치J 다O1오 2’0架— leomq/ 노출한게 애°없= 2.210 > ImL/kg '아》여' mg/kg IDLH(30 분 직접 위험농도 인바즈사 증기는 눈과 상부 호흡 기관의약한 자극 효과를 己己으‘나타냄 흐흡기관 자극을 유발할 수 있욤 흡입 고농축 용제 대기에 노출이 지속되었다면 혼수, 의식불명, 혼수상태 및 사망의 가능성이 있음 ⑴버 보통정의 자극성 있음, 액체의 지방질 또는 기륨에 ‘푸 혼합할 수 있어 피부 탈지를 일으킴 안구 직접적 눈 접촉은 결막홍조를 일으킬 수 있음", + "fireFighting": "내알코올 포말/분무주수/CO₂. 중합 반응 유의.", + "spillResponse": "점화원 제거. 주변 해상 통제.", "exposure": "", "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12, 15.13, 15.14, 15.17, 15.19.6, 16.6.1, 16.6.2", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "ibcMinRequirement": "15.12, 15.13, 15.14, 15.17,\n15.19.6, 16.6.1, 16.6.2", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "IP", "name": "Isoprene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "IPM", + "name": "이소프렌", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "IPRE", + "name": "ISOPRENE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "IPRE", + "name": "Isoprene", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ISORENE", + "name": "Isorene", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 128, - "abbreviation": "NB-1", - "nameKr": "부텐1", + "id": 68, + "abbreviation": "BUTENE", + "nameKr": "부텐-1", "nameEn": "1-BUTENE", - "synonymsEn": "1-BUTENE / But-1-ene / Butene-1 / 1-C4H8 / 1-BUTYLENE / Ethylethylene / 1-BUTENE / N-BUTENE / -Butylene / n-Buten-1 / 1-N-BUTENE", - "synonymsKr": "1-부텐 / 1-부텐 / 1부텐", + "synonymsKr": "알파 부틸렌/1-부텐", + "synonymsEn": "1-BUTENE / But-1-ene / Butene-1 / 1-C4H8 / 1-BUTYLENE / Ethylethylene / 1-BUTENE / N-BUTENE / -Butylene / n-Buten-1 / 1-N-BUTENE / Alpha-butene / Butene-1 / Alpha-butylene / 1-Butylene / Ethylethylene / 1-butene, C4-H8, butylene, n-butene, n-butylene, normal-butene", "unNumber": "1012", "casNumber": "106-98-9", - "transportMethod": "", - "sebc": "", + "transportMethod": "산적액화가스", + "sebc": "G (Gas)", "usage": "폴리에틸렌 등 원료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "기체", + "color": "무색", + "odor": "독특한 냄새", + "flashPoint": "-62℃", + "autoIgnition": "385℃", + "boilingPoint": "-6℃", + "density": "0.585", + "solubility": "0.221 (25℃)", + "vaporPressure": "(물 18.7mmHg)", + "vaporDensity": "1.95", + "explosionRange": "1.6~10%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "석유 및 석유대체연료사업법/석유가스", + "ergNumber": "115", + "idlh": "3O 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "1,600m", + "responseDistanceSpillDay": "100m", + "responseDistanceSpillNight": "800m", + "marineResponse": "증발 (E)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "고인화성, 가스(G), 해상수거 불가", + "firstAid": "흡입: 신선한 공기. 동상: 미온수로 해동. 긴급 의료조치.", + "fireFighting": "가스 차단 우선. 차단 불가 시 화재 유지. CO₂, 건조분말.", + "spillResponse": "점화원 제거. 통풍 확보. 증기운 형성 시 대피.", "exposure": "", - "regulation": "" + "regulation": "고압가스안전관리법" }, "ibcHazard": "", "ibcShipType": "", @@ -9153,65 +7861,71 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-D, S-U", + "emsFire": "F-D", + "emsSpill": "S-U", "emsFirstAid": "", "cargoCodes": [ { "code": "NB-1", "name": "1-BUTENE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BUTENE", + "name": "1-BUTENE", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 129, + "id": 69, "abbreviation": "BTX", "nameKr": "조경유", "nameEn": "BENZENE, TOLUENE, XYLENE 등 방향족 탄화수소 통칭", - "synonymsEn": "BENZENE, TOLUENE, XYLENE 등 방향족 탄화수소 통칭", "synonymsKr": "벤젠, 툴루엔, 자일렌 통칭", + "synonymsEn": "BENZENE, TOLUENE, XYLENE 등 방향족 탄화수소 통칭", "unNumber": "1202", - "casNumber": "8002-31-9", - "transportMethod": "", - "sebc": "", - "usage": "벤젠, 톨루엔, 자일렌 제조 플라스틱, 합성고무, 세제, 농약 원료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", + "casNumber": "71-43-2", + "transportMethod": "산적액체", + "sebc": "F (Floater)", + "usage": "벤젠, 톨루엔, 자일렌 제조 \n플라스틱, 합성고무, 세제, 농약 원료", + "state": "액체", + "color": "-", + "odor": "-", + "flashPoint": "<20℃", + "autoIgnition": ">200℃", "boilingPoint": "", - "density": "", - "solubility": "", + "density": "0.9", + "solubility": "불용", "vaporPressure": "", - "vaporDensity": "", + "vaporDensity": "2.5~15", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 3, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "유해액체물질 Y(벤젠, 를루엔, 자일렌)", + "ergNumber": "128", + "idlh": "3O 분)", + "aegl2": "2,000 mg/kg", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "최소반경 50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발 (E)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "인화성, 흡입 유해", + "firstAid": "흡입노출 • 즉시 신선한 공기가 있는 곳으로 이동 피부접촉 • 즉시 오염된 모든 의복 탈의 비누와 물로 충분히 씻어내야 함 안구접촉 • 최소 15분 동안 물로 충분히 씻어내고 의사 치료 경구섭취 • 물로 구강을 씻어내고 의사 치료 초동 대응방법 대응장비 보호복 호흡구 3,4형식(C귭) 방독마스크(반면,전면) 1형식 (1B) 공기호흡기 보안경 보호장갑 기타장비 O O 멸화상카메라 1 초가이격거리 (m) 50 방호거리 (m) 300 1 해상유출시 ►유출물질은 증발하므로 방제조치 불필요 ►유출물질은 발암성과 생식세포에 돌연변이를 일으킬 수 있는 위험한 물질이며, 고인화성으로 증기의 이동에 의한 폭발가능성이 높은 물질이므로. 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박 통제 (흡연, 불꽃, 스파크 등 모든 점화원 제거) ►출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용(사고선 근접 시 1B급 착용), 증기흡입과 피부와 눈에 접촉을 피할 것 1 화재 시대피거리(m) 800 1 + 화재 •폭발시 ► 유출물질윤 연소시 유독가스 방출, 풍상메 위치, 최소 이격거리 유지하고 내알콜포 이용 화재진압", + "fireFighting": "포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 오일펜스/흡착재 회수.", "exposure": "", "regulation": "" }, @@ -9221,67 +7935,67 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "BTX", "name": "BENZENE, TOLUENE, XYLENE 등 방향족 탄화수소 통칭", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 130, + "id": 70, "abbreviation": "HCI", "nameKr": "염산", "nameEn": "HYDROCHLORIC ACID", - "synonymsEn": "Hydrochloric acid / HCL / Hydrogen chloride / chlorane / Hydrochloric Acid, 6N Volumetric Solution / Itaconic / hydrogen chloride solution / Acide chlorhydrique / Hydrochloric Acid, 36.5-38.0% / Hydrocholoride / Hydrogenchlorid", - "synonymsKr": "0.1노르말(몰)염산 / 6노르말염산 / N/2-염산(0.5M) / N/20-염산(0.05M) / N/5-염산(0.2M) / N/50염산 / 염산 / 염산10% / 염산20% / 염산30% / 염산9% / 염산수용액(액체) / 염화수소 / 히드로클로르산0.05N / 염화수소산 / 수소염화물 / 무수염산 / 염산가스 / 무리아틱산 / 염화수소", + "synonymsKr": "염소산, 염산, 염화수소산, 하이드로젠클로라이 드, 히드로클로르산", + "synonymsEn": "Hydrochloric acid / HCL / Hydrogen chloride / chlorane / Hydrochloric Acid, 6N Volumetric Solution / Itaconic / hydrogen chloride solution / Acide chlorhydrique / Hydrochloric Acid, 36.5-38.0% / Hydrocholoride / Hydrogenchlorid / USEPA / OPP Pesticide code: 45901 / Acide chlorhydrique(FRENCH) / Acido clorhidrico(Spanish) / Acido cloridrico(ITALIAN) / Aqueous hydrogen chloride / Caswell No 486 / Chloorwaterstof(DUTCH) / Chlorohydric acid / Chlorowodor(POLISH) / Chlorure d'hydrogene anhydre(French) / Chlorure d'hydrogene(French) / Chloruro de hidrogeno(Spanish) / Chlorwasserstoff(GERMAN) / Cloruro de hidrogeno anhidro(Spanish) / EPA Pesticide chemical code 045901 / Hydrochloride / Hydrogen chloride(HCL) / Muriatic acid / Hydrochloric acid / Hydrochloric acid, anhydrous / Hydrogen chloride, refrigerated liquid / Spirits of salt", "unNumber": "1789", "casNumber": "7647-01-0", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(8급), 산적액체(Z류)", + "sebc": "D (Dissolver)", "usage": "PH조절, 중화 및 화학물질 합성, 금속 표면 처리, 폐수 처리 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", + "state": "액체", + "color": "무색투명", + "odor": "자극적", + "flashPoint": "비가연성", + "autoIgnition": "비가연성", + "boilingPoint": "61~71으", + "density": "1.172", + "solubility": "용해", + "vaporPressure": "(물 17.5mmHg)", + "vaporDensity": "1.267", "explosionRange": "", "nfpa": { - "health": 0, + "health": 3, "fire": 0, - "reactivity": 0, + "reactivity": 1, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "유해액체물질/z", + "ergNumber": "157", + "idlh": "50 ppm", + "aegl2": "22 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "독성, 부식성, 피부/안구 심각한 손상, 연소 시 독성 가스 발생", + "firstAid": "흡입: 호흡곤란, 폐부종, 기침 → 의료조치, 산소공급. 피부: 심한 화상, 피부 자극 → 다량의 물과 비누로 세척. 안구: 심한 자극, 화상, 실명 → 다량의 물로 세척. 경구: 화상, 구토, 설사, 정신혼란 → 의료조치, 생수식염수로 세척, 구토유발 금지.", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수.", + "spillResponse": "다량 물로 희석. 주변 통제. 증기운 이동 억제.", + "exposure": "TWA 1 ppm, STEL 2 ppm, AEGL-2 22 ppm, IDLH 50 ppm", + "regulation": "유해화학물질관리법" }, "ibcHazard": "", "ibcShipType": "", @@ -9289,67 +8003,79 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-B", + "emsFire": "F-A", + "emsSpill": "S-B", "emsFirstAid": "", "cargoCodes": [ { "code": "HCI", "name": "HYDROCHLORIC ACID", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HCA", + "name": "HYDROCHLORIC ACID", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HCA", + "name": "Hydrochloric acid", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 131, + "id": 71, "abbreviation": "CREOSOTE", "nameKr": "크레오소트", "nameEn": "CRESOSTE", - "synonymsEn": "CREOSOTE / taroil / awpa#1 / heavyoil / CREOSATE / brickoil / creosotum / creosotep1 / creosoteoil / CARBOLINEUM / sakresote100", - "synonymsKr": "크레오소트유 / 콜타르크레오소트 / 크레오소트유 / 벤조(a)피렌(benzo(a)pyrene)0.005%를초과하여함유하고있는크레오소트 / 석탄 타르 크레오소트", + "synonymsKr": "Creosote, BRICK OIL", + "synonymsEn": "CREOSOTE / taroil / awpa#1 / heavyoil / CREOSATE / brickoil / creosotum / creosotep1 / creosoteoil / CARBOLINEUM / sakresote100 / CREOSOTE, COAL TAR / AWPA #1 / Brick oil / Caswell No. 225 / Coal tar oil / Creosote / Creosote oil / Creosote P1 / Creosotum / Cresylic creosote / Dead oil / USEPA / OPP Pesticide Code: 025004 / Heavy oil / Liquid pitch oil / Naphthalene oil / Original carbolineum / Osmoplastic-D / Preserv-o-sote / Sakresote 100 / Smoplastic-F / Tar oil / Wash oil / Coke creosote / Tar oil cresote / Anthracene oil / Coal tar creosote / Creosote AS 1143 Type 1 / Brick oil", "unNumber": "1136", "casNumber": "8001-58-9", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(3급), 산적액체(X류)", + "sebc": "F (Floater)", "usage": "카본블랙, 방부제 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "state": "액체", + "color": "무색~노란색", + "odor": "타르냄새", + "flashPoint": "74’C", + "autoIgnition": "336℃", + "boilingPoint": "203~210℃", + "density": "1.05~1.1", + "solubility": "불용", + "vaporPressure": "45mHg(20t)", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, + "health": 3, "fire": 0, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/X", + "ergNumber": "128", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "침강 (S)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "발암성(PAH), 피부 자극/감작성, 호흡기 자극", + "firstAid": "흡입노출 • 즉시 오염지역을 벗어나, 신선한 공기률 깊게 호흡하게 할 것 피부접촉 O —1T 뒤 • 오염된 옷을 제거하고 격리하는 동안, 다량의 물로 노출된 피부를 씻어낼 것 o'甘조지 안구접족 • 오염된 옷올 제거하고 격리하는 동안, 다량의 물로 노출된 피부를 씻어낼 것 경구섭취 • 환자가 의식이 있으면서 경련하지 않으면, 물 1~2잔울 섭취. 긴급 의료조치 초등대응방법 보호복 호홉구 보안경 보호장갑 기타장비 대응장비 3,4형식(C급) 방독마스크(반면,전면) ’ O O 멸화상카메라 1형식 (1B) 공기호흡기 으 이 널화샹카네닥 1 초기 이격거리 (m) 50 방호거리 (m) 300 1 해상유출시 ►유출물질은 호입하면 유해한 물질이고, 인화성 액제로 화재 위험성이 있으므로모든 출동세력 풍상에 위치. 최소 50m 이격거리 유지하고 주변선박 통제에 집중(흡연, 불꽃, 스파크, 화염 제거) ► 해상 유입시 침강하므로, 방제조치는 불필요 ► 독성물질로 민감 해역에 지대한 영향을 미칠 우려가 있음 ► 지속적인 모니터링을 통해 이동 및 존재여부 확인 1 화재 사대피거리(m) 800 1 > 유출물질은 연소시 유독가스 방출, 풍상에 위", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 내알코올 포말.", + "spillResponse": "오일펜스/흡착재 회수.", "exposure": "", - "regulation": "" + "regulation": "CAS 8001-58-9" }, "ibcHazard": "", "ibcShipType": "", @@ -9357,135 +8083,67 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { "code": "CREOSOTE", "name": "CRESOSTE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 132, - "abbreviation": "IPM", - "nameKr": "이소프렌", - "nameEn": "", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "78-79-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "IPM", - "name": "", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 133, + "id": 72, "abbreviation": "HRPG", "nameKr": "중질분해가솔린", "nameEn": "PYROLYSIS GASOLINE", - "synonymsEn": "PYROLYSIS GASOLINE", "synonymsKr": "열분해 가솔린", + "synonymsEn": "PYROLYSIS GASOLINE", "unNumber": "1203", "casNumber": "64741-54-5", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "FE (Float-Evaporator)", "usage": "방향족 공장 연료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", + "state": "액체", + "color": "연황색", + "odor": "방향성", + "flashPoint": "-27~-11℃", + "autoIgnition": "463~520℃", "boilingPoint": "", - "density": "", - "solubility": "", + "density": "0.79~0.91", + "solubility": "불용", "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "vaporDensity": "2.8~3.8", + "explosionRange": "0.9~7.7%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 3, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "고인화성, 부유증발(FE), 혼합물(벤젠/톨루엔 등)", + "ergNumber": "128", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "반경 800m 이상", + "responseDistanceSpillDay": "반경 50m 이상", + "responseDistanceSpillNight": "중 300m 이상", + "marineResponse": "해상부유, 증발", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "고인화성, 발암성, 흡인성 유해, 중추신경계", + "firstAid": "흡입: 두통, 몽롱함, 어지러움, 메스꺼움 → 신선한 공기, 산소공급, 인공호흡. 피부: 피부염, 발진, 건조, 갈라짐 → 15분 이상 비누와 물로 씻을 것. 안구: 피부자극, 통증 → 눈을 문지르지 말 것, 흐르는 물로 15분 이상 씻을 것. 경구: 발기부전, 소화기장애, 신장출혈 → 즉시 물로 입을 씻어낼 것.", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 내알코올 포말.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 오일펜스/흡착재 회수.", "exposure": "", - "regulation": "" + "regulation": "CAS 68606-10-0" }, "ibcHazard": "", "ibcShipType": "", @@ -9493,133 +8151,65 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { "code": "HRPG", "name": "PYROLYSIS GASOLINE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 134, - "abbreviation": "BUTENE", - "nameKr": "부텐-1", - "nameEn": "1-BUTENE", - "synonymsEn": "1-BUTENE / But-1-ene / Butene-1 / 1-C4H8 / 1-BUTYLENE / Ethylethylene / 1-BUTENE / N-BUTENE / -Butylene / n-Buten-1 / 1-N-BUTENE", - "synonymsKr": "1-부텐 / 1-부텐 / 1부텐", - "unNumber": "1012", - "casNumber": "106-98-9", - "transportMethod": "", - "sebc": "", - "usage": "폴리에틸렌 등 원료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "BUTENE", - "name": "1-BUTENE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 135, - "abbreviation": "MD", - "nameKr": "메틸프로판디올", - "nameEn": "METHYLPROPANEDIOL", - "synonymsEn": "2-METHYL-1,3-PROPANEDIOL / METHYLPROPANEDIOL / 2-methylpropane-1,3-diol / 2-Methyl-1,3-propanediol (MPO) / MP Diol / MPDIOL(R) / MPDIOL MPD / MP diol glycol / MPDIOL(R) GLYCOL / β-Hydroxyisobutanol / 2-methyl-3-propanediol", - "synonymsKr": "2-메틸-1,3-프로판디올 / 2-메틸-1,3-프로판디올 / 메틸프로판다이올", - "unNumber": "", + "id": 73, + "abbreviation": "MPO", + "nameKr": "2-메틸-1,3-프로판디올", + "nameEn": "2-METHYL, 3-PROPANEDIOL", + "synonymsKr": "2-메틸-1,3-프로판디올 / 메틸프로판다이올 / 2-메틸-1, 3-프로판디올 / 1,3-프로판다이올, 2-메틸", + "synonymsEn": "2-METHYL-1,3-PROPANEDIOL / METHYLPROPANEDIOL / 2-methylpropane-1,3-diol / 2-Methyl-1,3-propanediol (MPO) / MP Diol / MPDIOL(R) / MPDIOL MPD / MP diol glycol / MPDIOL(R) GLYCOL / β-Hydroxyisobutanol / 2-methyl-3-propanediol / 2-METHYL, 3-PROPANEDIOL / 1,3-Propanediol, 2-methyl / 1,3-propanediol, 2-methylhydroxyisobutanol, Arcrol Polyol DP 1022, C4-H10-O2, HOCH2CH(CH3)CH2OH, MPDiol glycol, methylpropanediol", + "unNumber": "-", "casNumber": "2163-42-0", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", + "transportMethod": "산적액체(Z류)", + "sebc": "D (Dissolver)", + "usage": "폴리우레탄, 코팅 및 잉크용 접착제 소프트 세그먼트\n중간체 사용", + "state": "액체", + "color": "연한 노란색", + "odor": "무취", + "flashPoint": "124℃", + "autoIgnition": "380。0℃", + "boilingPoint": "212℃", + "density": "1.01", + "solubility": ">100 g/L (20℃)", + "vaporPressure": "0.021 mmHg (25℃)", + "vaporDensity": "1 什甘;", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Z", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", + "responseDistanceFire": ";자료없음", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "용해(D), 해상수거 불가", + "firstAid": "흡입노출 • 신선한곳으로 이동, 의사진료 응급조치 피부접촉 안구접촉 • 즉시 물과 비누로 씻을 것 •흐르는물에 몇분동안씻을것 경구섭취 • 의人서진료", + "fireFighting": "복합가스탐지기 이용 농도 확인. 분무(안개) 또는 내알코올 포말 이용. 열화상카메라 운용. 안전 확보 후 예인선 등 동원 사고선 긴급예인 조치.", + "spillResponse": "주변 해상 통제. 위험하지 않다면 유출 차단. 해수에 유출시 해상수거 불가. 안전 확보 시까지 지속적 유출물질 농도 탐지 및 모니터링.", "exposure": "", "regulation": "" }, @@ -9629,202 +8219,226 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-A", + "emsFire": "F-A", + "emsSpill": "S-A", "emsFirstAid": "", "cargoCodes": [ { "code": "MD", "name": "METHYLPROPANEDIOL", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MPO", + "name": "2-METHYL, 3-PROPANEDIOL", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 136, + "id": 74, "abbreviation": "EA", "nameKr": "아크릴산에틸", "nameEn": "ETHYL ACRYLATE", - "synonymsEn": "Ethyl acrylate / Ethy Acrylate / FEMA 2418 / Ethyl propenoate / ETHYL 2-PROPENOATE / ACRYLIC ACID ETHYL ESTER / Ethyl acrylate, stabilized / 2-988 / NCI-C50384 / carboset511 / Carboset 511", "synonymsKr": "아크릴산에틸 / 2-프로펜오익산,에틸에스테르 / 아크릴산,에틸에스테르 / 아크릴에스테르E / 아클릴릭애시드에틸에스테르 / 에톡시카르보닐에틸렌 / 에틸2-프로펜오에이트 / 에틸아크릴릭에스테르 / 에틸아크릴레이트 / 이틸아크릴레이트 / 아크릴산에틸에스테르 / 에틸아크릴산 / 에틸프로펜오에이트 / 에틸프로렌오에이트 / 에틸아크릴레이트 / 에틸 아크릴레이트 / 2-프로페노익산, 에틸 에스터 / 아크릴산 에틸 에스터 / 에틸 프로-2-에노에이트 / 에틸 프로페노에이트", - "unNumber": "1173", + "synonymsEn": "Ethyl acrylate / Ethy Acrylate / FEMA 2418 / Ethyl propenoate / ETHYL 2-PROPENOATE / ACRYLIC ACID ETHYL ESTER / Ethyl acrylate, stabilized / 2-988 / NCI-C50384 / carboset511 / Carboset 511", + "unNumber": "1917", "casNumber": "140-88-5", - "transportMethod": "", - "sebc": "", - "usage": "용매, 착향제, 디카페인 용매 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", + "usage": "유해액체물질/Z 투명의 매캐한 냄새가 나는 액체로서 플라스틱 제조, 페인트에 주로 사용됨. 고인화성 물질로 화재 위험성이 매우 높 으므로 점화원 제거와 선박 접근 시 주의가 요구되며, 해상유출 시에 증발. 용해되므로 방제조치는 불필요하나 증기 흡입 등 인체노출 시 알레르기 반응. 눈, 피부, 호흡기 자극 등 유해하므로 화학", + "state": "액체", + "color": "투명", + "odor": "38.6mmHg(25t)", + "flashPoint": "wt", + "autoIgnition": "355℃", + "boilingPoint": "99.4℃", + "density": "0.92", + "solubility": "15g/L(25“C)", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "1℃", + "explosionRange": "1.4~14%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 3, + "fire": 4, + "reactivity": 2, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "유해액체물질/Z", + "ergNumber": "129P", + "idlh": "0 분)", + "aegl2": "80 mg/kg", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "증발용해 (ED)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "인화성, 호흡기/피부/안구 자극, 중합성, 감작성", + "firstAid": "흡입노출 - 의료초치, 신선한 곳으로 이동, 산소공급. 인공호흡 피부접촉 • 긴급 의료조치. 비누와 물로 씻을 것, 화상의 경우 다량의 찬물로 씻을 것 안구접촉 • 몇 분간 물로 조심해서 씻어낼 것. 콘택트렌즈를 제거할 것 경구섭취 - 입을 씻어낼 것, 즉시 의료조치 초동 대응방법 대응장비 보호복 호홈구 3,4형식 (C급) 방독마스크(반면,전면) 1형식(1B) 공기호홈기 보안경 보호장갑 O O 기타장비 열화상카메라 1 초기 이격거리(m) 50 방호거리 (m) 50 1 해상유출시 ► 유출물질은 고인화성 물질로 증기의 이동에 의한 폭발가능성이 높으며, 눈. 피부, 호흡기를 자극할 수 있고 증기흡 입 시 유해하므로 모든 출동세력 풍상에 위치, 촤소 50m 이격거리 유지. 주변선박 통제 (홉연, 불꽃. 스파크 등 모든 점화원 제거) > 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3,4형식 보호의 착용(사고선 근접 시 1B이상 착용), 증기홉입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 증발, 용해되므로 방제조치 불필요 > 화학방제함 유출물질 농도 탐지. 안전확보 시까지 지속적인 모니터링 1 화재 시대피거리(m) 800 1 + >", + "fireFighting": "내알코올 포말/분무주수/CO₂. 중합 반응 유의.", + "spillResponse": "점화원 제거. 오일펜스/흡착재 회수.", "exposure": "", - "regulation": "" + "regulation": "CAS 140-88-5" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12, 15.13, 15.17 , 15.19, 16.6.1, 16.6.2", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "ibcMinRequirement": "15.12, 15.13, 15.17 , 15.19,\n16.6.1, 16.6.2", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "EA", "name": "ETHYL ACRYLATE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EACR", + "name": "Ethyl acrylate", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 137, - "abbreviation": "EAC", - "nameKr": "아틸아세테이트", - "nameEn": "Ethyl acetate", - "synonymsEn": "Ethyl acetate / EtOAc / ETOH / ALCOHOL / yisuanyizhi / ETHYL ETHANOATE / ACETIC ACID ETHYL ESTER / ETHANOL ABSOLUTE / METHYLATED SPIRIT / CH3COOC2H5 / ACETIC ETHER", + "id": 75, + "abbreviation": "MACE", + "nameKr": "메틸 아세테이트", + "nameEn": "METHYL ACETATE", "synonymsKr": "아세트산에틸 / 메틸아세틸에스테르 / 비네가나프타 / 아세톡시에탄 / 아세트에테르 / 아세트에스테르 / 아세트산에틸에스테르 / 아세티딘 / 에틸에탄오에이트 / 에틸아세트산 / 초산에틸 / 초산에틸,무수물 / 초산에틸에스테르 / 무수에탄올 / 초산에틸 / 에틸아세테이트 / 아세테이트 에틸 / 아세트산 에틸", + "synonymsEn": "Ethyl acetate / EtOAc / ETOH / ALCOHOL / yisuanyizhi / ETHYL ETHANOATE / ACETIC ACID ETHYL ESTER / ETHANOL ABSOLUTE / METHYLATED SPIRIT / CH3COOC2H5 / ACETIC ETHER", "unNumber": "1173", "casNumber": "141-78-6", - "transportMethod": "", - "sebc": "", - "usage": "내일케어 제품, 페인트, 코팅, 접착제, 식품첨가물, 의약품, 향료 풍미 소재 제조", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Z류)", + "sebc": "ED (Evaporator-Dissolver)", + "usage": "휘발성 용매 사용\n접착제, 페인트, 매니큐어 리무버 등", + "state": "가연성 높은 액체", + "color": "무색,투명", + "odor": "독향", + "flashPoint": "-4℃", + "autoIgnition": "426.67℃", + "boilingPoint": "77。0℃", + "density": "0.9", + "solubility": "80.1g/L(25“C)", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "3.04", + "explosionRange": "2.2~11.5%", "nfpa": { - "health": 0, - "fire": 0, + "health": 3, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Z", + "ergNumber": "129", + "idlh": "2,000 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발용해 (ED)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "고인화성, 호흡기/피부/안구 자극", + "firstAid": "흡입노출 • 산소공급, 인공호흡. 긴급 의료조치 피부접촉 • 피부를 비누와 물로 씻을 것. 화상의 경우 다량의 찬물로 씻을 것 안구접촉 • 20분 이상 흐르는 물에 피부와 눈을 씻을 것 경구섭취 •긴급이료조치", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 내알코올 포말.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 증기운 이동 억제.", + "exposure": "TWA 400 ppm, IDLH 2,000 ppm", "regulation": "" }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcHazard": "P", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "F", - "ibcFireFighting": "ABC", + "ibcDetection": "R", + "ibcFireFighting": "AC", "ibcMinRequirement": "15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "EAC", "name": "Ethyl acetate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MACE", + "name": "METHYL ACETATE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EACE", + "name": "Ethyl acetate", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 138, + "id": 76, "abbreviation": "ETHANOL", "nameKr": "에틸알코올", "nameEn": "ETHYL ALCOHOL", + "synonymsKr": "에틸 알코올 / 무수 에탄올 / 알코올 / 무수 알코올", "synonymsEn": "Ethanol / Ethyl alcohol / C2H5OH / Absolute ethanol / Etanol / ALCOHOL DENAT. / Dehydrated Alcohol / Ethanol min. 99,9 % / 75% Ethanol / ETHANOL CONTROL-H / Denatured ethanol", - "synonymsKr": "/ 에틸알코올 / 그래인알코올 / 알그래인 / 알코올 / 에틸수산화물 / 에틸알코올,100% / 재이솔 / 95%합성(변성)에탄올 / 메틸카르비놀 / 무수에탄올 / 브롬페놀블루용액 / 안히드롤 / 알코올무수물 / 에타놀 / 에탄올 / 에탄올70%소독 / 에탄올70~75% / 에탄올Ethanol / 에탄올무수", - "unNumber": "1070", + "unNumber": "1170", "casNumber": "64-17-5", - "transportMethod": "", - "sebc": "", - "usage": "소독제, 용매, 연료 그리고 일부 약물 제조", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "합성고무, 페인트 인화성액체 (구분2) 발암성 (구분 1A) 특정표적장기독성(1 회노출) -구분3(호흡기계자극) 특정표적장기독성 (반복노출) 생식독성 (구분 1A) - 구분 1", + "state": "액체", + "color": "무색, 투명", + "odor": "와인 또는 위스키 냄새", + "flashPoint": "13℃", + "autoIgnition": "363℃", + "boilingPoint": "79℃", + "density": "0.79", + "solubility": "789 g/L (25℃)", + "vaporPressure": "(물 23.8imiHg)", + "vaporDensity": "1.59", + "explosionRange": "3.1~27.7%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Z", + "ergNumber": "127", + "idlh": "3,300 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "고인화성, 호흡기/피부/안구 자극, 중추신경계", + "firstAid": "흡입노출 • 즉시 의료조치, 산소공급, 인공호흡 피부접촉 • 피부를 비누와 물로 씻을 것, 화상의 경우 다량의 찬물로 씻을 것 안구접촉 - 몇 분간 물로 조심해서 씻을 것, 혼택트렌즈 제거 경구섭취 • 입올 씻어낼 것, 토하게 하지 말 것. 긴급 의료조치 1 초퉁대응방법 1 대응장비 보호복 호호구 보안경 보호장갑 기타장비 3,4형식(C급〉 방독마스크(반면.전면) „ 주 역하사카메란 1형식 (1B) 공기호홉기 O O 열화상카메라 1 초기 이격거리 (m) 50 방호거리 (m) 300 | 해상유출시 ►유출물질은 고인화성으로 증기의 이동에 의한 쪽발가능성이 높으며, 발암성물잘로 생식기능에 악영향과 유전적인 결함을 일으킬 수 있고 눈과 호홉기 자극 등 인체노출 시 매우 유해하므로, 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박 통제(흡연, 불꽃, 스파크 등 모든 점화원 제거) ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용(사고선 근접 시 1B급 착용), 증기흡입과 피부와 눈에 접촉을 피할 것(화상주의) ► 유출물질은 용해되므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 내알코올 포말.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 분무주수로 증기운 이동 억제.", + "exposure": "TWA 1,000 ppm, IDLH 3,300 ppm", "regulation": "" }, "ibcHazard": "", @@ -9833,186 +8447,136 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "ETHANOL", "name": "ETHYL ALCOHOL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 139, - "abbreviation": "ETOH", - "nameKr": "알코올", - "nameEn": "ETHYL ALCOHOL", - "synonymsEn": "Ethanol / Ethyl alcohol / C2H5OH / Absolute ethanol / Etanol / ALCOHOL DENAT. / Dehydrated Alcohol / Ethanol min. 99,9 % / 75% Ethanol / ETHANOL CONTROL-H / Denatured ethanol", - "synonymsKr": "/ 에틸알코올 / 그래인알코올 / 알그래인 / 알코올 / 에틸수산화물 / 에틸알코올,100% / 재이솔 / 95%합성(변성)에탄올 / 메틸카르비놀 / 무수에탄올 / 브롬페놀블루용액 / 안히드롤 / 알코올무수물 / 에타놀 / 에탄올 / 에탄올70%소독 / 에탄올70~75% / 에탄올Ethanol / 에탄올무수", - "unNumber": "1070", - "casNumber": "64-17-5", - "transportMethod": "", - "sebc": "", - "usage": "소독제, 용매, 연료 그리고 일부 약물 제조", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "ETOH", "name": "ETHYL ALCOHOL", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ETHA", + "name": "Ethyl alcohol", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 140, + "id": 77, "abbreviation": "EB", "nameKr": "에틸벤젠", "nameEn": "ETHYL BENZENE", - "synonymsEn": "Ethylbenzene / ET2O / EB / ETHOXYETHANE / Benzene, ethyl- / PHENYLETHANE / DIETHYL OXIDE / ethylenzene / Ethylbenzol / ETHYL OXIDE / Etilbenzene", - "synonymsKr": "에틸벤젠 / 에틸번젠", + "synonymsKr": "에틸벤졸/페닐에테인", + "synonymsEn": "Ethylbenzene / ET2O / EB / ETHOXYETHANE / Benzene, ethyl- / PHENYLETHANE / DIETHYL OXIDE / ethylenzene / Ethylbenzol / ETHYL OXIDE / Etilbenzene / Aethylbenzol (German) / Benzene, ethyl- / EB / Ethylbenzeen (Dutch) / Ethylbenzol / Etilbenzene (Italian) / Etylobenzen (Polish) / NCI-C56393 / Phenylethane", "unNumber": "1175", "casNumber": "100-41-4", - "transportMethod": "", - "sebc": "", - "usage": "스티렌 생산의 중간물질로 사용 가솔린의 안티 노킹제, 고무 접착제, 페인트, 잉크 용제 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "FE (Float-Evaporator)", + "usage": "1175 CbHr 산화방지제, 자동차 맟 항공연료의 성분 S류 위험 인화성 액체(구분2) 흡인 유해성(구분1) 급성독성-흡입증기 (구분4) 피부부식성/자극성(구분2) 발암성(구분2) 표적특정장기 독성(1회노출) -구분3(호흡기계 자극〉 표적특정장기 독성(반복노출) - 구분1", + "state": "액체", + "color": "무색, 투명", + "odor": "가솔린", + "flashPoint": "list:", + "autoIgnition": "432.3℃", + "boilingPoint": "136℃", + "density": "0.87", + "solubility": "0.17 g/L (25℃)", + "vaporPressure": "(물 23.8inmHg)", + "vaporDensity": "3.66", + "explosionRange": "1~6.7%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질 / Y 국가긴급방제계횤 포함 위험 • 유해물질", + "ergNumber": "130", + "idlh": "800 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유증발 (FE)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성, 중추신경계, 발암 의심, 피부/호흡기 자극", + "firstAid": "흡입노출 • 토하게 하지 말 것, 산소공급, 인공호흡, 의료조치 O3L3C 누 1 피부접촉 • 피무를 비누와 물로 씻을 것, 화상의 경우 다량의 찬물로 씻을 것 소지 안구접촉 • 20분 이상 흐르는 물에 피부와 눈을 씻어낼 것 경구섭취 • 토하게 하지 말 것, 긴급 의료조치", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제. 분무주수로 증기운 이동 억제.", + "exposure": "TWA 20 ppm, STEL 125 ppm, IDLH 800 ppm", "regulation": "" }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "ibcHazard": "S/P", + "ibcShipType": "2", + "ibcTankType": "2G", + "ibcDetection": "C", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19.6", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "EB", "name": "ETHYL BENZENE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EBZN", + "name": "Ethyl benzene", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 141, + "id": 78, "abbreviation": "EBO", "nameKr": "에틸렌다이올레아마이드", "nameEn": "ETHYLENE DIOLEAMIDE", - "synonymsEn": "N,N'-ETHYLENEBISOLEAMIDE / EBO / BSO / n,n’-ethane-1, / Glycolube(R) VL / Ethylenebisoleamide / ETHYLENE DIOLEAMIDE / N,N'-ETHYLENEBISOLEAMIDE / 9-Octadecenamide, N,N'Ethylene Bis Oleamide(EBO) / N,N'-Ethylenebisoleic amide", "synonymsKr": "에틸렌다이올레아마이드 / N,N'-에틸렌비솔아미드", + "synonymsEn": "N,N'-ETHYLENEBISOLEAMIDE / EBO / BSO / n,n’-ethane-1, / Glycolube(R) VL / Ethylenebisoleamide / ETHYLENE DIOLEAMIDE / N,N'-ETHYLENEBISOLEAMIDE / 9-Octadecenamide, N,N'Ethylene Bis Oleamide(EBO) / N,N'-Ethylenebisoleic amide", "unNumber": "-", "casNumber": "110-31-6", - "transportMethod": "", - "sebc": "", - "usage": "폴리올레핀 필름 생산 시 미 끄럼제 및 윤활제 고무 및 플라스틱 등 다양한 재료의 성형 시 이형제 로 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "transportMethod": "산적액체", + "sebc": "F (Floater)", + "usage": "폴리올레핀 필름 생산 시 미 끄럼제 및 윤활제\n고무 및 플라스틱 등 다양한 재료의 성형 시 이형제\n로 사용", + "state": "고체/점성있는 액체", + "color": "연황색", + "odor": "약한 냄새", + "flashPoint": ">200℃", "autoIgnition": "", "boilingPoint": "", - "density": "", - "solubility": "", + "density": "0.92", + "solubility": "불용", "vaporPressure": "", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해오염물질", "ergNumber": "", "idlh": "", "aegl2": "", @@ -10020,16 +8584,16 @@ "responseDistanceFire": "", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "해상부유, 흡착재 회수", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "경미한 피부/안구 자극", + "firstAid": "흡입: 신선한 공기. 피부/안구: 물 세척. 경구: 의료조치.", + "fireFighting": "분무주수/포말/CO₂.", + "spillResponse": "흡착재 회수.", "exposure": "", - "regulation": "" + "regulation": "CAS 110-31-6 (N,N'-1,2-Ethanediylbis-9-octadecenamide)" }, "ibcHazard": "", "ibcShipType": "", @@ -10037,335 +8601,291 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "EBO", "name": "ETHYLENE DIOLEAMIDE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 142, + "id": 79, "abbreviation": "ECH", "nameKr": "에피클로로하이드린", "nameEn": "EPICHLOROHYDRIN", - "synonymsEn": "Epichlorohydrin / ECH / 2-(Chloromethyl)oxirane / EPICHLOROHYDRINE / EPICHLORHYDRIN / 1-CHLORO-2,3-EPOXYPROPANE / Epichlorhydrine / ALPHA-EPICHLOROHYDRIN / New product 99.9% purity CAS 106-89-8 Epichlorohydrin CAS NO.106-89-8 Manufacturers wholesale / Epicloridrina / J006", - "synonymsKr": "(클로로메틸)에틸렌산화물 / 에피클로로하이드린 / 에피클로로히드린 / 에피클로로히드린(ECH) / 1-클로로-2,3-에폭시프로판 / 3-클로로프로필렌산화물 / 감마-클로로프로필렌산화물 / 글리세롤에피클로로히드린 / 클로로메틸옥시란", - "unNumber": "2033", + "synonymsKr": "1-클로로-2,3-에폭시프로판 / 클로로메틸옥사이드 / 클리사이딜 클로라이드", + "synonymsEn": "Epichlorohydrin / ECH / 2-(Chloromethyl)oxirane / EPICHLOROHYDRINE / EPICHLORHYDRIN / 1-CHLORO-2,3-EPOXYPROPANE / Epichlorhydrine / ALPHA-EPICHLOROHYDRIN / New product 99.9% purity CAS 106-89-8 Epichlorohydrin CAS NO.106-89-8 Manufacturers wholesale / Epicloridrina / J006 / 1-CHLOOR-2,3-EPOXY-PROPAAN (DUTCH) / 1-CHLOR-2,3-EPOXY-PROPAN (GERMAN) / 1-CHLORO-2,3-EPOXYPROPANE / 3-CHLORO-1,2-EPOXYPROPANE / (CHLOROMETHYL)ETHYLENE OXIDE / CHLOROMETHYLOXIRANE / 2-(CHLOROMETHYL)OXIRANE / CHLOROPROPYLENE OXIDE / GAMMA-CHLOROPROPYLENE OXIDE / 3-CHLORO-1,2-PROPYLENE OXIDE / 1-CLORO-2,3-EPOSSIPROPANO (ITALIAN) / ECH / EPICHLOORHYDRINE (DUTCH) / EPICHLORHYDRIN / EPICHLORHYDRINE (FRENCH) / ALPHA-EPICHLOROHYDRIN / (DL)-ALPHA-EPICHLOROHYDRIN / EPICHLOROHYDRIN (DOT) / EPICHLOROHYDRYNA (POLISH) / EPICHLOROPHYDRIN / EPICLORIDRINA (ITALIAN) / 1,2-EPOXY-3-CHLOROPROPANE / 2,3-EPOXYPROPYL CHLORIDE / GLYCEROL EPICHLORHYDRIN / GLYCEROL EPICHLOROHYDRIN / GLYCIDYL CHLORIDE / NCI-C07001 / OXIRANE, (CHLOROMETHYL)- / OXIRANE, 2-(CHLOROMETHYL) / SKEKHG / Chloromethyloxirane / Gamma-chloropropylene oxide", + "unNumber": "2023", "casNumber": "106-89-8", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(6.1급), 산적액체(Y류)", + "sebc": "D (Dissolver)", "usage": "주로 에폭시 수지 제조 시 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "액체", + "color": "무색, 흰색", + "odor": "마늘 냄새", + "flashPoint": "3rc", + "autoIgnition": "311℃", + "boilingPoint": "116℃", + "density": "1.18", + "solubility": "65.9 g/L (25℃)", + "vaporPressure": "(물 17.5n까切)", + "vaporDensity": "3.3", + "explosionRange": "3.8~21%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 3, + "fire": 3, + "reactivity": 2, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질 / Y 국가긴급방제계횤 포함 위험 • 유해물질", + "ergNumber": "131", + "idlh": "75 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "발암성(Group2A), 독성, 호흡기/피부/안구 심각한 자극", + "firstAid": "흡입노출 - 즉시 의료조치 피부접촉 • 피부를 비누와 물로 씻을 것, 화상의 경우 다량의 찬물로 씻을 것 안구접촉 • 긴급 의료조치, 몇 분간 물로 조심해서 씻어낼 것, 콘택트렌즈를 제거할 것 경구섭취 • 구강대구강 인공호흡 하지 말 것, 입을 씻어내고 토하게 하지 말 것, 의료조치", + "fireFighting": "복합가스탐지기 이용 농도 확인(문자망 공유). 먼 곳에서 분무주수 또는 내알코올 포말 이용.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 분무주수로 증기운 이동 억제.", + "exposure": "TWA 0.5 ppm, IDLH 75 ppm", + "regulation": "유해화학물질관리법" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.17, 15.19", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "ECH", "name": "EPICHLOROHYDRIN", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EPCH", + "name": "EPICHLOROHYDRIN", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ELARD", + "name": "Edible lard", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EPCH", + "name": "Epichlorohydrin", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 143, + "id": 80, "abbreviation": "EDA", "nameKr": "에틸렌다이아민", "nameEn": "ETHYLENEDIAMINE", + "synonymsKr": "1,2-디아미노에탄 / 1,2-에탄다이야민 / 다이메틸렌다이마민 / EDA", "synonymsEn": "Ethylenediamine / EDA / ETHANE-1,2-DIAMINE / 1,2-DIAMINOETHANE / YEA / 1,2-ETHANEDIAMINE / Ethylendiamine / 1,2-Ethylenediamine / Diaminoethane / H2NCH2CH2NH2 / Ethyleendiamine", - "synonymsKr": "1,2-디아미노에탄 / 에틸렌다이아민 / 에틸렌디아민", "unNumber": "1604", "casNumber": "107-15-3", - "transportMethod": "", - "sebc": "", - "usage": "유기합성 원료, 섬유 처리제, EDTA 수지 등 제조원료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(8급), 산적액체(X류)", + "sebc": "D (Dissolver)", + "usage": "섬유처리제, 제초제, 곰팡이제거제 인화성 액체(구분3) 급성독성-경구(구분4) 피부과민성(구분1)", + "state": "액체", + "color": "무색, 밝은 노란색", + "odor": "암모니아", + "flashPoint": "3*", + "autoIgnition": "379.41:", + "boilingPoint": "117℃", + "density": "0.9", + "solubility": "1,000 g/L (잘 녹음)", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "2.07", + "explosionRange": "2.5~16.6%", "nfpa": { - "health": 0, - "fire": 0, + "health": 3, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "132", + "idlh": "1,000 ppm", + "aegl2": "9.7 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성, 부식성, 피부/안구 심각한 손상, 감작성", + "firstAid": "흡입노출 • 신선한 곳으로 이동, 즉시 의료조치 물질특성 인체 유해성 화재 침강 용해 증발 증기밀도 (위험성) (울=1) (물) (물중기압) (공기=1) ; ...... —- 0 乂 ^ O O 누 O (놆움) (높음) (낮음) ““ 인화점 38^ 발화점 379.4’C 끓는점 117‘C 수용해도 용해 상온상태 액체 색상 무색,밝은 노란색 냄새 암모니아, 비린내 비중 0.9 증기압 16mmHg(25t) 휘발성 낮음 점도 MAcPQOt) 증기밀도 2,07 급성독성 TWA(8 시간) ■⑴ 경구 (LD50) 경피 (LD50) 흡입 (LC50) 노출기준 매^ 서 . -, STEL(i5분) 자己f서O 866 560 헤/ 노출한게 ° mg/kg mg/kg 『쪘서간 빠:繼 싸卵드끼 일반증상 코,호흡기 자극,간,신장 손상 흐。, 자극, 알레르기 유발, 폐렴, 폐부종, 화상 터터 심장장애로 인한 심장마비 및 사망유발 피부 심각한 자극과 괴사유발, 화상, 염증, 홍조 안구 각막손상. 홍반, 통증, 최루성 물질 쳥구 구역질. 위장자극, 쇼크, 통증, 사망야기 함 피부접촉 • 긴급 의료조치, 물로 씻을 것, 화상의 경우 다량의 잔물로 씻을 것 안구접촉 • 긴급 의료조치, 몇 분간 물", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "다량 물로 희석. 점화원 제거. 주변 통제.", + "exposure": "TWA 10 ppm, AEGL-2 9.7 ppm, IDLH 1,000 ppm", "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.17, 15.19, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-C", + "emsFire": "F-E", + "emsSpill": "S-C", "emsFirstAid": "", "cargoCodes": [ { "code": "EDA", "name": "ETHYLENEDIAMINE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EDM", + "name": "Ethylene diamine", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 144, + "id": 81, "abbreviation": "ENB", "nameKr": "에틸리덴노르보넨", "nameEn": "ETHYLIDENE NORBORNENE", - "synonymsEn": "·Bicyclo(2.2.1)hept-2-ene, 5-ethylidene- ·5-Ethylidenebicyclo(2,2,1)hep-2-ene ·Ethylidenenorbornene ·2-Norbornene, 5-ethylidene- ·5-Ethylidenebicyclo(2.2.1)hept-2-ene ·5-Ethylidene-2-norbornene ·ENB", - "synonymsKr": "·바이사이클로(2.2.1)헵트-2-엔, 5-에틸리덴- ·5-에틸리덴바이사이클로(2,2,1)헵-2-엔 ·5-에틸리덴바이사이클로(2.2.1)헵트-2-엔 ·에틸리덴노보넨 ·2-노보넨, 5-에틸리덴- ·5-에틸리덴-2-노보넨", + "synonymsKr": "에틸리덴노보르닌 / 에틸리덴노르보넨 / 5-에틸리덴-2-노르본엔 / 에틸리덴노보르닌 / 5-에틸리덴-2노보넨 / 5-에틸리덴 비사이클로(2,2,1)헵트-2-엔, 에틸리덴 노보넨, 5-에틸리덴-노르본엔", + "synonymsEn": "5-ETHYLIDENE-2-NORBORNENE / enb / ETHYLIDENE NORBORNENE / 5-ETHYLENE-2-NORBORENE / ETHYLIDENE-2-NORBORNENE / 5-Ethylidene norbornene / 5-ethylidene-2-norbornen / 5-ETHYLIDENE-2-NORBORNENE / 5-Ethylidenenorborn-2-ene / 5-ethylidene-5-norbornene / Ethylidene Norbornene(ENB", "unNumber": "1993", "casNumber": "16219-75-3", - "transportMethod": "", - "sebc": "", - "usage": "EPDM 고무 제조 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", + "usage": "에틸렌-프로필렌 플리머의 모노머", + "state": "액체", + "color": "무색", + "odor": "수지 냄새", + "flashPoint": "32℃", "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "boilingPoint": "146℃", + "density": "0.9", + "solubility": "0.077 g/L (25℃)", + "vaporPressure": "(물 17.5inniHg)", + "vaporDensity": "4.1", + "explosionRange": "0.9~6.4%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 3, + "fire": 3, + "reactivity": 1, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "128", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "부유 •증발 (FE)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "인화성, 호흡기/피부 자극, 중합성", + "firstAid": "흡입노출 • 긴급 의료조치, 산소공급, 인공호흡 응급초치 피부접촉 • 화상의 경우 차가운 물로 씻을 것, 비누와 물로 씻을 것 안구접촉 • 긴급 의료조치, 20분 이상 흐르는 물에 씻을 것 경구섭취 •긴급 의료조치 초똥대응방법 보호복 호흡구 보안경 보호장갑 기타장비 대옹장비 3.4형식 (C급) 방독마스크(반면,전면) 즈 心 1형식 (1B) 공기호흡기 이 열화상카메라 1 초기 이격거리 (m) 50 방호거라 (m) 300 1 해상유출시 ►유출물질은 증기흡입 시 유해하고 피부 과민반응, 호홉기 자극과 알레르기 반응올 일으킬 수 있음. 인화성물질로 화재위험성이 있으므로 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박 통제 (흡연, 불꽃, 스파크 등 모든 점화원 제거) ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용(사고선 근접 시 1B급 착용), 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 부유하면서 증발하므로 방제조치 불필요 (단. 해상부유 시 오일펜스 설치 확산방지, 유흡착재 이용 홉착회수) ► 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 1 화재사대피", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 오일펜스/흡착재 회수.", "exposure": "", "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "R", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "ENB", "name": "ETHYLIDENE NORBORNENE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 145, - "abbreviation": "EPCH", - "nameKr": "에틸렌산화물", - "nameEn": "EPICHLOROHYDRIN", - "synonymsEn": "Epichlorohydrin / ECH / 2-(Chloromethyl)oxirane / EPICHLOROHYDRINE / EPICHLORHYDRIN / 1-CHLORO-2,3-EPOXYPROPANE / Epichlorhydrine / ALPHA-EPICHLOROHYDRIN / New product 99.9% purity CAS 106-89-8 Epichlorohydrin CAS NO.106-89-8 Manufacturers wholesale / Epicloridrina / J006", - "synonymsKr": "(클로로메틸)에틸렌산화물 / 에피클로로하이드린 / 에피클로로히드린 / 에피클로로히드린(ECH) / 1-클로로-2,3-에폭시프로판 / 3-클로로프로필렌산화물 / 감마-클로로프로필렌산화물 / 글리세롤에피클로로히드린 / 클로로메틸옥시란", - "unNumber": "2033", - "casNumber": "106-89-8", - "transportMethod": "", - "sebc": "", - "usage": "주로 에폭시 수지 제조 시 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "FT", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12, 15.17, 15.19", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EPCH", - "name": "EPICHLOROHYDRIN", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 146, - "abbreviation": "EXXSOL D80", - "nameKr": "에틸렌 유도 용매 (엑손모빌 제조)", - "nameEn": "JP-TS AVIATION FUEL", - "synonymsEn": "·Kerosene (hydrotreated) distillates petroleum hydrotreated light petroleum distillates hydrotreated light Blend 3577 B 2183 Exxsol D40 Naphtha Heavy Aromatic Distillate (HAD) Asia Exxsol D80 Fluid Asia Isopar M Fluid D-80 petroleum hydrocarbon solvent Deobase Exsol (misspelling0) Exxsol D80 deodorised deodourized deodourised deodorized kerosine kerosene hydrotreated light petroleum distillate paraffin redistilled kerosene odourless kerosene", - "synonymsKr": "히드로처리된 경 증류 /수소처리된경질정제유(석유) / 히드로처리된경증류 / 수소처리된경질정제유(석유)(DISTILLATES(PETROLEUM),HYDROTREATEDLIGHT) / C11-15알케인/사이클로알케인 / C13-14아이소파라핀", - "unNumber": "-", + "id": 82, + "abbreviation": "SSD70", + "nameKr": "알리파틱 석유 솔벤트(파라핀과 나프텐 구성)", + "nameEn": "Shellsol D70", + "synonymsKr": "방향족 성분이 제거된 탄화수소 / 수소 처리된 등유 / 경질 정제 연료유", + "synonymsEn": "JP-TS AVIATION FUEL / D110 / Hydrotreated light distillate / 460 SOLVENT / Isopar G(B) Fluid / Distillates,petroleum / MineralSpiritsLowAromatic / Distillates(petroleum),hydrotreatedligh / Escaid / Conosol / ICP solvent", + "unNumber": "", "casNumber": "64742-47-8", "transportMethod": "", "sebc": "", - "usage": "세정제, 인쇄 용제, 페인트 용제, 표면 코팅 용제, 고무 용제, 화학용체 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "usage": "", + "state": "액체", + "color": "무색, 투명", + "odor": "' 순한석유냄새", + "flashPoint": ">75’C", + "autoIgnition": ">200℃", + "boilingPoint": "200-250’C", + "density": "0.798(15“C)", + "solubility": "거의 불용", + "vaporPressure": "0,17mmHg(20“C)", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "해양환경관리법/기름", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", + "responseDistanceFire": "800m", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", + "marineResponse": "부유 (F)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 신선한 곳으로 이동, 호흡이 멈춘 경우 구강대구강 인공호흡 피부접촉 • 물과 비누로 씻을 것 안구접촉 • 다량의 물로 씻을 것, 의료조치 경구섭취 • 토하게 하지 말 것, 긴급 의료조치 초동 대응방법 보호복 호흡구 보안경 보호장갑 : 기타장비 3.4형식 (C급) 방독마스크(반면,전면) O Q 열화상카메라 I 초기 이격거리(m) 자료없음 방호거리(m) .............. 자료없음 ► 유출물질은 섭취 또는 호흡기를 통해 흡입하면 차명적인 물질이므로, 모든 출동세력 풍상에 위지, 최소 이격거리 유지, 주변선박 통제 해상유출시 ►출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호이 착용, 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 부유하므로 방제조치 필요(오일펜스 설치 확산방지, 유흡착재 이용 흡착회수) ► 화학방제함 유출물질 농모 탐지, 안전확보 시까지 지속적인 모니터링 I 화재 시 대피거리(m) —— 666 ►유출물질은 연소시 유독가스 방출, 풍상에 위치, 최소 이격거리 유지하고 내알콜포 이용 화재진압 ► 열화상카메라 운용(결과전파), 소화포 이용 사고선 냉각조치 할 것 ►직수분", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -10385,55 +8905,85 @@ { "code": "EXXSOL D80", "name": "JP-TS AVIATION FUEL", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EXSD100", + "name": "EXXSOL D 100", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EXSD220", + "name": "EXXSOL D220/230", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EXSD80", + "name": "EXXSOL D80", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SSD70", + "name": "Shellsol D70", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SSE", + "name": "Shellsol E", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 147, + "id": 83, "abbreviation": "FCC", "nameKr": "정제된 슬러지유(FCC : FLUID CATALYTIC CRACKING / 정재방법 표기)", - "nameEn": "FCC Slurry oil (Decanted Oil)", - "synonymsEn": "·Cat cracked clarified oil -decanted oil ·Clarifid oils, petroleum, catalytic cracked ·Decanted oil, c20 ·Low sulfur fuel oil ·Clarified oils (petroleum), catalytic cracked ·Catalytic cracked clarified oil", - "synonymsKr": "·접촉분해된정제유 -디켄트 오일(decanted oil) ·디켄트 오일(decanted oil), C20 ·저유황유 ·접촉분해된(석유) 정제유 ·접촉분해된 정제유", + "nameEn": "FCC Slurry oil\n(Decanted Oil)", + "synonymsKr": "접촉분해된 정제유 (데칸트 오일) / 접촉분해된 정제유 / 접촉분해된정제유 / 접촉분해된정제유 / 석유정제오일 / 정제된 슬러리유", + "synonymsEn": "Clarified oils (petroleum), catalytic cracked / DECANT OIL / clarified slurry oil / clarified slurry oils / CATALYTICCRACKEDCLARIFIEDOIL / CATALYTICALLYCRACKEDCLARIFIEDOIL / Clarified oils (petroleum), catalytic cracked / Clarified oils (petroleum), catalytic cracked Heavy Fuel oil", "unNumber": "1268", "casNumber": "64741-62-4", "transportMethod": "", "sebc": "", - "usage": "휘발유, 경유, 디젤 등 가솔린, 항공유, 중유, 윤활유 아스팔트, 접촉분해장치 원료 등", - "state": "", - "color": "", - "odor": "", + "usage": "휘발유, 경유, 디젤 등 가솔린, 항공유, 중유, 윤활유\n아스팔트, 접촉분해장치 원료 등", + "state": "액체", + "color": "검은색", + "odor": "탄", "flashPoint": "", - "autoIgnition": "", + "autoIgnition": "자료없음", "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "density": "1.01-1.07(15℃)", + "solubility": "일반증", + "vaporPressure": ">3.75 mmHg", "vaporDensity": "", "explosionRange": "", "nfpa": { "health": 0, - "fire": 0, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "해양환경관리법(기름)", "ergNumber": "", - "idlh": "", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", + "responseDistanceFire": "자료없음", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", + "marineResponse": "부유 (F) 또는침강 (S)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 신선한 곳으로 옮김 피부접촉 • 다량의 물 또는 비누로 노출부위 씻을 것 안구접촉 • 몇 분간 물로 조심해서 씻을 것 경구셥취 • 구강대구강법으로 인공호흡 하지 말고, 적절한 호흡의료장비 이용 초통대응방법 보호복 호홉구 보안경 보호장갑 기타장비 3,4형식 (C급) 방독마스크(반면,전면) O Q 열화상카메라 I 초가이격거리 (m) 자료없음 방호거리 (m) 자료없음 ► 유출물질욘 암을 일으킬 수 있는 물질이므로 모든 출동세력 풍상에 위치, 최소 이격거리 유지. 주변선박 통제 ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3,4형식 보호의 착용, 증기흡입과 피부와 눈에 해상유츨시 접촉을 피할 것 ► 유출물잘은 비중범위가 녋으며. 해상부유 시 방제조치 필요 (오일펜스 설치 확산방지, 유겔화제. 유흡착재 등 이용 유출물질 화수 ► 화학방제함 유출물질 농도 탐지. 안전확보 시까지 지속적인 모니터링 화재 시 대피거리(m) 자료없음 + ►유출물질은 연소시 유독가스 방출, 풍상에 위치, 최소 이격거리 유지하고 내알콜포 이용 화재진압 화재•포발시 > 열화상카메라 운용(결과전파). 소화포 이용 사고선 냉각조치 할 것", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -10452,20 +9002,20 @@ "cargoCodes": [ { "code": "FCC", - "name": "FCC Slurry oil (Decanted Oil)", - "company": "", - "source": "화물적부도" + "name": "FCC Slurry oil\n(Decanted Oil)", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 148, + "id": 84, "abbreviation": "FFA", "nameKr": "프르프릴 알코올", "nameEn": "FURFURLY ALCOHOL", - "synonymsEn": "2-FURYLCARBINOL / 2-(HYDROXYMETHYL)FURAN / 2-FURANCARBINOL / 2-FURYLMETHANOL", "synonymsKr": "푸르푸릴알코올 / 2-푸릴메탄올 / 2-하이드록시메틸푸란 / 2-푸란카프비놀 / 2-푸란메탄올 / 푸르푸랄알코올 / 알파-푸릴키르비놀", + "synonymsEn": "2-FURYLCARBINOL / 2-(HYDROXYMETHYL)FURAN / 2-FURANCARBINOL / 2-FURYLMETHANOL", "unNumber": "2874", "casNumber": "98-00-0", "transportMethod": "", @@ -10521,24 +9071,30 @@ { "code": "FFA", "name": "FURFURLY ALCOHOL", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "FFA", + "name": "Furfuryl alcohol", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 149, - "abbreviation": "GASOIL", - "nameKr": "경유", - "nameEn": "MARINEDIESELFUEL", - "synonymsEn": "MARINEDIESELFUEL / MARINEDIESEL / SHALE-DERIVEDDIESELFUELMARINE / DIESELFUELMARINE / PETROLEUM-DERIVEDDIESELFUELMARINE / Diesel fuel No. 4 (Marine diesel) - Vapor & aerosol", - "synonymsKr": "경유", - "unNumber": "1202", + "id": 85, + "abbreviation": "MDO", + "nameKr": "선박용 경유", + "nameEn": "MARINE DISEL OIL", + "synonymsKr": "선박용 경유", + "synonymsEn": "MARINE DISEL OIL", + "unNumber": "3082", "casNumber": "77650-28-3", "transportMethod": "", "sebc": "", - "usage": "자동차, 선박 연료 등 사용", + "usage": "선박 연료유 사용", "state": "", "color": "", "odor": "", @@ -10589,42 +9145,54 @@ { "code": "GASOIL", "name": "MARINEDIESELFUEL", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "LSMGO", + "name": "LOW SULFUR MARINE GAS OIL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MDO", + "name": "MARINE DISEL OIL", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 150, - "abbreviation": "GLC", - "nameKr": "글리세린", - "nameEn": "GLYCERINE", + "id": 86, + "abbreviation": "GPA", + "nameKr": "글리세롤 폴리에툭실레이트", + "nameEn": "Glycerol polyalkoxylate", + "synonymsKr": "글리세린 / 글리세롤 / 글리세린 / 글리세린미스트 / 1,2,3-프로페인트라이올 / 글리롤 / 글리사닌 / 글리세리톨 / 글리세린 무수물 / 글리실 알코올 / 오스모글린 / 트라이하이드록시프로페인 / 프로페인트라이올 / 글리세라믹스-에올", "synonymsEn": "Glycerol / Glycerine / Glyceol / ifp / Glycerin USP / GLYCEROL ANHYDROUS / Propanetriol / propan-1,2,3-triol / 1,2,3-Propanetriol / Clycerol / Glycyl alcohol", - "synonymsKr": "글리세롤 / 글리세린 / 글리세린미스트 / 1,2,3-프로페인트라이올 / 글리롤 / 글리사닌 / 글리세리톨 / 글리세린 무수물 / 글리실 알코올 / 오스모글린 / 트라이하이드록시프로페인 / 프로페인트라이올 / 글리세라믹스-에올", - "unNumber": "1293", + "unNumber": "", "casNumber": "56-81-5", - "transportMethod": "", - "sebc": "", - "usage": "건조제, 보습제, 방부제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "산적액체(Z류)", + "sebc": "D (Dissolver)", + "usage": "", + "state": "액체", + "color": "무색", + "odor": "약한 단맛", + "flashPoint": "160℃", + "autoIgnition": "370℃", + "boilingPoint": "290℃", + "density": "1.26", + "solubility": "완전 혼화", + "vaporPressure": "0.0025 mmHg (25℃)", + "vaporDensity": "3.17", + "explosionRange": "2.6~11.3%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "용해(D)", "ergNumber": "", "idlh": "", "aegl2": "", @@ -10632,58 +9200,76 @@ "responseDistanceFire": "", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "해수에 용해, 회수 곤란", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "용해(D), 해상수거 불가", + "firstAid": "흡입: 신선한 공기. 피부/안구: 물로 세척. 경구: 의료조치.", + "fireFighting": "내알코올성 포말/분무주수/CO₂.", + "spillResponse": "주변 통제. 희석하여 처리.", + "exposure": "TWA 15 mg/㎥", "regulation": "" }, - "ibcHazard": "S", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "No", - "ibcFireFighting": "AC", - "ibcMinRequirement": "2016-02-09 00:00:00", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-A, S-A", + "emsFire": "F-A", + "emsSpill": "S-A", "emsFirstAid": "", "cargoCodes": [ { "code": "GLC", "name": "GLYCERINE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CGLN", + "name": "Crude glycerine", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "GLC", + "name": "Glycerine", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "GPA", + "name": "Glycerol polyalkoxylate", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 151, + "id": 87, "abbreviation": "GPA", "nameKr": "글리세롤 프로폭실레이트", "nameEn": "GLYCEROL POLYALKOXYLATE", + "synonymsKr": "글리세롤. 프로필렌 옥사이드, 에틸렌 옥사이드 폴리머", "synonymsEn": "GLYCEROL PROPOXYLATE-B-ETHOXYLATE / Glycerol,propyleneoxide,ethyleneoxidepolymer / PGP-2000 / CALTHANE NF) / polyglycol112-2 / polyglycol15-200 / Polyether polyol HSH-230 / GLYCEROL PROPOXYLATE-B-ETHOXYLATE / Glycerol ethoxylated propoxylated / glycerine, propoxylated ethoxylated / glycerol propoxylate-block-ethoxylate", - "synonymsKr": "칼탄 NF / 칼탄NF / 폴리에테르폴리올수지 / 폴리에테르폴리올수지 / 글리콜폴리프로필렌-B-에톡실레이트", "unNumber": "-", "casNumber": "9082-00-2", "transportMethod": "", "sebc": "", - "usage": "폴리우레탄 폼 제조, 발수제, 친수성 물질, 코팅제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "usage": "우레탄 중합물 제조 성분 험 해 류 위 유 분 자료없음 자료없음", + "state": "액체", + "color": "투명", + "odor": "달콤한 냄새", + "flashPoint": ">182℃", "autoIgnition": "", "boilingPoint": "", - "density": "", + "density": "1.018", "solubility": "", - "vaporPressure": "", + "vaporPressure": "(물 23.8mmHg)", "vaporDensity": "", "explosionRange": "", "nfpa": { @@ -10692,20 +9278,20 @@ "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Z", "ergNumber": "", - "idlh": "", + "idlh": "0 뷴)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", + "responseDistanceFire": "자료없음", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", + "marineResponse": "부유 (F)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 - 신선한 곳으로 이동, 의사진료 피부접촉 • 다량의물로 씻을 것 안구접촉 • 수분간 물로 철저히 씻을 것, 콘택트렌즈 제거, 의사진료 경구섭취 • 삼킨경우 의료조치", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -10725,20 +9311,20 @@ { "code": "GPA", "name": "GLYCEROL POLYALKOXYLATE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 152, + "id": 88, "abbreviation": "HBM", - "nameKr": "고비점 모노머 (총칭하는 산업적 용어)", + "nameKr": "고비점 모노머\n(총칭하는 산업적 용어)", "nameEn": "HIGH BOIL MONOMER", - "synonymsEn": "Distillates (petroleum), C3-6, piperylene-rich / Distillates (petroleum), C3-6, piperylene-rich / Distillates (petroleum), C3-6, piperylene-rich Petroleum gas [A complex combination of hydrocarbons from the distillation of saturated and unsaturated aliphatic hydrocarbons usually ranging in the carbon numbers C3 through C6. It consists of saturated", "synonymsKr": "고점비 모노머, 고비점 단량체", - "unNumber": "1232 2285", + "synonymsEn": "Distillates (petroleum), C3-6, piperylene-rich / Distillates (petroleum), C3-6, piperylene-rich / Distillates (petroleum), C3-6, piperylene-rich Petroleum gas [A complex combination of hydrocarbons from the distillation of saturated and unsaturated aliphatic hydrocarbons usually ranging in the carbon numbers C3 through C6. It consists of saturated", + "unNumber": "1232\n2285", "casNumber": "68477-35-0", "transportMethod": "", "sebc": "", @@ -10793,87 +9379,19 @@ { "code": "HBM", "name": "HIGH BOIL MONOMER", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 153, - "abbreviation": "HCA", - "nameKr": "염산", - "nameEn": "HYDROCHLORIC ACID", - "synonymsEn": "Hydrochloric acid / HCL / Hydrogen chloride / chlorane / Hydrochloric Acid, 6N Volumetric Solution / Itaconic / hydrogen chloride solution / Acide chlorhydrique / Hydrochloric Acid, 36.5-38.0% / Hydrocholoride / Hydrogenchlorid", - "synonymsKr": "0.1노르말(몰)염산 / 6노르말염산 / N/2-염산(0.5M) / N/20-염산(0.05M) / N/5-염산(0.2M) / N/50염산 / 염산 / 염산10% / 염산20% / 염산30% / 염산9% / 염산수용액(액체) / 염화수소 / 히드로클로르산0.05N / 염화수소산 / 수소염화물 / 무수염산 / 염산가스 / 무리아틱산 / 염화수소", - "unNumber": "1789", - "casNumber": "7647-01-0", - "transportMethod": "", - "sebc": "", - "usage": "PH조절, 중화 및 화학물질 합성, 금속 표면 처리, 폐수 처리 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "HCA", - "name": "HYDROCHLORIC ACID", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 154, + "id": 89, "abbreviation": "HISENE", - "nameKr": "하이신(등유계열) (한화토탈에너지스 제조)", + "nameKr": "하이신(등유계열)\n(한화토탈에너지스 제조)", "nameEn": "HI-SENE", - "synonymsEn": "BY-PRODUCT FUEL OIL / HIGH-SENE / HI-SENE OIL / BY-PRODUCT FUEL OIL", "synonymsKr": "등유", + "synonymsEn": "BY-PRODUCT FUEL OIL / HIGH-SENE / HI-SENE OIL / BY-PRODUCT FUEL OIL", "unNumber": "1201", "casNumber": "111-84-2", "transportMethod": "", @@ -10929,57 +9447,75 @@ { "code": "HISENE", "name": "HI-SENE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NALKN10", + "name": "n-Alkanes (C10+)", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NNNAN", + "name": "n-Nonane", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NNN", + "name": "n-Nonene", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 155, - "abbreviation": "HMD", - "nameKr": "핵사메틸렌 디아민", + "id": 90, + "abbreviation": "HMDA", + "nameKr": "헥사메틸렌 다이아민", "nameEn": "HEXAMETHYLENE DISMINE", + "synonymsKr": "알킬아민 / HMDA / 1,6-다이아미노-N-헥산 / 1,6-헥산다이아민 CAWS 124-09-4", "synonymsEn": "Hexamethylenediamine / HMDA / HEXAMETHYLENEDIAMINE / 1,6-HEXANEDIAMINE / 1,6-Hexamethylenediamine / Hexamethylendiamine / HEXANEDIAMINE / Hexylenediamine / 1,6-diamino-hexan / NCI-C61405 / H2N(CH2)6NH2", - "synonymsKr": "헥사메틸렌디아민 / 헥사메틸렌디아민 / 1,6-디아미노헥산 / 1,6-헥산디아민 / 헥사메틸렌디아민 / 1,6-헥산디아민 / 1,6-디아미노헥산 / 헥실렌디아민 / 헥사메틸렌 다이아민 / 1,6-다이아미노헥산 / 1,6-헥실렌다이아민 / HMD / HMDA / 알파-, 오메가-헥산다이아민 / 헥사메틸렌다이아민 / 헥실렌다이아민", "unNumber": "2280", "casNumber": "124-09-4", - "transportMethod": "", - "sebc": "", - "usage": "나일론 66과 플리머의 제조 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(8급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "나일론 제조 시 중간체 피부과민성(구분1) 특정표적장기 독성(반복노출) 생식독성(구분2) 구분1 물잘톡성", + "state": "1혋쬬", + "color": "무색,흰색", + "odor": "1,6-다이아민, 1,6-헥산디아민", + "flashPoint": "71.1℃", + "autoIgnition": "390-420℃", + "boilingPoint": "205℃", + "density": "0.93", + "solubility": "용해", + "vaporPressure": "0.26mrnHg(25t)", + "vaporDensity": "3.8", + "explosionRange": "0.9~7.6%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 2, + "fire": 2, + "reactivity": 1, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "153", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "25m", + "responseDistanceSpillNight": "25m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨 A)", + "ppeFar": "원거리(레벨 C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "부식성·인화성. 피부/호흡기 접촉 시 유독가스 발생. 해상 유출 시 용해(D)", + "firstAid": "흡입노출 • 즉시 의료조치 ________ 피부접촉 • 화상의 경우 찬물로 씻을 것. 긴급 의료조치, 물로 씻을 것 흐“조지 안구접촉 • 몇 분간물로 조심해서 씻을 것. 콘택트렌즈 제거 경구섭취 • 구강대구강법 인공호흡 하지 말 것, 토하게 하지 말 것, 입을 씻을 것 초동 배응방법 대응장비 보호복 호홉구 보안경 보호장갑 기타장비 3,4형식 (C급) 방독마스크(반면,전면) ① ① 옄화사카메라 1형식 (1B) 공기호홉기 아 아 =가베다 1 초기 이격거리(m) 25 방호거리(m) 25 | 해상유출시 ► 유출물질은 금속을 부식시킬 수 있는 물질로서 반복노출 시 중대한 독성을 일으킬 수 있고 피부화상과 심한 눈 손상, 생식기능에 악영향을 끼칠 수 있는 물질이므로 모든 출동세력 풍상에 위치. 최소 25m 이격거리 유지. 주변선박 통제 (흡연, 불꽃. 스파크 등 모든 점화원 제거) ► 출동 경비정(방제정) 최소 전면형 복합가스용 방독마스크를 포함한 3.4형식 보호복 착용(사고선 근접시 1B 착용), 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 용해되므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지, 안전확보 시까지", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무(안개)주수·내알콜포말 사용, 직사주수 금지. 화재진압 후에도 사고선 냉각 조치", + "spillResponse": "모든 점화원(불꽃, 불씨, 스파크) 제거하고 주변 해상 통제. 소화포 이용 분무주수로 증기 억제. 해수 유출 시 용해(D)되어 해상수거 불가. 안전 확보 시까지 지속 모니터링", "exposure": "", "regulation": "" }, @@ -10989,66 +9525,78 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-B", + "emsFire": "F-A", + "emsSpill": "S-B", "emsFirstAid": "", "cargoCodes": [ { "code": "HMD", "name": "HEXAMETHYLENE DISMINE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HMDA", + "name": "HEXAMETHYLENE DISMINE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HMD", + "name": "HEXAMETHYLENE DISMINE", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 156, + "id": 91, "abbreviation": "HMDI", "nameKr": "헥사메틸렌 디이소시안산", "nameEn": "Hexamethylene Diisocyanate", - "synonymsEn": "Hexamethylene Diisocyanate / HMDI / 1,6-Diisocyanatohexane / 1,6-HEXAMETHYLENE DIISOCYANATE / Hexane, 1,6-diisocyanato- / Hexamethylene-1,6-diisocyanate / 1,6-diisocyanated’hexamethylene / 1,6-Disocyanatohexane / 1,6-diisocyanato-hexan / tl78 / TL 78", "synonymsKr": "헥사메틸렌디이소시아네이트 / 헥사메틸렌다이아이소사이안에이트 / Metyleno-bis-fenyloizocyjanian,헥사메틸렌다이아아이소사이안산(헥사메틸렌디아이소시안산) / 헥사메틸렌다이아이소사이안산(헥사메틸렌디이소시안산) / 헥사메틸렌디이소시아네이트 / 헥사메틸렌디이소시아네이트 / 헥사메틸렌 다이아이소사이안에이트 / 1,6-다이아이소사이아나토헥산 / 1,6-헥사메틸렌 다이아이소사이안 산 / 1,6-헥사메틸렌 다이-아이소사이안 산 / 디이소시안산 헥사메틸렌 / 헥사메틸렌 다이아이소사이안산 / 헥사메틸린-1,6-다이다이소사이안 산", + "synonymsEn": "Hexamethylene Diisocyanate / HMDI / 1,6-Diisocyanatohexane / 1,6-HEXAMETHYLENE DIISOCYANATE / Hexane, 1,6-diisocyanato- / Hexamethylene-1,6-diisocyanate / 1,6-diisocyanated’hexamethylene / 1,6-Disocyanatohexane / 1,6-diisocyanato-hexan / tl78 / TL 78", "unNumber": "2281", "casNumber": "822-06-0", - "transportMethod": "", - "sebc": "", - "usage": "도료용 경화제, 접착제용 경화제 도료나 접착제 제품 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(6.1급), 산적액체", + "sebc": "DR (Dissolver/Reactive)", + "usage": "도료용 경화제, 접착제용 경화제 도료나 접착제\n 제품 사용", + "state": "액체", + "color": "무색~옅은 노랑", + "odor": "자극적, 톡 쏘는 냄새", + "flashPoint": "140℃", + "autoIgnition": "454℃", + "boilingPoint": "255℃", + "density": "1.047", + "solubility": "물과 반응", + "vaporPressure": "0.05 mmHg (25℃)", + "vaporDensity": "5.8", + "explosionRange": "0.9~9.5%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 3, + "fire": 1, + "reactivity": 1, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "독성, 자극성, 호흡기 감작성 [독성 유해성]", + "ergNumber": "156", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "반경 300m 이상", + "responseDistanceSpillDay": "반경 50m 이상", + "responseDistanceSpillNight": "중하 200m 이상", + "marineResponse": "물과 반응하여 CO2 발생, 용해(D) 후 일부 반응물질 부유", + "ppeClose": "근거리(레벨 A)", + "ppeFar": "원거리(레벨 C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "이소시아네이트계, 호흡기 감작성/독성. 물과 반응하여 이산화탄소 발생 및 폴리우레아 형성. 증기 흡입 시 천식·호흡곤란 유발", + "firstAid": "흡입: 기침/천식/호흡곤란/폐부종 → 신선한 공기, 산소공급·병원이송. 피부: 자극/감작/홍반 → 다량의 물과 비누로 20분 이상 세척, 오염의복 제거. 안구: 자극·통증 → 15분 이상 물로 세척, 콘택트렌즈 제거. 경구: 구토금지, 즉시 의료조치", + "fireFighting": "드라이케미컬·CO2·포말·물분무 사용. 물 직접 접촉 시 발열 주의, 분무주수로 용기 냉각. 열분해 시 유독가스(HCN, NOx, 이소시아네이트 증기) 발생 주의", + "spillResponse": "유출 차단 후 흡착제(모래, 진주암)로 회수. 물과 반응하므로 해수 직접 접촉 최소화. 회수물은 저반응성 중화제(카본산 에스테르, 알코올)로 서서히 중화 처리", + "exposure": "TWA 0.005 ppm, STEL 0.02 ppm", "regulation": "" }, "ibcHazard": "", @@ -11057,134 +9605,66 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-B", + "emsFire": "F-A", + "emsSpill": "S-B", "emsFirstAid": "", "cargoCodes": [ { "code": "HMDI", "name": "Hexamethylene Diisocyanate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 157, - "abbreviation": "HMDA", - "nameKr": "헥사메틸렌 다이아민", - "nameEn": "HEXAMETHYLENE DISMINE", - "synonymsEn": "Hexamethylenediamine / HMDA / HEXAMETHYLENEDIAMINE / 1,6-HEXANEDIAMINE / 1,6-Hexamethylenediamine / Hexamethylendiamine / HEXANEDIAMINE / Hexylenediamine / 1,6-diamino-hexan / NCI-C61405 / H2N(CH2)6NH2", - "synonymsKr": "헥사메틸렌디아민 / 헥사메틸렌디아민 / 1,6-디아미노헥산 / 1,6-헥산디아민 / 헥사메틸렌디아민 / 1,6-헥산디아민 / 1,6-디아미노헥산 / 헥실렌디아민 / 헥사메틸렌 다이아민 / 1,6-다이아미노헥산 / 1,6-헥실렌다이아민 / HMD / HMDA / 알파-, 오메가-헥산다이아민 / 헥사메틸렌다이아민 / 헥실렌다이아민", - "unNumber": "2280", - "casNumber": "124-09-4", - "transportMethod": "", - "sebc": "", - "usage": "나일론 66과 플리머의 제조 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "HMDA", - "name": "HEXAMETHYLENE DISMINE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 158, - "abbreviation": "HPNHEPTANE", - "nameKr": "n-헵탄", - "nameEn": "HIGHT PURITY N-HEPTANE", + "id": 92, + "abbreviation": "NHPTN", + "nameKr": "노르말헵탄", + "nameEn": "n-Heptane", + "synonymsKr": "N-헵탄 / 스겔리솔베 C / 노말헵탄 / 다이프로필 메탄", "synonymsEn": "Heptane / N-HEPTANE / heptanes / Heptan / 1-HEPTANE / NORMAL HEPTANE / Aliphatic hydrocarbon / Gettysolve-C / Dipropylmethane / heptane(n-heptane) / Eptani", - "synonymsKr": "노르말헵탄 / 노르말헵탄(NORMALHEPTANE) / 헵탄 / 헵테인 / 헵테인(헵탄) / n-헵탄", "unNumber": "1206", "casNumber": "142-82-5", - "transportMethod": "", - "sebc": "", - "usage": "고무 생산 및 가고처리 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(X류)", + "sebc": "E (Evaporator)", + "usage": "마취제, 유기합성물. 래커류 용매 인화성 액체(구분2) 흡인 유해성(구분1) 만성 수생환경 유독성(구분3) 물잘톡성 I", + "state": "액체", + "color": "무색, 투명", + "odor": "가솔린 냄새", + "flashPoint": "-4℃", + "autoIgnition": "222.78℃", + "boilingPoint": "98℃", + "density": "0.7", + "solubility": "불용", + "vaporPressure": "34.5mmHg(20’C)", + "vaporDensity": "3.45", + "explosionRange": "1.1~6.7%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/X", + "ergNumber": "128", + "idlh": "750 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "(고인화성 / 흡인유해성 / 증발 / 방제X)", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발©", + "ppeClose": "근거리(레벨 A)", + "ppeFar": "원거리(레벨 C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "독성 부식성 가스 발생, 유출 시 인화성 증기 발생 및 폭발위험. 해상 유출 시 증발(E)", + "firstAid": "흡입노출 • 토하게 하지 말 것. 긴급 의료조치, 산소공급, 인공호흡 응급조치 피부접촉 • 물로 씻을 것. 긴급 의료조치, 화상외 경우 다량의 찬물로 씻을 것 안구접촉 ' 긴급 의료조치, 20문 이상 흐르는 물에 씻을 것 경구섭취 • 즉시 의료조치, 토하게 하지 말 것", + "fireFighting": "복합가스탐지기 이용 농도 확인(문자일 공유). 먼 곳에서 분무(안개)주수 또는 일반포말 이용 화재진압, 직사주수 금지. 열화상카메라 운용(문자일 공유). 화재진압 후에도 사고선 냉각 조치", + "spillResponse": "모든 점화원(불꽃, 불씨, 스파크) 제거하고 주변 해상 통제. 만약 위험하지 않다면 유출 차단. 소화포 이용 분무주수로 증기 줄이고 증기운의 이동 억제. 해수에 유출 시 증발(E)되어 해상수거 불가. 안전 확보 시까지 지속적 유출물질 농도 탐지 및 모니터링", + "exposure": "TWA 400 ppm, STEL 500 ppm, IDLH 750 ppm", "regulation": "" }, "ibcHazard": "", @@ -11193,133 +9673,83 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "HPNHEPTANE", "name": "HIGHT PURITY N-HEPTANE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 159, - "abbreviation": "HPTN", - "nameKr": "헵탄", - "nameEn": "HEPTANE", - "synonymsEn": "Heptane / N-HEPTANE / heptanes / Heptan / 1-HEPTANE / NORMAL HEPTANE / Aliphatic hydrocarbon / Gettysolve-C / Dipropylmethane / heptane(n-heptane) / Eptani", - "synonymsKr": "헵테인 / 노르말헵탄 / 노르말헵탄(NORMALHEPTANE) / 헵탄 / 헵테인 / 헵테인(헵탄) / n-헵탄", - "unNumber": "1206", - "casNumber": "142-82-5", - "transportMethod": "", - "sebc": "", - "usage": "고무 생산 및 가고처리 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "HPTN", "name": "HEPTANE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HEPTANE", + "name": "Heptane", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NHPTN", + "name": "n-Heptane", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 160, + "id": 93, "abbreviation": "HRPIB", "nameKr": "폴리이소부틸렌", "nameEn": "HIGHT REACTIVE POLYISOBUTYLENE", - "synonymsEn": "Polyisobutylene / usb / POLYISOBUTENE / p20 / p118 / p200 / POLY(ISOBUTYLENE) 24'000 / kp5 / oktol / pb150 / pib100", "synonymsKr": "폴리아이소뷰틸렌 / 폴리이소부틸렌 / 폴리아이소부텐 / 폴리이소부티렌", + "synonymsEn": "Polyisobutylene / usb / POLYISOBUTENE / p20 / p118 / p200 / POLY(ISOBUTYLENE) 24'000 / kp5 / oktol / pb150 / pib100", "unNumber": "1325", "casNumber": "9003-27-4", - "transportMethod": "", - "sebc": "", - "usage": "타이어 내부 튜브, 윤활제, 접착제, 실런트, 연료 첨가제, 식품 포장, 헬스케어 제품 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "transportMethod": "포장(9.1급), 산적액체(X류)", + "sebc": "Fp (Persistent Floater)", + "usage": "타이어 내부 튜브, 윤활제, 접착제, 실런트, 연료\n첨가제, 식품 포장, 헬스케어 제품 등 사용", + "state": "액체", + "color": "무색", + "odor": "무취", + "flashPoint": "210℃", "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "boilingPoint": ">300℃", + "density": "0.92", + "solubility": "불용", + "vaporPressure": "7.5 mmHg", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "인화성, 지속성 부유(P), 독성 [독성 유해성]", + "ergNumber": "133", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "반경 300m 이상", + "responseDistanceSpillDay": "반경 50m 이상", + "responseDistanceSpillNight": "중하 100m 이상", + "marineResponse": "부유(F), 지속성 부유(P), 해상수거 가능", + "ppeClose": "근거리(레벨 A)", + "ppeFar": "원거리(레벨 C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "연소 시 매우 자극적인 유독가스 발생. 해상 유출 시 부유(F)", + "firstAid": "흡입: 기침/호흡곤란 → 신선한 공기, 산소공급. 피부: 자극 → 물과 비누로 세척. 안구: 자극 → 15분 이상 물로 세척. 경구: 의료조치, 토하게 하지 말 것", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무(안개)주수 또는 일반포말 이용 화재진압, 직사주수 금지. 화재진압 후에도 사고선 냉각 조치", + "spillResponse": "유출물은 해상에 부유하므로 오일붐으로 포위 후 스키머·흡착제로 회수. 초기 이격거리 50m, 방호거리 100m", "exposure": "", "regulation": "" }, @@ -11329,134 +9759,78 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "HRPIB", "name": "HIGHT REACTIVE POLYISOBUTYLENE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 161, - "abbreviation": "HSB 150N", - "nameKr": "베이스 오일 (SHELL 사 제조)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 디메칠설폭사이드(DMSO)로추출한성분을3%초과하여함유하고있는석유유래물질/ 석유유래물질 / 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "윤활유의 기본 성분의 베이스 오일", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "HSB 150N", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" + "code": "PIB", + "name": "Polyisobutylene", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PISOBUT", + "name": "Polyisobutene", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 162, - "abbreviation": "HXN", - "nameKr": "헥산", - "nameEn": "HEXANE", - "synonymsEn": "Hexane / n-Hexane / HEXANES / 1-HEXANE / n-Hexan / dipropyl / NAPHTHA SOLVENT / ISOHEXANES / n-Hexane, HPLC, 95.0% min. / OXFORD / HEXANES HPLC", + "id": 94, + "abbreviation": "NHXN", + "nameKr": "n-헥산", + "nameEn": "n-Hexane", "synonymsKr": "노르말헥산 / 헥산 / 노르말헥산 / 노말헥세인 / 메틸(2-)펜탄 / 헥산95% / 헥산98% / 헥산99% / 헥산(HEXANE) / N-헥산 / 헥산 / 헥실수소화물 / 노말헥산 / N-헥세인 / 노멀 헥세인", + "synonymsEn": "Hexane / n-Hexane / HEXANES / 1-HEXANE / n-Hexan / dipropyl / NAPHTHA SOLVENT / ISOHEXANES / n-Hexane, HPLC, 95.0% min. / OXFORD / HEXANES HPLC", "unNumber": "1208", "casNumber": "110-54-3", - "transportMethod": "", - "sebc": "", - "usage": "용매, 추출제, 세정제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(X류)", + "sebc": "E (Evaporator)", + "usage": "", + "state": "액체", + "color": "무색", + "odor": "석유 냄새", + "flashPoint": "17.78。0", + "autoIgnition": "423℃", + "boilingPoint": "69℃", + "density": "0.66", + "solubility": "불용", + "vaporPressure": "153 mmHg (25℃)", + "vaporDensity": "3", + "explosionRange": "1.1~7.7%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "128", + "idlh": "0분) - inn~、r”", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발 (E)", + "ppeClose": "근거리(레벨 A)", + "ppeFar": "원거리(레벨 C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "독성 부식성 가스 발생, 유출 시 인화성 증기 발생 및 폭발위험. 해상 유출 시 증발(E)", + "firstAid": "흡입노출 • 신선한 곳으로 옮김, 인공호흡, 호흡곤란 시 산소투입 피부접촉 • 다량의 물 또는 비누로 20분정도 노출부위 씻을 것 안구접촉 • 눈꺼풀을 들어내고 적어또 15분 동안 많은 양의 물로 세척 경구섭취 • 환자에게 물 또는 우유를 줄 것. 의사치료", + "fireFighting": "복합가스탐지기 이용 농도 확인(문자일 공유). 먼 곳에서 분무(안개)주수 또는 일반포말 이용 화재진압, 직사주수 금지. 열화상카메라 운용(문자일 공유). 화재진압 후에도 사고선 냉각 조치", + "spillResponse": "모든 점화원(불꽃, 불씨, 스파크) 제거하고 주변 해상 통제. 만약 위험하지 않다면 유출 차단. 소화포 이용 분무주수로 증기 줄이고 증기운의 이동 억제. 해수에 유출 시 증발(E)되어 해상수거 불가. 안전 확보 시까지 지속적 유출물질 농도 탐지 및 모니터링", + "exposure": "TWA 50 ppm, IDLH 1100 ppm", "regulation": "" }, "ibcHazard": "", @@ -11465,134 +9839,140 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "HXN", "name": "HEXANE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NHXN", + "name": "n-Hexane", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 163, + "id": 95, "abbreviation": "IBA", "nameKr": "이소부탄올", "nameEn": "ISOBUTYL ALCOHOL", + "synonymsKr": "아이소부탄올 / 1-하이드록시메틸프로페인 / 2-메틸프로필 알코올 / 2-메틸-1-프로판을", "synonymsEn": "2-Methyl-1-propanol / ISOBUTANOL / IBA / ISOBUTYL ALCOHOL / 2-METHYLPROPAN-1-OL / i-Butanol / 2-Methyl propanol / NATURAL ISO BUTYL ALCOHOL / 1-propanol,2-methyl- / isobutano / 2-methyl-1-propano", - "synonymsKr": "1-프로판올,2-메틸- / 1-히드록시메틸프로판 / 2-메틸-1-프로판올 / 2-메틸프로판-1-올 / 2-메틸프로필알콜 / IBA79,부틸알콜 / 발효부틸알 / 부탄 / 부탄올-이소 / 이소-부틸알콜 / 이소프로필카비 / 아이소뷰틸알코올 / 이소부탄올 / 이소부틸알코올 / 이소뷰탄올 / 이소부틸알콜 / 이소부탄올(IBOH) / 이소부틸알코올 / 아이소뷰틸 알코올 / 1-하이드록시메틸프로판", "unNumber": "1212", - "casNumber": "78-83-1 110-19-0", - "transportMethod": "", - "sebc": "", + "casNumber": "78-83-1", + "transportMethod": "포장(2급), 산적액화가스", + "sebc": "G (Gas)", "usage": "도료 용매, 에스테르의 전구체, 향료, 변성제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "오일류 액체", + "color": "무색, 투명", + "odor": "알코올 냄새", + "flashPoint": "arc", + "autoIgnition": "415。0", + "boilingPoint": "-0.5℃", + "density": "0.8", + "solubility": "0.06 g/L (25℃)", + "vaporPressure": "(물 17.5mmHg)", + "vaporDensity": "2.07", + "explosionRange": "1.7-10.9%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 3, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "유해액체물질/Z", + "ergNumber": "115", + "idlh": "1,600 ppm", + "aegl2": "17,000 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "위험도", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "고인화성, 질식성, 동상 위험", + "firstAid": "흡입: 신선한 공기, 산소공급. 동상(액화): 미온수 해동. 긴급 의료조치.", + "fireFighting": "가스 차단 우선. 차단 불가 시 화재 유지. CO₂/건조분말. 용기 냉각.", + "spillResponse": "점화원 제거. 환기 확보. 가스검지기. 증기운 형성 시 대피.", + "exposure": "TWA 800 ppm, AEGL-2 17,000 ppm, IDLH 1,600 ppm", + "regulation": "고압가스안전관리법" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "F", + "ibcDetection": "R", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-D, S-U", + "emsFire": "F-D", + "emsSpill": "S-U", "emsFirstAid": "", "cargoCodes": [ { "code": "IBA", "name": "ISOBUTYL ALCOHOL", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 164, + "id": 96, "abbreviation": "NB", "nameKr": "n-부탄올", "nameEn": "NORMAL ISOBUTANOL", + "synonymsKr": "부틸알코올 / n-부탄올 / n-부틸알코올 / n-뷰틸알코올 / 뷰틸알코올 / 1-부틸알콜 / 정부탄올 / N-부틸알코올 / 부틸알코올 / 1-부탄올 / 1-부틸알코올 / 부틸수산화물 / 메틸올프 / 노말부탄올(NBOH) / N-뷰틸 알코올 / 노말-부틸알코올 / 부탄올", "synonymsEn": "1-Butanol / n-Butanol / BuOH / NBA / n-BuOH / n-Butyl alcohol / Normal Butanol / butanols / 1-Butano / Butanol-1 / 1-Butyl alcohol", - "synonymsKr": "/ 부틸알코올 / n-부탄올 / n-부틸알코올 / n-뷰틸알코올 / 뷰틸알코올 / 1-부틸알콜 / 정부탄올 / N-부틸알코올 / 부틸알코올 / 1-부탄올 / 1-부틸알코올 / 부틸수산화물 / 메틸올프 / 노말부탄올(NBOH) / N-뷰틸 알코올 / 노말-부틸알코올 / 부탄올", "unNumber": "1120", - "casNumber": "71-36-3 106-97-8", - "transportMethod": "", - "sebc": "", + "casNumber": "71-36-3", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "D (Dissolver)", "usage": "용매, 화학 합성 중간체, 연료 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "액체", + "color": "무색", + "odor": "달콤한 냄새", + "flashPoint": "37。0", + "autoIgnition": "343℃", + "boilingPoint": "117.7℃", + "density": "0.81", + "solubility": "63.2g/L(25r)", + "vaporPressure": "7.0mmHg(25'’C)", + "vaporDensity": "2.6", + "explosionRange": "1.4~11.2%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 3, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Z", + "ergNumber": "129", + "idlh": "1,400 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성, 호흡기/피부/안구 자극, 중추신경계", + "firstAid": "흡입노출 • 토하게 하지 말 것, 호흡이 힘든 경우 산소공급, 인공호흡 피부접촉 • 비누와 물로 피부를 씻을 것 안구접촉 • 몇 분간 물로 씻을 것, 콘택트렌즈 제거, 지속된 자극 시 병원진료 경구섭취 • 토하게 하지 말 것, 긴급 의료조치 초동 대응방법 대응장비 보호복 호흡구 3,4형삭 (C급) 방독마스크(반면, 전면〉 1형식 (1B) 공가호흡기 보안경 보호장갑 O O 기타장비 열화상카메라 1 초기 이격거리(m) 50 방호거리 (m) 300 1 해상유출시 ► 유출물질은 인화성물질로 화재위험성이 있으며, 심한 눈 손상과 피부, 호홉기를 자극하고 현기증, 두통을 유발할 수 있으므로 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박 통제 (흡연, 불꽃, 스파크 등 모든 점화원 제거) ► 츨동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용(사고선 근접 시 1B급 착용), 증기흡입과 피부와 눈에 접촉을 피할 것(화상주의) 乂 플라스틱, 고무 및 코팅류 일부 형태를 부식시킴 - 유출물질은 용해되므로 방제조치 불필요 > 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 1 화재 시대피거리(m", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제. 분무주수로 증기운 이동 억제.", + "exposure": "TWA 20 ppm, IDLH 1,400 ppm", "regulation": "" }, "ibcHazard": "", @@ -11601,29 +9981,29 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "NB", "name": "NORMAL ISOBUTANOL", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 165, + "id": 97, "abbreviation": "INA", "nameKr": "아이소-알코올", "nameEn": "ISO ALCOHOLS", - "synonymsEn": "2,6-DIMETHYL-4-HEPTANOL / FEMA 3140 / Einecs 271-233-5 / isononanols mixed / c8-10-iso-alcoholc9-rich / ISONONYL ALCOHOL, BRANCHED / Alcohols,C8-10-iso-,C9-rich / C8-10-ISO-ALCOHOLS, C9-RICH) / 4-HYDROXY-2,6-DIMETHYLHEPTANE / Alcohols, C8-1o-iso-, C9-rich", "synonymsKr": "C8-10-아이소-알코올,C9-RICH / C8-10-아이소-알코올,C9-RICH(C8-10-ISO-ALCOHOLS,C9-RICH) / 알코올류 C8-10-아이소-, C9-풍부함(Rich) / C8-10-아이소-알코올, C9-rich / 알코올, (C=8-10)-아이소-, (C=9)-리치", + "synonymsEn": "2,6-DIMETHYL-4-HEPTANOL / FEMA 3140 / Einecs 271-233-5 / isononanols mixed / c8-10-iso-alcoholc9-rich / ISONONYL ALCOHOL, BRANCHED / Alcohols,C8-10-iso-,C9-rich / C8-10-ISO-ALCOHOLS, C9-RICH) / 4-HYDROXY-2,6-DIMETHYLHEPTANE / Alcohols, C8-1o-iso-, C9-rich", "unNumber": "1993", - "casNumber": "68526-84-1 27458-94-2", + "casNumber": "68526-84-1\n27458-94-2", "transportMethod": "", "sebc": "", "usage": "화장품, 의료, 전자 제품 세정 등 사용", @@ -11677,58 +10057,58 @@ { "code": "INA", "name": "ISO ALCOHOLS", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 166, - "abbreviation": "IPA", - "nameKr": "이소프로필알코올", - "nameEn": "ISOPROPYL ALCOHOL", + "id": 98, + "abbreviation": "IPAHYD", + "nameKr": "아이소프로필알코올", + "nameEn": "Isopropanol anhydrous", + "synonymsKr": "이소프로필알코올 / 이소프로필알코올 / 에틸카르비놀 / 이소올 / 제록스필름제거제 / 2-프로판올 / SEC-프로필알코올 / 디메틸카르비놀 / 아이소프로필알코올 / 이소프로판올 / 프로판-2-올 / 프로필알코올 / 아이피에이 / 이소프로필알콜 / 이소프로필알코올 / 아이소프로판올 / 1-메틸에탄올 / 1-메틸에틸알코올 / 2-프로필알코올 / 2-하이드록시프로페인 / n-프로판-2-올", "synonymsEn": "Isopropyl alcohol / IPA / 2-Propanol / Isopropanol / i-PrOH / iPrOH / i-Propanol / Propanol-2 / 2-PROPANOL (IPA) / 67-73-0 / lsopropanol", - "synonymsKr": "이소프로필알코올 / 에틸카르비놀 / 이소올 / 제록스필름제거제 / 2-프로판올 / SEC-프로필알코올 / 디메틸카르비놀 / 아이소프로필알코올 / 이소프로판올 / 프로판-2-올 / 프로필알코올 / 아이피에이 / 이소프로필알콜 / 이소프로필알코올 / 아이소프로판올 / 1-메틸에탄올 / 1-메틸에틸알코올 / 2-프로필알코올 / 2-하이드록시프로페인 / n-프로판-2-올", "unNumber": "1219", "casNumber": "67-63-0", - "transportMethod": "", - "sebc": "", - "usage": "화잘품, 개인용품, IT부품 세정, 소독 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "유해액체물질/Y 무색투명의 소독용 알코올 냄새가 나는 액체로 주로 탈수제. 화장품, 세척제, 살균제로 사용되며, 해상유출 시에는 용해되므로 방제조치가 불필요함. 고인화성 물질로 화재위험성이 높으므로 점화원 제거 등 주의가 요구되며, 1회 노출에도 중대한 독성을 일으킬 수 있고 눈, 호흡기 자극 등 유해성이 있으므로 방독마스크, 화학", + "state": "액체", + "color": "무색, 투명", + "odor": "소독용 알코올 냄새", + "flashPoint": "12℃", + "autoIgnition": "399~460℃", + "boilingPoint": "83℃", + "density": "0.78", + "solubility": "1,000 g/L (잘 녹음)", + "vaporPressure": "(물 17.5mmHg)", + "vaporDensity": "2.07", + "explosionRange": "2-12.7%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "129", + "idlh": "2,000 ppm", + "aegl2": "1,800 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "인화점", + "responseDistanceSpillDay": "최소반경 50m", + "responseDistanceSpillNight": "중하 300m 이상", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "고인화성, 호흡기/피부/안구 자극, 중추신경계", + "firstAid": "흡입노출 • 토하게 하지 말 것, 긴급 의료조치, 산소공급, 인공호호 피부접촉 ' 간급 의료조치, 화상의 경우 찬물로 식힐 것, 비누와 물로 씻을 것 안구접촉 • 몇 분간 물로 조심해서 씻을 것, 콘택트렌즈 제거, 의료조치 경구섭취 • 긴급 의료조치, 토하게 하지 말 것 초롱대응방법 대응장비 해상유출시 호흠구 보안경 보호장갑 기타장비 방독쭒콶뺦 전면) O O 열화상카메라 I 촐기 이격거리(m) 50 방호거라(m) 300 ► 유출물질은 고인화성물질로 증기의 이동에 의한 폭발 가능성이 높으며, 1회 노출에도 중대한 독성을 일으킬 수 있고 눈. 호흡기 자극 등 유해성이 있으므로 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박 통제(홉연, 불꽃, 스파크 등 모든 점화원 제거) ► 출동 경비정(방제정〉복합가스용 방독마스크를 포함한 3,4형식 보호복 착용(사고선 근접시 1B 착용), 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물잘은 용해되므로 방제조치 불필요 > 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 I 화재 시 대피거리(m) 보호복 3,4형식 (C급) 1 형식 (1B) 800 화재 •폭발시 ►유", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 내알코올 포말.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 분무주수로 증기운 이동 억제.", + "exposure": "TWA 200 ppm, STEL 400 ppm, AEGL-2 1,800 ppm, IDLH 2,000 ppm", "regulation": "" }, "ibcHazard": "", @@ -11737,100 +10117,50 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "IPA", "name": "ISOPROPYL ALCOHOL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 167, - "abbreviation": "IPRE", - "nameKr": "이소프렌(2-메틸-1,3-부타디엔)", - "nameEn": "ISOPRENE", - "synonymsEn": "Isoprene / 2-METHYL-1,3-BUTADIENE / ACETATE BUFFER / BUFFER SOLUTION / SODIUM ACETATE BUFFER / lsoprene / BUFFER PH7.20 / BUFFER PH 4.65 / Isoprene, stabilized / 2-Methyl-1,3-butadien / nsc9237", - "synonymsKr": "펜탄디엔 / 2-메틸-1,3-부타디엔 / 이소프렌 / 이소프렌(2-메틸-1,3-부타디엔) / 아이소프렌(2-메틸-1,3-부타디엔) / 아이소프렌 / 1,3-부타디엔, 2-메틸-", - "unNumber": "1218", - "casNumber": "78-79-5", - "transportMethod": "", - "sebc": "", - "usage": "합성 고무, 타이어, 점도증진제, 에센셜 오일 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "FT", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12, 15.13, 15.14, 15.17, 15.19.6, 16.6.1, 16.6.2", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "IPRE", - "name": "ISOPRENE", - "company": "", - "source": "화물적부도" + "code": "IPA", + "name": "Isopropyl alcohol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "IPA", + "name": "Isopropanol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "IPAHYD", + "name": "Isopropanol anhydrous", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 168, - "abbreviation": "JETA1", - "nameKr": "항공유(등유 기반)", - "nameEn": "JET FUOL A-1", - "synonymsEn": "AVIATION TURBINE FUEL / ATF / AVTUR", - "synonymsKr": "항공유", - "unNumber": "1209", + "id": 99, + "abbreviation": "JETJP1", + "nameKr": "항공유(군사용 제트 연료 유형 / 민간 항공 JET A표기)", + "nameEn": "Jet fuel JP-1", + "synonymsKr": "케로신 / 등유,연료오일,콜오일,레인지오일,모빌케로신 / 케로신 / 등유 / 케로센 / 레인지오일 / 콜오일 / 모빌케로신 / 케로센제트연료 / 케로센오돌레스 / 디오도라이즈드케로신 / 케로젠", + "synonymsEn": "Kerosene / KEROSINE / jp-5 / KEROSENE OIL / jeta / jp-8 / Kerosene(Technical) / nafta / Avtur / jeta-1 / deobase", + "unNumber": "", "casNumber": "8008-20-6", "transportMethod": "", "sebc": "", - "usage": "민 항공기(여객기) 연료", + "usage": "", "state": "", "color": "", "odor": "", @@ -11881,127 +10211,101 @@ { "code": "JETA1", "name": "JET FUOL A-1", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 169, - "abbreviation": "KERO", - "nameKr": "케로신(등유)", - "nameEn": "KEROSENE", - "synonymsEn": "Kerosene / KEROSINE / jp-5 / KEROSENE OIL / jeta / jp-8 / Kerosene(Technical) / nafta / Avtur / jeta-1 / deobase", - "synonymsKr": "등유,연료오일,콜오일,레인지오일,모빌케로신 / 케로신 / 등유 / 케로센 / 레인지오일 / 콜오일 / 모빌케로신 / 케로센제트연료 / 케로센오돌레스 / 디오도라이즈드케로신 / 케로젠", - "unNumber": "1201", - "casNumber": "8008-20-6", - "transportMethod": "", - "sebc": "", - "usage": "보일러 연료 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "KERO", "name": "KEROSENE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "JETA1", + "name": "Jet fuel A-1", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "JETJP1", + "name": "Jet fuel JP-1", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "JETJP4", + "name": "Jet fuel JP-4", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "JETJP5", + "name": "Jet fuel JP-5", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "JETJP6", + "name": "Jet fuel JP-6", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SSL150/200", + "name": "Sarasol 150/200", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 170, + "id": 100, "abbreviation": "NAH", "nameKr": "수소화나트륨", "nameEn": "Sodium Hydride", + "synonymsKr": "나트륨수화물 / 수소화나트륨 / 나트륨수화물 / 소듐 하이드라이드", "synonymsEn": "Sodium hydride / NAH / QHN / Sodium Hydride, 60% oil / Sodium hydride suspension / 340F / nah80 / NAH 80 / 0.84-0.86 / Hydridesodium / SODIUM HYDRIDE", - "synonymsKr": "나트륨수화물 / 수소화나트륨 / 나트륨수화물/ 소듐 하이드라이드", "unNumber": "1427", "casNumber": "7646-69-7", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(4.3급)", + "sebc": "S (Sinker)", "usage": "유기 합성에서의 환원제, 수소 첨가제, 축합제 사용", - "state": "", - "color": "", - "odor": "", + "state": "고체", + "color": "무색~회백색", + "odor": "무취", "flashPoint": "", "autoIgnition": "", "boilingPoint": "", - "density": "", - "solubility": "", + "density": "0.92", + "solubility": "물과 반응", "vaporPressure": "", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" + "health": 3, + "fire": 3, + "reactivity": 2, + "special": "W" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "물반응성 인화성 고체, 습기와 반응하여 수소 발생", + "ergNumber": "138", "idlh": "", "aegl2": "", "erpg2": "", "responseDistanceFire": "", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "해수와 격렬 반응, 폭발 위험", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "물반응성 발열, 수소 발생, 피부/안구 심각한 손상", + "firstAid": "흡입: 신선한 공기. 피부: 건조 분말 제거 후 물 세척. 안구: 물로 세척. 경구: 즉시 의료조치.", + "fireFighting": "물/CO₂/포말 사용 금지. 건조 소금/건조 모래/Class D 소화기.", + "spillResponse": "물과 격리. 건조 모래/건조 분말로 덮음. 환기 확보.", "exposure": "", - "regulation": "" + "regulation": "위험물안전관리법(제3류)" }, "ibcHazard": "", "ibcShipType": "", @@ -12009,27 +10313,27 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-G, S-N", + "emsFire": "F-G", + "emsSpill": "S-N", "emsFirstAid": "", "cargoCodes": [ { "code": "NAH", "name": "Sodium Hydride", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 171, + "id": 101, "abbreviation": "KSS", "nameKr": "칼륨베타-시토스테롤황산염(KSS)", "nameEn": "POTASSIUM BETA-SITOSTEROL SULFATE", - "synonymsEn": "POTASSIUM BETA-SITOSTEROL SULFATE", "synonymsKr": "칼륨베타-시토스테롤황산염", + "synonymsEn": "POTASSIUM BETA-SITOSTEROL SULFATE", "unNumber": "-", "casNumber": "72884-27-6", "transportMethod": "", @@ -12085,33 +10389,33 @@ { "code": "KSS", "name": "POTASSIUM BETA-SITOSTEROL SULFATE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 172, + "id": 102, "abbreviation": "LAB", - "nameKr": "소프트알킬벤젠", - "nameEn": "LINEAR ALKYL BENZENE", - "synonymsEn": "·Linear alkylbenzene ·Nalkylene 500 detergent alkylate ·Naxel DDB-500 ·Alkyl c10-13, benzol ·Benzene, c10-13-alkyl-deriv ·Benzol, c10-13-alkyl-deriv", - "synonymsKr": "·선형 알킬벤젠 ·Nalkylene 500 세제 알킬레이트 ·Naxel DDB-500 ·알킬 c10-13, 벤졸 ·벤젠, c10-13-알킬-유도체 ·벤졸, c10-13-알킬-유도체", + "nameKr": "선형 알킬 벤젠", + "nameEn": "Linear alkyl benzene", + "synonymsKr": "LAB / CIO-C13-알킬벤젠 / 연성 알킬벤젠 / 벤젠, CIO-C13-알킬 유도체", + "synonymsEn": "SCINTIVERSE BD COCKTAIL / Einecs 267-051-0 / Alkyl-(C10 / )-benzol / ALKYLBENZENE, LINEAR / Alkyl(C10-C13)benzene / C10-C13 ALKYLBENZENE) / SCINTIVERSE BD COCKTAIL / C10-C13LINEARALKYLBENZENES / Benzene,C10-13-alkylderivs. / C10-13-linear alkyl benzene / Benzol, C10-13-Alkylderivate", "unNumber": "2586", "casNumber": "67774-74-7", "transportMethod": "", "sebc": "", - "usage": "세제, 계면활성제 원료", - "state": "", - "color": "", - "odor": "", + "usage": "계면활성제, PVC가소재, 케이블 접작제, 잉크", + "state": "액체", + "color": "무색", + "odor": "무취", "flashPoint": "", - "autoIgnition": "", + "autoIgnition": "227℃", "boilingPoint": "", - "density": "", + "density": "0.8577", "solubility": "", - "vaporPressure": "", + "vaporPressure": "(물 23.8mmHg)", "vaporDensity": "", "explosionRange": "", "nfpa": { @@ -12120,20 +10424,20 @@ "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Y", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", + "responseDistanceFire": "자료없음", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", + "marineResponse": "부유 (F)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 신선한 곳으로 이동, 인공호흡, 산소공급. 의료조치 피부접촉 • 20분 이상 흐르는 물에 씻을 것, 의료조치 안구접촉 • 즉시 흐르는 물에 씻을 것, 의료조치 경구섭취 • 입을 씻어낼 것, 즉시 의료조치 초통 대응방법 대응장비 보호복 ; 호홈구 보안경 厂 3,4춰식(C급)' 〔방독마스크(F면.전면/ o ' 보호장갑 ' 기타장비 ' O — 三 ''열하상하메4 ’ 1 초기이격거리 (m) 자료없음 방호거리 (m) 자료없음 1 해상유출시 > 유출물질은 삼켜서 기도로 유입되면 치명적일 수 있으므로 모듄 출동세력 풍상에 위치. 최소 이격거리 유지 ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3.4형식 보호의 착용, 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질온 부유성 물질로 방제조치가 필요함 (오일펜스 설치, 유홉착재, 뜰채 이용 홈착회수) 1 화재 시대피거리(m) 자료없음 1 ► 유출물질은 연소시 유독가스 방출. 풍상에 위치, 최소 이격거리 유지하고 소화포 아용 화재진압 ► 열화상카메라 운용(결과전파), 소화포 이용 사고선 냉각조치 할 것 * 직수분사 금지(화재를 번지게 할 수 있음) ’ 안전이 확보되면", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -12153,19 +10457,25 @@ { "code": "LAB", "name": "LINEAR ALKYL BENZENE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "LAB", + "name": "Linear alkyl benzene", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 173, + "id": 103, "abbreviation": "LAWS", "nameKr": "저아로마 화이트 스피릿", "nameEn": "LOW AROMATIC WHITE SPIRIT", - "synonymsEn": "Naphtha (petroleum), solvent-refined heavy / WHITESPIRITTYPE2 / SOLVENT-REFINED HEAVY NAPHTHA / naphtha petroleum, heavy, solvent-refined / Naphtha (petroleum), solvent-refined heavy / Naphtha (petroleum), solvent-refined heavy Low boiling point modified naphtha", "synonymsKr": "솔벤트-정제된 중질 나프타 (석유) / 솔벤트-정제된HEAVY나프타 / 솔벤트-정제된중질나프타(석유) / 솔벤트-정제된중질나프타(석유)(NAPHTHA(PETROLEUM),SOLVENT-REFINEDHEAVY)", + "synonymsEn": "Naphtha (petroleum), solvent-refined heavy / WHITESPIRITTYPE2 / SOLVENT-REFINED HEAVY NAPHTHA / naphtha petroleum, heavy, solvent-refined / Naphtha (petroleum), solvent-refined heavy / Naphtha (petroleum), solvent-refined heavy Low boiling point modified naphtha", "unNumber": "2319", "casNumber": "64741-92-0", "transportMethod": "", @@ -12221,24 +10531,326 @@ { "code": "LAWS", "name": "LOW AROMATIC WHITE SPIRIT", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 174, + "id": 104, "abbreviation": "LCO", "nameKr": "고유황디젤유분", "nameEn": "LIGHT CYCLE OIL", - "synonymsEn": "LIGHT CATALYTIC CRACKED OIL / DISTILLATES / LIGHT CATALYTIC / NAPHTHALENE, MOLTEN / LIGHT CYCLE OIL TRADING", "synonymsKr": "경순환유", + "synonymsEn": "LIGHT CATALYTIC CRACKED OIL / DISTILLATES / LIGHT CATALYTIC / NAPHTHALENE, MOLTEN / LIGHT CYCLE OIL TRADING", "unNumber": "3082", "casNumber": "64741-59-9", + "transportMethod": "산적액체", + "sebc": "F (Floater)", + "usage": "주로 중유에 혼합하거나 바이오 디젤 원료 사용", + "state": "액체", + "color": "황갈색", + "odor": "유분", + "flashPoint": "84℃", + "autoIgnition": "", + "boilingPoint": "263~353℃", + "density": "0.82~0.86", + "solubility": "불용", + "vaporPressure": "", + "vaporDensity": "", + "explosionRange": "", + "nfpa": { + "health": 1, + "fire": 2, + "reactivity": 0, + "special": "" + }, + "hazardClass": "인화성액체", + "ergNumber": "128", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "해상부유, 오일 회수 가능", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", + "msds": { + "hazard": "인화성, 흡입 유해성, 피부자극", + "firstAid": "흡입: 신선한 공기. 피부/안구: 물로 세척. 경구: 구토유발 금지, 의료조치.", + "fireFighting": "포말/CO₂/분무주수.", + "spillResponse": "점화원 제거. 오일펜스로 확산 방지. 흡착재 회수.", + "exposure": "", + "regulation": "위험물안전관리법(제4류 제2석유류)" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "LCO", + "name": "LIGHT CYCLE OIL", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 105, + "abbreviation": "MCB", + "nameKr": "클로로벤젠", + "nameEn": "MONO CHLORO BENZENE", + "synonymsKr": "모노클로로벤젠 / 벤젠 클로라이드 / 페닐클로라이드", + "synonymsEn": "ChlorobenzenE / MONOCHLOROBENZENE / Chlorobenzen / Chlorbenzol / Chlorbenzene / CHLOROBENZOL / PHENYL CHLORIDE / cp27 / NSC 8433 / U.N. 1134 / orobenzene / BENZENE CHLORIDE / BENZENE, CHLORO- / I P Carrier T 40 / Caswell No 183A / CHLOORBENZEEN (DUTCH) / CHLORBENZENE / CHLORBENZOL / CHLOROBENZEN (POLISH) / CHLOROBENZOL / CLOROBENZENE (ITALIAN) / CP 27 / MCB / MONOCHLOORBENZEEN (DUTCH) / MONOCHLORBENZENE / MONOCHLORBENZOL (GERMAN) / MONOCHLOROBENZENE / MONOCLOROBENZENE (ITALIAN) / NCI-C54886 / PHENYL CHLORIDE / Tetrosin SP / USEPA / OPP Pesticide Code: 056504", + "unNumber": "1134", + "casNumber": "108-90-7", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", + "usage": "중간체, 용매, 고비점 용제 등 사용\n주로 제초제, 염료, 고무, 의약품 등 활용", + "state": "액체", + "color": "무색", + "odor": "액체", + "flashPoint": "27℃", + "autoIgnition": "중기압", + "boilingPoint": "132℃", + "density": "1.1058", + "solubility": "0.5 g/L (25℃)", + "vaporPressure": "11.8 mmHg (25℃)", + "vaporDensity": "3.88", + "explosionRange": "1.3~11%", + "nfpa": { + "health": 3, + "fire": 3, + "reactivity": 0, + "special": "" + }, + "hazardClass": "유해액체물질/Y", + "ergNumber": "130", + "idlh": "0 분)", + "aegl2": "20 ppm", + "erpg2": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "침강 (S)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", + "msds": { + "hazard": "인화성, 중추신경계, 피부/호흡기 자극", + "firstAid": "흡입노출 • 의료조치, 산소공급, 인공호흡 피부접촉 • 물로 씻어 낼 것, 긴급 의료조치, 화상의 경우 찬물로 식힐 것 안구접촉 - 긴급 의료조치. 즉시 20분 이상 흐르는 물에 씻을 것 경구섭취 •긴급의료조치 초동 대응방법 대응장비 보호복 호흠구 보안경 보호장갑 기타장비 ■ 3,4형식(C급) 방독마스크(반면, 전면) .............仁) 仁) 여화사카메라 1형식 (1B) 공기호흡기 ⑴ 아 르로wr 베다 1 초기 이격거리(m) 50 방호거리(m) 300 | 해상유출시 ► 유출물질은 인화성 물질로 화재위험성이 있으며, 피부와 호휴기를 쟈극할 수 있고 반복노출 시 유해성이 있을 수 있으므로 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박 통제 (흡연, 불꽃, 스파크 등 모든 점화원 제거) 乂 플라스틱, 고무 부식시킴 ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3,4헝식 보호의 착용(사고선 근접 시 1B이상 착용), 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 침강하므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 1 화재사대피거", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제.", + "exposure": "TWA 10 ppm, AEGL-2 20 ppm, IDLH 1,000 ppm", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MCB", + "name": "MONO CHLORO BENZENE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CLETE", + "name": "Chloroethene", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MCBZN", + "name": "Monochlorobenzene", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 106, + "abbreviation": "MDEA", + "nameKr": "N-메틸다이에탄올아민", + "nameEn": "METHYL DIETHANOLAMINE", + "synonymsKr": "N-메틸다이에탄올아민 / N-메틸디에탄올아민 / 메틸디에탄올아민 / 메틸다이에탄올아민 / 디에탄올메틸아민", + "synonymsEn": "N-Methyldiethanolamine / MDEA / METHYL DIETHANOLAMINE / Methyldiethanolamin / Methyliminodiethanol / FC MDEA / usafdo-52 / USAF DO-52 / Mdea (diol) / Diethanolmethylamine / N-Methyldiethanolami", + "unNumber": "-", + "casNumber": "105-59-9", + "transportMethod": "산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "가스처리, 의약품, 수처리, 직물처리, 코팅 사용", + "state": "액체", + "color": "무색", + "odor": "비린내", + "flashPoint": "138℃", + "autoIgnition": "265℃", + "boilingPoint": "247℃", + "density": "1.04", + "solubility": "1,000 g/L (잘 녹음)", + "vaporPressure": "0.053 mmHg (25℃)", + "vaporDensity": "4.1", + "explosionRange": "0.9~8.4%", + "nfpa": { + "health": 2, + "fire": 1, + "reactivity": 0, + "special": "" + }, + "hazardClass": "용해(D), 해상수거 불가", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "해수에 완전 혼화", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", + "msds": { + "hazard": "피부/안구 자극, 호흡기 자극", + "firstAid": "흡입: 기침, 구역질, 인후염 → 신선한 공기, 산소공급, 인공호흡. 피부: 발진, 통증, 염증 → 다량의 물 이용 20분 이상 세척. 안구: 충혈, 통증 → 다량의 물 이용 20분 이상 세척. 경구: 메스꺼움, 설사, 구토 등 위장 자극 → 물 이용 세척, 구토 유발 금지.", + "fireFighting": "복합가스탐지기 이용 농도 확인. 분무주수 또는 내알코올 포말 이용.", + "spillResponse": "주변 해상 통제. 위험하지 않다면 유출 차단. 해수에 유출 시 용해되어 해상수거 불가.", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "3", + "ibcTankType": "2G", + "ibcDetection": "R", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6,\n16.2.6", + "emsCode": "F-A, S-A", + "emsFire": "F-A", + "emsSpill": "S-A", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MDEA", + "name": "METHYL DIETHANOLAMINE", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 107, + "abbreviation": "MEA", + "nameKr": "모노에탄올아민", + "nameEn": "Monoethanolamine", + "synonymsKr": "아미노에탄올 / 2-아미노에탄올 / 2-에탄올아민 / 에틸로아민 / 모노에탄올아민", + "synonymsEn": "Monoethanolamine / MONOETHANOLAMINE / 2-Aminoethan-1-ol / 2-AMINOETHANOL / Olamine / Aminoethanol / GLYCINOL / 2-Ethanolamine / 2-HYDROXYETHYLAMINE / Ethanolamine, 99%, H2O 0.5% max / MEA 90", + "unNumber": "2491", + "casNumber": "141-43-5", + "transportMethod": "포장(8급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "세정제류, 고무촉진제. 수성물감류", + "state": "점성액체", + "color": "무색. 투명", + "odor": "암모니아 냄새", + "flashPoint": "85.86℃", + "autoIgnition": "410TC", + "boilingPoint": "170.8’C", + "density": "1.02", + "solubility": "용해", + "vaporPressure": "0.4mmHg(25t:)", + "vaporDensity": "2.11", + "explosionRange": "3~23.5%", + "nfpa": { + "health": 3, + "fire": 2, + "reactivity": 0, + "special": "" + }, + "hazardClass": "유해액체물질/Y", + "ergNumber": "153", + "idlh": "0 분)", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", + "msds": { + "hazard": "독성, 부식성, 피부/안구 심각한 손상, 연소 시 유독가스 발생", + "firstAid": "흡입노출 • 즉시 의료조치 피부접촉 • 피부를 물로 씻을 것, 화상의 경우 다량의 찬물로 씻을 것 °바=지 안구접촉 • 몇 분간 물로 조심해서 씻을 것, 콘택트렌즈 제거 경구섭취 • 입을 씻어낼 것, 토하게 하지 말 것, 긴급 의료조치 초동 대응방법 보호복 호흡구 보안경 보호장갑 기타장비 대응장비 3,4형식 (C급) 방독마스크(반면,전면) O 열화샹카메라 1형식 (1B) 공기호홉기 아 넡화 J 가배다 I 초기 이격거리(m) 50 방호거리(m) 50 | 해상유출시 > 유출물질은 피부화상, 심각햔 눈 손상 등 인체노출 시 매우 유해한 물질이므로 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박 통제 > 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용(사고선 군접 시 1B급 착용), 증기흡입 과 피부와 눈에 접촉을 피할 것 ' 유출물질온 용해되므로 방제조치 불필요 > 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적얀 모니터링 1 화재 시대피거리(m) 800 1 + 화재 ■폭발시 > 유출물질은 연소시 유독가스 방출, 풍상에 위치, 최소 이격거리 유지하고 내알콜포 이용 화재진압 ►", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 내알코올 포말.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 분무주수로 증기운 이동 억제.", + "exposure": "TWA 3 ppm, IDLH 30 ppm", + "regulation": "유해화학물질관리법" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-A, S-B", + "emsFire": "F-A", + "emsSpill": "S-B", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MEA", + "name": "MONOETHANOLAMINE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EAMN", + "name": "Ethanol amine", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MEA", + "name": "Monoethanolamine", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NEAMN", + "name": "n-Ethanol amine", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 108, + "abbreviation": "MACE", + "nameKr": "메틸 아세테이트(초산메틸)", + "nameEn": "Methyl acetate", + "synonymsKr": "아세트산 메틸 / 아세트산메틸 / 데보톤 / Methylethanoate,아세트산메틸 / 메틸에탄오에이트 / 아세트산,메틸에스테르 / 초산메틸 / 테레톤 / 초산메틸 / 메틸아세테이트 / 메틸 아세테이트", + "synonymsEn": "Methyl acetate / ACETIC ACID METHYL ESTER / CH3COOCH3 / methylethanoate / Acetate de methyle / Metile / Devoton / Tereton / Methylacetat / Methyl ethanoate / methyle(acetatede)", + "unNumber": "", + "casNumber": "79-20-9", "transportMethod": "", "sebc": "", - "usage": "주로 중유에 혼합하거나 바이오 디젤 원료 사용", + "usage": "", "state": "", "color": "", "odor": "", @@ -12275,6 +10887,400 @@ "exposure": "", "regulation": "" }, + "ibcHazard": "P", + "ibcShipType": "3", + "ibcTankType": "2G", + "ibcDetection": "R", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.19.6", + "emsCode": "", + "emsFire": "", + "emsSpill": "", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MA", + "name": "METHYL ACETATE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MEAC", + "name": "METHYL ACETATE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MACE", + "name": "Methyl acetate", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 109, + "abbreviation": "DEGMM", + "nameKr": "디에틸렌 글리콜 모노메틸 에테르", + "nameEn": "Diethylene glycol monomethyl ether", + "synonymsKr": "디에틸렌 글리콜 모노메틸 에테르 / 2-(메톡시에톡시)에탄올DI / 다이에틸렌글리콜모노메틸에테르 / 디에틸렌글리콜모노메틸에테르 / 메틸디글리콜 / 2-(2-메톡시에톡시)에탄올 / 2-(2-메톡시에톡시)에탄올(메톡시디글라이콜) / 다이에틸렌글라이콜모노메틸에터 / 메톡시다이글리콜 / 다이에틸렌글리콜모노메틸에테르 / 다이에틸렌 글리콜 메틸 에테르 / 2-(2-메톡시에톡시에탄올) / 메틸 다이옥시톨 / 메틸 카비톨 / 다이에틸렌 글리콜 메틸 에테르 / 다이글리콜 모노메틸 에테르 / 3,6-디옥사-1-헵탄올 / 에탄올, 2-(2-메톡시에톡시) - / 에탄올, 2,2'-옥시비스-, 모노에틸 에테르 / 에틸렌 다이글리콜 모노메틸 에테르 / 메톡시다이글리콜 / 2-(2-메톡시에톡시)에탄올 / 베타-메톡시-베타'-하이드로다이에틸 에테르 / 메틸 칼비톨 / 메틸 다이골 / 메틸 다이옥시톨 / 메틸다이글리콜", + "synonymsEn": "Diethylene glycol monomethyl ether / DM / 2-(2-METHOXYETHOXY)ETHANOL / degme / METHYL CARBITOL / METHYLDIGLYCOL / METHOXYETHOXYETHANOL / Ethanol,2-(2-methoxyethoxy)- / DIETHYLENE GLYCOL METHYL ETHER / 2-(2- / DIEGME / DIETHYLENE GLYCOL METHYL ETHER / DIGLYCOL MONOMETHYL ETHER / 3,6-DIOXA-1-HEPTANOL / DOWANOL DM / Ektasolve DM / ETHANOL, 2-(2-METHOXYETHOXY)- / ETHANOL, 2,2'-OXYBIS-, MONOMETHYL ETHER / ETHYLENE DIGLYCOL MONOMETHYL ETHER / Jeffersol DM / MECB / METHOXYDIGLYCOL / 2-(2-METHOXYETHOXY)ETHANOL / BETA-METHOXY-BETA'-HYDROXYDIETHYL ETHER / METHYL CARBITOL / METHYL DIGOL / METHYL DIOXITOL / Methyl Karbitol (Czech) / POLY-SOLV DM / METHYLDIGLYCOL / DGME / USEPA / OPP Pesticide Code: 042204", + "unNumber": "2810", + "casNumber": "111-77-3", + "transportMethod": "포장(6.1급), 산적액체(Z류)", + "sebc": "D (Dissolver)", + "usage": "유해액체물질/Z 무색의 약하고 좋은 냄새가 나는 액체로서 주로 졔트기 연료, 페인트, 잉크로 사용됨. 해상유출 시에는 용해되므로 방제조치는 불필요함. 눈 손상. 자극 등 인체 노출 시 유해성이 있으므로 방독마스크, 화학", + "state": "액체", + "color": "무색", + "odor": "약하고 좋은냄새", + "flashPoint": "93‘C", + "autoIgnition": "215℃", + "boilingPoint": "1931c", + "density": "1.035", + "solubility": "용해", + "vaporPressure": "0.25mmHg(25t)", + "vaporDensity": "4.14", + "explosionRange": "1.38~22.7%", + "nfpa": { + "health": 1, + "fire": 1, + "reactivity": 0, + "special": "" + }, + "hazardClass": "유해액체물질/Z", + "ergNumber": "153", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", + "msds": { + "hazard": "독성 (생식/혈액), 피부 자극", + "firstAid": "흡입: 신선한 공기, 산소공급, 인공호흡. 피부/안구: 물로 세척. 경구: 의료조치.", + "fireFighting": "복합가스탐지기 이용 농도 확인. 분무주수 또는 내알코올 포말.", + "spillResponse": "점화원 제거. 주변 해상 통제.", + "exposure": "TWA 0.1 ppm", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-A, S-A", + "emsFire": "F-A", + "emsSpill": "S-A", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MDG", + "name": "DIETHYLENE GLYCOL MONOMETHYL ETHER", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DEGMM", + "name": "Diethylene glycol monomethyl ether", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MCTOL", + "name": "Methyl Carbitol", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 110, + "abbreviation": "MEG", + "nameKr": "모노에틸렌 글리콜", + "nameEn": "Monoethylene glycol", + "synonymsKr": "1,2-다이하이드록시에탄 / 1,2-에탄디올 / 에틸렌 알코올 / 글리콜 / 모노에틸렌 글리꼴", + "synonymsEn": "Ethylene glycol / Monoethylene glycol / dowtherm / 1,2-Ethanediol / HOCH2CH2OH / 2-Hydroxyethanol / Antifrogen N / Dihydroxyethane / Zerex / Glygen / Glykol", + "unNumber": "3082", + "casNumber": "107-21-1", + "transportMethod": "산적액체(Z류)", + "sebc": "D (Dissolver)", + "usage": "플라에스터, 폴리에스터, 폴리에스터수지,\n흡습제, 가소제, 계면활설제, 합성섬유, 화장품,\n화약류의 제조", + "state": "점성 액체", + "color": "무색, 투명", + "odor": "무취", + "flashPoint": "lire", + "autoIgnition": "398℃", + "boilingPoint": "198℃", + "density": "1.1", + "solubility": "1,000 g/L (17.5℃)", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "2.14", + "explosionRange": "3.2~15.3%", + "nfpa": { + "health": 2, + "fire": 1, + "reactivity": 0, + "special": "" + }, + "hazardClass": "유해액체물질/Y", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "자료없음", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", + "msds": { + "hazard": "독성 (섭취 시 신장/중추신경계), 피부/안구 자극", + "firstAid": "흡입노출 • 산소공급, 인공호흡, 의료조치 피부접촉 • 20분 이상 물에 피부와 눈을 씻어낼 것 안구접촉 • 20분 이상 물에 피부와 눈을 씻어낼 것 경구섭취 • 의료조치 초동 대응방법 대응장비 보호복 호흡구 보안경 즈 3,4#식(6급厂『방독마스크(반면, 전면f ’ 'O 丄 보호장갑 : 기탁장비 ― 丁 ’’ \"o \"열호상카메라 1 초기 이격거리(m) 자료없음 방호거리 (m) 자료없음 1 해상유출시 * 유출물질은 생식기능에 악영향과 인체노출 시 중대한 독성을 일으킬 수 있으므로, 모든 출동세력 풍상에 위치, 주변선박통제 ► 출동 경비정(방제정) 사고선 접근 시 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용, 증기홉입과 피부와 눈에 접촉을 피할 것 > 유출물질은 용해되므로 방제조치 불필요 > 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 1 화재 시대피거리(m) 자료없음 1 + > 유출물질은 연소시 유독가스 방출, 풍상에 위치, 내알콜포 이용 화재진압 화재.포발사 ’ 열화상카메라 운용(결과전파), 소화포 이용 사고선 냉각조치 할 것 - 직수분사 금지(화재를 번지게 할 수 있음) ► 안전이 확보되면, 화", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제.", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-A, S-A", + "emsFire": "F-A", + "emsSpill": "S-A", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MEG", + "name": "MONO ETHYLENE GLYCOL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CEG", + "name": "Crude ethlene glycol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MEG", + "name": "Monoethylene glycol", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 111, + "abbreviation": "MEK", + "nameKr": "메틸에틸케톤", + "nameEn": "METHYL ETHYLE KETONE", + "synonymsKr": "2-부탄온 / 3-부탄온 / 메틸아세톤 / 부탄은 / 에틸메틸케톤 / 메틸에틸케톤 / 부탄온 / 솔벤트#3(SCOTCH-GRIP / 스타본드C-신나 / 제거제 / 크리너(OATEYCLEANER / 2-부탄논 / 메틸에틸케톤 / 엠이케이 / 메틸 에틸 케톤 / 부탄-2-온 / 옥소부탄 / 아세톤, 메틸- / 뷰탄온 / 2-뷰탄온 / 3-뷰탄온 / 살충제 코드 : 044103 / EPA 살충제 화학 코드 044103 / 메에트코 / 2-옥소뷰탄 / 뷰탄온 공업용 / 레독스 / 엑손 MEK / 파크 / 켐포트 3108LD / 자솔 MEK", + "synonymsEn": "2-Butanone / MEK / METHYL ETHYL KETONE / BUTANONE / Butan-2-one / ETHYL METHYL KETONE / 2-Butanone,99% / 2-Butanon / METHYL ETHYL KETONE (MEK)(BUTANONE) / Butanon / MEK = 2-BUTANONE / Acetone, methyl- / Aethylmethylketon (GERMAN) / Butanone / 2-Butanone / 3-Butanone / Butanone 2 (FRENCH) / Caswell No 569 / Pesticide code: 044103 / EPA Pesticide chemical code 044103 / Ethylmethylcetone (French) / Ethylmethylketon (DUTCH) / FEMA no 2170 / Meetco / MEK / Metiletilcetona (Spanish) / Metiletilchetone (ITALIAN) / Metyloetyloketon (POLISH) / AI3-07540 (USDA) / 2-Oxobutane / Butanone technical / BP, 34170, 34171, 34172 / Shell 83202 / Era MEK / Redox / Exxon MEK / Parks / Chemport 3108LD / Jasol MEK", + "unNumber": "1193", + "casNumber": "78-93-3", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "페인트, 잉크, 합성고무, 마그네틱 테이프 제조", + "state": "액체", + "color": "무색", + "odor": "아세톤", + "flashPoint": "-9’C", + "autoIgnition": "505℃", + "boilingPoint": "79.5℃", + "density": "0.81", + "solubility": "223g/L", + "vaporPressure": "90.6mmHg(25'C)", + "vaporDensity": "2.4", + "explosionRange": "1.8~11.5%", + "nfpa": { + "health": 1, + "fire": 4, + "reactivity": 0, + "special": "" + }, + "hazardClass": "유해액체물질/Z", + "ergNumber": "127", + "idlh": "3,000 ppm", + "aegl2": "2,700 ppm", + "erpg2": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발용해 (ED)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", + "msds": { + "hazard": "고인화성, 중추신경계, 피부/안구 자극", + "firstAid": "흡입노출 - 토하게 하지 말 것, 호흡이 힘든 경우 산소공급, 인공호흄 피부접촉 • 비누와 물로 피부를 씻을 것 안구접촉 • 몇 분간 물로 씻을 것, 콘택트렌즈 제거, 지속된 자극 시 병원진료 경구섭취 •긴급의료조치", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제. 분무주수로 증기운 이동 억제.", + "exposure": "TWA 200 ppm, STEL 300 ppm, AEGL-2 2,700 ppm, IDLH 3,000 ppm", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MEK", + "name": "METHYL ETHYLE KETONE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MEK", + "name": "Methyl ethyl ketone", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 112, + "abbreviation": "METHA", + "nameKr": "메틸 알코올", + "nameEn": "Methyl alcohol", + "synonymsKr": "메틸알코올 / MMA / MME / 메틸아크릴산 / 다이아콘 / 페갈렌", + "synonymsEn": "Methanol / jiachun / Methyl alcohol / CH3OH / Carbinol / metanol / ACID RED / Methanol dried / METHYL RED INDICATOR / METHYL RED MIXED SOLUTION / METHYL RED, SPIRIT SOLUBLE", + "unNumber": "1230", + "casNumber": "67-56-1", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "부동액, 폴리머의 용매와 용매 보강제 급성독성-경구(구분3) 특정표적장기독성(1회노출) 급성독성-경피 (구분3) - 구분 1 풀질툭성 I", + "state": "액체", + "color": "무색", + "odor": "알코올냄새", + "flashPoint": "ire", + "autoIgnition": "464℃", + "boilingPoint": "64.7\\:", + "density": "0.79", + "solubility": "용해", + "vaporPressure": "127mmHg(25t:)", + "vaporDensity": "1.11", + "explosionRange": "5.5~44%", + "nfpa": { + "health": 1, + "fire": 4, + "reactivity": 0, + "special": "" + }, + "hazardClass": "유해액체물질/Y", + "ergNumber": "131", + "idlh": "0 분)", + "aegl2": "1,700 ppm", + "erpg2": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "증발용해 (ED)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", + "msds": { + "hazard": "독성, 인화성(F), 해상수거 불가", + "firstAid": "흡입노출 • 신선한 공기가 있는 곳으로 이동, 의료조치 피부접촉 • 비누와 물로 씻을 것, 의학조치 받을 것 얀구접촉 • 몇 분간 물로 조심해서 씻을 것, 콘택트렌즈 제거 경구섭취 • 구강대구강법 인공호흡 금지. 긴급 의료조치 초통 대옹방법 대응장비 보호복 호홈구 보안경 보호장갑 기타장비 3,4형식 (C급) 방독마스크(반면.전면) ① 으 옄화상카메라 1형식(1B) 공기호홉기 설화各『버다 1 초기 이격거리(m) 50 방호거리(m) 50 | 해상유출시 ► 유출물질은 생식기능에 악영향과 1회 노출에도 중대한 독성을 일으킬 수 있고, 고인화성 물질로 증기의 이동에 의한 폭발가능성이 높으며, 증기흠입, 눈, 피부 접촉 시 유해하므로 모든 출동세력 풍상에 위치. 최소 50m 이격거리 유지, 주변선박 통제 (흡연, 불꽃, 스파크 등 모든 점화원 체거) > 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3,4형식 보호의 착용(사고선 근접 시 1B이상 착용). 증기흡입과 피부와 눈에 접촉을 피할 것 ’ 유출물질은 증발. 용해되므로 방제조치 불필요 > 화학방제함 유출물질 농도 탐지. 안■전확보 시까지 지속적인 모니터링 1 화", + "fireFighting": "내알코올성 포말 또는 분무주수. 화재진압 후에도 사고선 냉각 조치.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 분무 주수로 증기운 이동 억제.", + "exposure": "TWA 200 ppm, STEL 250 ppm", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MEOH", + "name": "METHYL ALCOHOL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "METHA", + "name": "METHYL ALCOHOL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "METHA", + "name": "Methyl alcohol", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 113, + "abbreviation": "MHA", + "nameKr": "2-하이드록시-4-(메틸싸이오)뷰탄산", + "nameEn": "METHIONINE HYDROXY ANALOGUE", + "synonymsKr": "뮤탄산,2-하이드록시-4-(메틸싸이오)- / MHA산 / 메티오닌 하이드록시 아날로그", + "synonymsEn": "2-HYDROXY-4-(METHYLTHIO)BUTYRIC ACID / HMTBA / alimet / mha-fa / mhaacid / HMTBA-13C4 / Desmenidol-13C4 / (68-72% in Water) / Ipradol (feed grade) / MHA acid (feed grade) / methioninehydroxyanalog", + "unNumber": "3265", + "casNumber": "583-91-5", + "transportMethod": "", + "sebc": "", + "usage": "농업용 사료 보충물 令 험 해 류 위 유 분 금속부식성물질(구분1) 피부부식성/자극성(구분2) 심한 눈 손상/자극성(구분1)", + "state": "액체", + "color": "밝은갈색", + "odor": "독특한황냄새", + "flashPoint": "121.11℃", + "autoIgnition": "160t:", + "boilingPoint": "290℃", + "density": "1.21-1.23", + "solubility": "용해(혼합됨)", + "vaporPressure": "(물 17.5imiHg)", + "vaporDensity": "5.19", + "explosionRange": "", + "nfpa": { + "health": 1, + "fire": 1, + "reactivity": 0, + "special": "" + }, + "hazardClass": "유해액체물질/Z", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "용해 (D)", + "ppeClose": "", + "ppeFar": "", + "msds": { + "hazard": "", + "firstAid": "흡입노출 - 의료기관의 진찰, 호흡이 힘든 경우 산소공급, 인공호흡 물칠특성 인체 유해성 화재 ' 침강 용해 증발 증기밀도 (위험성) (S=1) (물) (물중기압) (공기=1) 0(^0 0 누 Q (WS) 으 (용혜) (낯옹) “° 인화점 121.11仁 발화점 160t: 끓는점 290仁 수용해도 용해(혼합됨) 상온상태 액체 색상 밝은갈색 냄새 독특한황냄새 바중 1.21-1.23 증기압 기 mmH9(2(rc) 휘발성 낮음 점도 105cSt(20t) 증기밀도 5.19 급성독성 TWA(8 시간) 경구(LD50) 경피 (LD50) 흡입 (LC50) 노출기준 STEL(단시간) 자g 어 O 3.170 >2,000 자료없음 노M곜 퍼 ntg/kg mg/kg 러 idlH(30 분) 직접 위험농도 일반증상 눈에부식성이며피부에 보통 자극임 홈입 호흡기 자극, 현기증. 두통, 메스꺼움 피부 피부자극 안구 눈 자극및 손상 경구 섭취하면 위험함 피부접촉 • 피부를 물로 씻을 것, 화상의 경우 즉시 찬물로 식힐 것 옹급조치 안구접촉 • 몇 분간 물로 조심해서 씻을 것, 콘택트렌즈 제거 경구섭취 •의학적인조치 초동", + "fireFighting": "", + "spillResponse": "", + "exposure": "", + "regulation": "" + }, "ibcHazard": "", "ibcShipType": "", "ibcTankType": "", @@ -12287,23 +11293,109 @@ "emsFirstAid": "", "cargoCodes": [ { - "code": "LCO", - "name": "LIGHT CYCLE OIL", - "company": "", - "source": "화물적부도" + "code": "MHA", + "name": "METHIONINE HYDROXY ANALOGUE", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 175, - "abbreviation": "LSMGO", - "nameKr": "저유황 경유", - "nameEn": "LOW SULFUR MARINE GAS OIL", - "synonymsEn": "", - "synonymsKr": "", + "id": 114, + "abbreviation": "MIBK", + "nameKr": "메틸 이소부틸 케톤", + "nameEn": "Methyl isobutyl ketone", + "synonymsKr": "글명:메틸이소부틸케톤 / 메틸아이소부틸케톤 / 2-메틸프로필메틸케톤 / 헥손 / 4-메틸-2-펜탄온 / 메틸아이소뷰틸케톤 / 메틸이소부틸케톤 / 메틸이소뷰틸케톤 / 이소부틸메틸케톤 / 이소프로필아세톤 / 4-메틸-2-펜타논 / 메틸이소부틸케톤 / 미비케이 / 메틸 아이소부틸 케톤 / 헥손 / 아이소부틸 메틸 케톤 / 아이소프로필아세톤 / 케톤, 아이소부틸 메틸 / 4-메틸-2-오쏘펜탄 / 2-메틸-4-펜타논 / 4-메틸펜타논-2 / 2-메틸프로필 메틸 케톤 / 2-펜타논, 4-메틸- / 헥사논 / 4-메틸-2-펜타논 / 헥손, 아이소 프로필아세톤 / 2-펜타논, 4-메틸-", + "synonymsEn": "4-Methyl-2-pentanone / MIBK / METHYL ISOBUTYL KETONE / 4-METHYLPENTAN-2-ONE / MIK / MIKB / Hexon / ISOBUTYL METHYL KETONE / HEXONE / 4-Methyl-2-pen / ISOPROPYLACETONE / AI3-01229 / Caswell No. 574AA / EPA Pesticide Chemical Code 044105 / FEMA NUMBER 2731 / HEXON (CZECH) / HEXONE / ISOBUTYL-METHYLKETON (CZECH) / ISOBUTYL METHYL KETONE / ISOPROPYLACETONE / KETONE, ISOBUTYL METHYL / METHYL-ISOBUTYL-CETONE (FRENCH) / METHYLISOBUTYLKETON (DUTCH, GERMAN) / 4-METHYL-2-OXOPENTANE / 4-METHYL-2-PENTANON (CZECH) / 4-METHYL-PENTAN-2-ON (DUTCH, GERMAN) / 2-METHYL-4-PENTANONE / 4-METHYLPENTANONE-2 / 2-METHYLPROPYL METHYL KETONE / METILISOBUTILCHETONE (ITALIAN) / 4-METILPENTAN-2-ONE (ITALIAN) / METYLOIZOBUTYLOKETON (POLISH) / MIBK / MIK / 2-PENTANONE, 4-METHYL- / SHELL MIBK / HEXANONE / 4-METHYL-2-PENTANONE / hexone, isopropylacetone / 2-pentanone, 4-methyl- / TECH00001327 / UL00000120 / TECH00009291 / AR00002219", + "unNumber": "1245", + "casNumber": "108-10-1", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "유해액체물질/Z 무색의 민旦 같은 냄새가 나는 액체로서 주로 페인트 용매, 니스, 화장품에 사용됨. 해상유출 시에는 부유하면서 증 발, 용해되므로 방제조치는 불필요함 고인화성 물질로 화재폭발 위험성이 높으므로 점화원 제거와 선박접근 시 주 의가 요구되어짐. 증기흡입 시 유해하고, 두통, 현기증, 호흡기 자극을 유발할 수 있으므로 방독마스크, 화학", + "state": "액체", + "color": "무색", + "odor": "민트같은냄새", + "flashPoint": "13。€", + "autoIgnition": "448“C", + "boilingPoint": "116.5“C", + "density": "0.81", + "solubility": "19g/L(25’C)", + "vaporPressure": "19.9mmHg(25t)", + "vaporDensity": "3.5", + "explosionRange": "1.2~8%", + "nfpa": { + "health": 1, + "fire": 4, + "reactivity": 0, + "special": "" + }, + "hazardClass": "유해액체물질/Z", + "ergNumber": "127", + "idlh": "500 ppm", + "aegl2": "2,300 ppm", + "erpg2": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "휘발성", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", + "msds": { + "hazard": "고인화성, 중추신경계, 피부/안구 자극", + "firstAid": "흡입노출 • 의료조치, 산소공급, 인공호흡 피부접촉 • 물에 씻을 것, 긴급 의료조치, 화상의 경우 다량의 찬물로 씻을 것 안구접촉 • 긴급 의료조치. 20분 이상 흐르는 물에 씻을 것 경구섭취 • 의료조치 초통대응방법 보호복 3.4형식 (C급) 1 형식 (1B) 대옹장비 해상유출시 + 화재 •폭발시 호홉구 보안경 보호장갑 기타장비 방독=3’전면’ O ◦ 열화상카메라 O 시오\"S■•시 I 초기이격거리 (m) 50 방호거리 (m) 300 | ► 유출물질은 고인화성 물잘로 증기의 이동에 의한 폭발가능성이 높으며, 증기 홉입 시 유해하고, 두통, 현기증, 호흡 기를 자극할 수 있으므로 모든 출동세력 풍상에 위치. 최소 50m 이격거리 유지. 주변선박 통제 (흡연. 불꽃. 스파크 등 모든 점화원 제거) ’ 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3,4형식 보호의 착용(사고선 근접 시 1B이상 착용). 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 부유하면서 증발, 용해되므로 방제조치 불필요 > 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 I 화재 시 대피거리(m) — — 800 —", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제.", + "exposure": "TWA 50 ppm, AEGL-2 2,300 ppm, IDLH 500 ppm", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "3", + "ibcTankType": "2G", + "ibcDetection": "R", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "MIBK", + "name": "METHYL ISOBUTYL KETONE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MIK", + "name": "METHYL ISOBUTYL KETONE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MIBK", + "name": "Methyl isobutyl ketone", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PGMEA", + "name": "P&G Methyl ethyl acetate", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 115, + "abbreviation": "MOLRF", + "nameKr": "설탕 찌꺼기", + "nameEn": "Molasses RF", + "synonymsKr": "당밀 / 당밀 / molasses / 당밀", + "synonymsEn": "Molasses / tangmi / Molasses / Cane syrup / CANEMOLASSES / beet molasses / Molasses, beet / Einecs 270-698-1 / Beet sugar molasses / Molasses ISO 9001:2015 REACH", "unNumber": "", - "casNumber": "77650-28-3", + "casNumber": "68476-78-8", "transportMethod": "", "sebc": "", "usage": "", @@ -12353,1383 +11445,127 @@ "emsFire": "", "emsSpill": "", "emsFirstAid": "", - "cargoCodes": [ - { - "code": "LSMGO", - "name": "LOW SULFUR MARINE GAS OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 176, - "abbreviation": "LYE", - "nameKr": "수산화나트륨", - "nameEn": "SODIUM HYDRATE, SOLID", - "synonymsEn": "Sodium hydroxide / NaOH / Caustic soda / Caustic Soda flakes / Caustic soda pearl / CAUSTIC FLAKES / Natriumhydroxid / IODINE SOLUTION / FLAKE CAUSTIC SODA / Hydroxyde de sodium / SODIUM HYDROXIDE, REAGENT GRADE, 97%, FL", - "synonymsKr": "수산화나트륨 / WHITE가성용액 / 나트륨수산화물리퀴드 / 히드록시나트륨용액 / 가성소다,고체 / 가성소다,과립상 / 가성소다,용구 / 가성소다,건조 / 나트륨수산화물,고체 / 나트륨수화물 / 나트륨수산화물,건조고체,플레이크,용구,또는과립상 / 소다알칼리액 / 알칼리액 / 화이트가성 / 0.025N-수산화나트륨(0.025M) / 0.05N-수산화나트륨(0.05M) / 0.1N(0.1M)수산화나트륨 / 0.25M수산화나트륨 / 0.2N-수산화나트륨(0.2M) / 0.5N-수산화나트륨(0.5M) / 1N-수산화나트륨", - "unNumber": "1823 1824", - "casNumber": "1310-73-2", - "transportMethod": "", - "sebc": "", - "usage": "산성물질 중화, 비누 및 세제 제조, 섬유 가공 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "LYE", - "name": "SODIUM HYDRATE, SOLID", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 177, - "abbreviation": "MACE", - "nameKr": "메틸 아세테이트", - "nameEn": "METHYL ACETATE", - "synonymsEn": "Ethyl acetate / EtOAc / ETOH / ALCOHOL / yisuanyizhi / ETHYL ETHANOATE / ACETIC ACID ETHYL ESTER / ETHANOL ABSOLUTE / METHYLATED SPIRIT / CH3COOC2H5 / ACETIC ETHER", - "synonymsKr": "아세트산에틸 / 메틸아세틸에스테르 / 비네가나프타 / 아세톡시에탄 / 아세트에테르 / 아세트에스테르 / 아세트산에틸에스테르 / 아세티딘 / 에틸에탄오에이트 / 에틸아세트산 / 초산에틸 / 초산에틸,무수물 / 초산에틸에스테르 / 무수에탄올 / 초산에틸 / 에틸아세테이트 / 아세테이트 에틸 / 아세트산 에틸", - "unNumber": "1231", - "casNumber": "141-78-6", - "transportMethod": "", - "sebc": "", - "usage": "휘발성 용매 사용 접착제, 페인트, 매니큐어 리무버 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "F", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MACE", - "name": "METHYL ACETATE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 178, - "abbreviation": "MCB", - "nameKr": "클로로벤젠", - "nameEn": "MONO CHLORO BENZENE", - "synonymsEn": "ChlorobenzenE / MONOCHLOROBENZENE / Chlorobenzen / Chlorbenzol / Chlorbenzene / CHLOROBENZOL / PHENYL CHLORIDE / cp27 / NSC 8433 / U.N. 1134 / orobenzene", - "synonymsKr": "클로로벤젠 / 모노클로로벤졸 / 벤젠,클로로 / 테트로신SP / 모노클로로벤젠 / 벤젠염화물 / 페닐염화물 / 벤젠 염화물 / 벤젠, 클로로 / 테트로신 SP / 페닐 염화물", - "unNumber": "1134", - "casNumber": "108-90-7", - "transportMethod": "", - "sebc": "", - "usage": "중간체, 용매, 고비점 용제 등 사용 주로 제초제, 염료, 고무, 의약품 등 활용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MCB", - "name": "MONO CHLORO BENZENE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 179, - "abbreviation": "MC", - "nameKr": "디클로로메탄", - "nameEn": "METHYLENE CHLORIDE", - "synonymsEn": "Dichloromethane / DCM / METHYLENE CHLORIDE / CH2Cl2 / Methylene dichloride / Dichlormethan / F30 / Methylenchlorid / DichL / Metaclen / Dichlorome", - "synonymsKr": "염화메틸렌 / 솔라에스틴 / 솔메틴 / 에어로텐MM / 이염화메틸렌 / TC523에폭시 / 나르코틸 / 다이클로로메테인 / 디클로로메탄 / 락코메틸렌염화물 / 메탄,디클로로- / 설비세척솔벤트 / 에어로텐(R)MM솔벤트(AEROTHENE / 이염화메탄 / 다이클로로메탄 / 메틸렌 다이클로라이드 / 메틸렌 클로라이드", - "unNumber": "1593", - "casNumber": "75-09-2", - "transportMethod": "", - "sebc": "", - "usage": "페인트 제거제, 접착제 제거제, 부품 세척제 등 사용 유연 우레탄 폼, 산업용 접착제, 플라스틱 생산", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MC", - "name": "METHYLENE CHLORIDE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 180, - "abbreviation": "MDEA", - "nameKr": "N-메틸다이에탄올아민", - "nameEn": "METHYL DIETHANOLAMINE", - "synonymsEn": "N-Methyldiethanolamine / MDEA / METHYL DIETHANOLAMINE / Methyldiethanolamin / Methyliminodiethanol / FC MDEA / usafdo-52 / USAF DO-52 / Mdea (diol) / Diethanolmethylamine / N-Methyldiethanolami", - "synonymsKr": "N-메틸다이에탄올아민 / N-메틸디에탄올아민 / 메틸디에탄올아민 / 메틸다이에탄올아민 / 디에탄올메틸아민", - "unNumber": "-", - "casNumber": "105-59-9", - "transportMethod": "", - "sebc": "", - "usage": "가스처리, 의약품, 수처리, 직물처리, 코팅 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "T", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6, 16.2.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MDEA", - "name": "METHYL DIETHANOLAMINE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 181, - "abbreviation": "MDO", - "nameKr": "선박용 경유", - "nameEn": "MARINE DISEL OIL", - "synonymsEn": "MARINE DISEL OIL", - "synonymsKr": "선박용 경유", - "unNumber": "3082", - "casNumber": "77650-28-3", - "transportMethod": "", - "sebc": "", - "usage": "선박 연료유 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MDO", - "name": "MARINE DISEL OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 182, - "abbreviation": "MEA", - "nameKr": "에탄올아민", - "nameEn": "MONOETHANOLAMINE", - "synonymsEn": "Monoethanolamine / MONOETHANOLAMINE / 2-Aminoethan-1-ol / 2-AMINOETHANOL / Olamine / Aminoethanol / GLYCINOL / 2-Ethanolamine / 2-HYDROXYETHYLAMINE / Ethanolamine, 99%, H2O 0.5% max / MEA 90", - "synonymsKr": "2-아미노에탄올 / 2-아미노에타놀 / 2-에타놀아민 / 글리시놀 / 아미노에타놀 / 콜올아민 / 2-히드록시에탄아민 / 2-히드록시에틸아민 / 모노에타놀아민 / 베타-아미노에타놀 / 베타-아미노에틸알코올 / 베타-에타놀아민 / 베타-히드록시에틸아민 / 에타놀,2-아미노- / 에탄올아민 / 에틸올아민 / 모노에탄올아민 / 2-하이드록시에틸아민 / 콜라민", - "unNumber": "2491", - "casNumber": "141-43-5", - "transportMethod": "", - "sebc": "", - "usage": "가스 세정, 세제, 계면활성제, 유화제, 광택제 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MEA", - "name": "MONOETHANOLAMINE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 183, - "abbreviation": "MA", - "nameKr": "초산메틸", - "nameEn": "METHYL ACETATE", - "synonymsEn": "Methyl acetate / ACETIC ACID METHYL ESTER / CH3COOCH3 / methylethanoate / Acetate de methyle / Metile / Devoton / Tereton / Methylacetat / Methyl ethanoate / methyle(acetatede)", - "synonymsKr": "/ 메틸 아세테이트 / 아세트산 메틸 / 아세트산메틸 / 데보톤 / 아세트산메틸 / 메틸에탄오에이트 / 아세트산,메틸에스테르 / 초산메틸 / 테레톤 / 초산메틸 /", - "unNumber": "1231", - "casNumber": "79-20-9", - "transportMethod": "", - "sebc": "", - "usage": "래커, 페인트 용제, 매니큐어 제거제, 향료 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "F", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MA", - "name": "METHYL ACETATE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 184, - "abbreviation": "MEAC", - "nameKr": "메틸아세테이트", - "nameEn": "METHYL ACETATE", - "synonymsEn": "Methyl acetate / ACETIC ACID METHYL ESTER / CH3COOCH3 / methylethanoate / Acetate de methyle / Metile / Devoton / Tereton / Methylacetat / Methyl ethanoate / methyle(acetatede)", - "synonymsKr": "/ 메틸 아세테이트 / 아세트산 메틸 / 아세트산메틸 / 데보톤 / 아세트산메틸 / 메틸에탄오에이트 / 아세트산,메틸에스테르 / 초산메틸 / 테레톤 / 초산메틸 /", - "unNumber": "1231", - "casNumber": "79-20-9", - "transportMethod": "", - "sebc": "", - "usage": "래커, 페인트 용제, 매니큐어 제거제, 향료 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "F", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MEAC", - "name": "METHYL ACETATE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 185, - "abbreviation": "MEC", - "nameKr": "디클로로메탄", - "nameEn": "METHYLENE CHLORIDE", - "synonymsEn": "Dichloromethane / DCM / METHYLENE CHLORIDE / CH2Cl2 / Methylene dichloride / Dichlormethan / F30 / Methylenchlorid / DichL / Metaclen / Dichlorome", - "synonymsKr": "염화메틸렌 / 솔라에스틴 / 솔메틴 / 에어로텐MM / 이염화메틸렌 / TC523에폭시 / 나르코틸 / 다이클로로메테인 / 디클로로메탄 / 락코메틸렌염화물 / 메탄,디클로로- / 설비세척솔벤트 / 에어로텐(R)MM솔벤트(AEROTHENE / 이염화메탄 / 다이클로로메탄 / 메틸렌 다이클로라이드 / 메틸렌 클로라이드", - "unNumber": "1593", - "casNumber": "75-09-2", - "transportMethod": "", - "sebc": "", - "usage": "페인트 제거제, 접착제 제거제, 부품 세척제 등 사용 유연 우레탄 폼, 산업용 접착제, 플라스틱 생산", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MEC", - "name": "METHYLENE CHLORIDE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 186, - "abbreviation": "MDG", - "nameKr": "메틸 카비톨", - "nameEn": "DIETHYLENE GLYCOL MONOMETHYL ETHER", - "synonymsEn": "Diethylene glycol monomethyl ether / DM / 2-(2-METHOXYETHOXY)ETHANOL / degme / METHYL CARBITOL / METHYLDIGLYCOL / METHOXYETHOXYETHANOL / Ethanol,2-(2-methoxyethoxy)- / DIETHYLENE GLYCOL METHYL ETHER / 2-(2- / DIEGME", - "synonymsKr": "디에틸렌 글리콜 모노메틸 에테르 / 2-(메톡시에톡시)에탄올DI / 다이에틸렌글리콜모노메틸에테르 / 디에틸렌글리콜모노메틸에테르 / 메틸디글리콜 / 2-(2-메톡시에톡시)에탄올 / 2-(2-메톡시에톡시)에탄올(메톡시디글라이콜) / 다이에틸렌글라이콜모노메틸에터 / 메톡시다이글리콜 / 다이에틸렌글리콜모노메틸에테르 / 다이에틸렌 글리콜 메틸 에테르 / 2-(2-메톡시에톡시에탄올) / 메틸 다이옥시톨 /", - "unNumber": "2810", - "casNumber": "111-77-3", - "transportMethod": "", - "sebc": "", - "usage": "반도체 산업, 인쇄 잉크, 가죽 염색, 필름 제조 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MDG", - "name": "DIETHYLENE GLYCOL MONOMETHYL ETHER", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 187, - "abbreviation": "MEG", - "nameKr": "에틸렌글리콜", - "nameEn": "MONO ETHYLENE GLYCOL", - "synonymsEn": "Ethylene glycol / Monoethylene glycol / dowtherm / 1,2-Ethanediol / HOCH2CH2OH / 2-Hydroxyethanol / Antifrogen N / Dihydroxyethane / Zerex / Glygen / Glykol", - "synonymsKr": "에틸렌알코올 / 1,2-디히드록시에탄 / 모노에틸렌글리콜 / 에틸렌글리콜(MEG) / 글라이콜 / 에칠렌글라이콜 / 에틸렌글리콜 / 에틸렌 글리콜 / 모노에틸렌글리콜", - "unNumber": "3082", - "casNumber": "107-21-1", - "transportMethod": "", - "sebc": "", - "usage": "플라에스터, 폴리에스터, 폴리에스터수지, 흡습제, 가소제, 계면활설제, 합성섬유, 화장품, 화약류의 제조", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MEG", - "name": "MONO ETHYLENE GLYCOL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 188, - "abbreviation": "MEK", - "nameKr": "메틸에틸케톤", - "nameEn": "METHYL ETHYLE KETONE", - "synonymsEn": "2-Butanone / MEK / METHYL ETHYL KETONE / BUTANONE / Butan-2-one / ETHYL METHYL KETONE / 2-Butanone,99% / 2-Butanon / METHYL ETHYL KETONE (MEK)(BUTANONE) / Butanon / MEK = 2-BUTANONE", - "synonymsKr": "2-부탄온 / 3-부탄온 / 메틸아세톤 / 부탄은 / 에틸메틸케톤 / 메틸에틸케톤 / 부탄온 / 솔벤트#3(SCOTCH-GRIP / 스타본드C-신나 / 제거제 / 크리너(OATEYCLEANER / 2-부탄논 / 메틸에틸케톤 / 엠이케이 / 메틸 에틸 케톤 / 부탄-2-온 / 옥소부탄", - "unNumber": "1193", - "casNumber": "78-93-3", - "transportMethod": "", - "sebc": "", - "usage": "페인트, 잉크, 합성고무, 마그네틱 테이프 제조", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MEK", - "name": "METHYL ETHYLE KETONE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 189, - "abbreviation": "METHA", - "nameKr": "카비놀", - "nameEn": "METHYL ALCOHOL", - "synonymsEn": "Methanol / jiachun / Methyl alcohol / CH3OH / Carbinol / metanol / ACID RED / Methanol dried / METHYL RED INDICATOR / METHYL RED MIXED SOLUTION / METHYL RED, SPIRIT SOLUBLE", - "synonymsKr": "메틸올 / 콜로니알스피리트 / 우드스피리트 / 우드나프타 / 우드알코올 / 메틸수산화물 / 카비놀 / 모노히드록시메탄 / 콜럼비안스피리트 / 피록실릭스피리트 / 메탄올 / 메틸알코올 / 메틸알콜 / 메틸알코올 / 메타놀", - "unNumber": "1230", - "casNumber": "67-56-1", - "transportMethod": "", - "sebc": "", - "usage": "용매, 연료, 원료 등 사용 플라스틱, 페인트, 접착제, 의약품 제조", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "METHA", - "name": "METHYL ALCOHOL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 190, - "abbreviation": "MHA", - "nameKr": "2-하이드록시-4-(메틸싸이오)뷰탄산", - "nameEn": "METHIONINE HYDROXY ANALOGUE", - "synonymsEn": "2-HYDROXY-4-(METHYLTHIO)BUTYRIC ACID / HMTBA / alimet / mha-fa / mhaacid / HMTBA-13C4 / Desmenidol-13C4 / (68-72% in Water) / Ipradol (feed grade) / MHA acid (feed grade) / methioninehydroxyanalog", - "synonymsKr": "2-하이드록시-4-(메틸싸이오)뷰탄산", - "unNumber": "-", - "casNumber": "583-91-5", - "transportMethod": "", - "sebc": "", - "usage": "농업용 화학물질 제조 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MHA", - "name": "METHIONINE HYDROXY ANALOGUE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 191, - "abbreviation": "MIBK", - "nameKr": "메틸이소부틸케톤", - "nameEn": "METHYL ISOBUTYL KETONE", - "synonymsEn": "4-Methyl-2-pentanone / MIBK / METHYL ISOBUTYL KETONE / 4-METHYLPENTAN-2-ONE / MIK / MIKB / Hexon / ISOBUTYL METHYL KETONE / HEXONE / 4-Methyl-2-pen / ISOPROPYLACETONE", - "synonymsKr": "메틸아이소부틸케톤 / 2-메틸프로필메틸케톤 / 헥손 / 4-메틸-2-펜탄온 / 메틸아이소뷰틸케톤 / 메틸이소부틸케톤 / 메틸이소뷰틸케톤 / 이소부틸메틸케톤 / 이소프로필아세톤 / 4-메틸-2-펜타논 / 메틸이소부틸케톤 / 미비케이 / 메틸 아이소부틸 케톤", - "unNumber": "2053", - "casNumber": "108-10-1", - "transportMethod": "", - "sebc": "", - "usage": "용제, 현상액, 변성제 등 사용 고무, 수지, 니트롤셀룰로스, 폴리우레탄 라커 및 페인트 용제", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "FT", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MIBK", - "name": "METHYL ISOBUTYL KETONE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 192, - "abbreviation": "MIK", - "nameKr": "메틸이소부틸케톤", - "nameEn": "METHYL ISOBUTYL KETONE", - "synonymsEn": "4-Methyl-2-pentanone / MIBK / METHYL ISOBUTYL KETONE / 4-METHYLPENTAN-2-ONE / MIK / MIKB / Hexon / ISOBUTYL METHYL KETONE / HEXONE / 4-Methyl-2-pen / ISOPROPYLACETONE", - "synonymsKr": "메틸아이소부틸케톤 / 2-메틸프로필메틸케톤 / 헥손 / 4-메틸-2-펜탄온 / 메틸아이소뷰틸케톤 / 메틸이소부틸케톤 / 메틸이소뷰틸케톤 / 이소부틸메틸케톤 / 이소프로필아세톤 / 4-메틸-2-펜타논 / 메틸이소부틸케톤 / 미비케이 / 메틸 아이소부틸 케톤", - "unNumber": "2053", - "casNumber": "108-10-1", - "transportMethod": "", - "sebc": "", - "usage": "용제, 현상액, 변성제 등 사용 고무, 수지, 니트롤셀룰로스, 폴리우레탄 라커 및 페인트 용제", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "FT", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MIK", - "name": "METHYL ISOBUTYL KETONE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 193, - "abbreviation": "MLSS", - "nameKr": "당밀", - "nameEn": "MOLASSES", - "synonymsEn": "Molasses / tangmi / Molasses / Cane syrup / CANEMOLASSES / beet molasses / Molasses, beet / Einecs 270-698-1 / Beet sugar molasses / Molasses ISO 9001:2015 REACH", - "synonymsKr": "함밀당 / 흑당 / 설탕 / 폐당밀 / 몰라시스", - "unNumber": "-", - "casNumber": "68476-78-8", - "transportMethod": "", - "sebc": "", - "usage": "식물 및 발효 원료 활용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", "cargoCodes": [ { "code": "MLSS", "name": "MOLASSES", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BTMOL", + "name": "Beet molasses", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CMS", + "name": "Concentrated molasses solubles", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MLSS", + "name": "Molasses", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MOLRF", + "name": "Molasses RF", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 194, - "abbreviation": "MMA", - "nameKr": "메틸메타크릴레이트", + "id": 116, + "abbreviation": "MME", + "nameKr": "메타크릴산메틸에스테르", "nameEn": "METHYL METHACRYLATE", - "synonymsEn": "Methyl methacrylate / MMA / Mme / Methylmetacrylate / Methyl methylacrylate / Methyl 2-methylacrylate / METHYL 2-METHYL-2-PROPENOATE / METHYL METACRYLAT / Methyl-methacrylat / 2-METHYLACRYLIC ACID METHYL ESTER / 2-Methyl-2-propenoic acid methyl ester", "synonymsKr": "메타크릴산메틸 / 2-메틸프로펜오익산,메틸에스테르 / 메타크릴산메틸에스테르 / 메타크릴산,메틸에스테르 / 메틸2-메틸아크릴레이트 / 메틸메타크릴레이트단량체 / 메틸메타크릴레이트,억제된 / 2-(메톡시카르보닐)-1-프로펜 / 2-메틸-2-프로펜오익산메틸에스테르 / 메틸2-메틸프로펜오에이트 / 메틸메틸아크릴산 / 메틸메타크릴레이트 / 메틸 메타크릴에이트", + "synonymsEn": "Methyl methacrylate / MMA / Mme / Methylmetacrylate / Methyl methylacrylate / Methyl 2-methylacrylate / METHYL 2-METHYL-2-PROPENOATE / METHYL METACRYLAT / Methyl-methacrylat / 2-METHYLACRYLIC ACID METHYL ESTER / 2-Methyl-2-propenoic acid methyl ester", "unNumber": "1247", "casNumber": "80-62-6", - "transportMethod": "", - "sebc": "", - "usage": "유리의 대체재, 광학 부품, 도료 및 접착제, 섬유 호재 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", + "usage": "유리의 대체재, 광학 부품, 도료 및 접착제, \n섬유 호재 등 사용", + "state": "액체", + "color": "무색투명", + "odor": "자극적인 황 냄새", + "flashPoint": "icrc", + "autoIgnition": "421℃", + "boilingPoint": "100.5℃", + "density": "0.94", + "solubility": "15.9 g/L (25℃)", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "3.45", + "explosionRange": "1.7~12.5%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 2, + "fire": 4, + "reactivity": 2, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "129P", + "idlh": "1,000 ppm", + "aegl2": "120 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발용해 (ED)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "고인화성, 호흡기 자극, 중합성", + "firstAid": "흡입노출 • 신선한 공기가 았는 곳오로 이동, 호흡이 힘들면 산소공급. 의료조치 피부접촉 • 비누와 물로 씻을 것, 피부자극성 및 홍반이 나타나면 의학조치 안구접촉 • 즉시 20분 이상 흐르는 물에 씻을 것 경구섭취 •긴급의료조치", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 내알코올 포말 이용.", + "spillResponse": "모든 점화원(불꽃, 불씨, 스파크) 제거. 주변 해상 통제. 소화포 이용 분무주수로 증기운 이동 억제.", + "exposure": "TWA 50 ppm, STEL 100 ppm, AEGL-2 120 ppm, IDLH 1,000 ppm", "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "F", + "ibcDetection": "R", "ibcFireFighting": "AC", "ibcMinRequirement": "15.13, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "MMA", "name": "METHYL METHACRYLATE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 195, - "abbreviation": "MME", - "nameKr": "메타크릴산메틸에스테르", - "nameEn": "METHYL METHACRYLATE", - "synonymsEn": "Methyl methacrylate / MMA / Mme / Methylmetacrylate / Methyl methylacrylate / Methyl 2-methylacrylate / METHYL 2-METHYL-2-PROPENOATE / METHYL METACRYLAT / Methyl-methacrylat / 2-METHYLACRYLIC ACID METHYL ESTER / 2-Methyl-2-propenoic acid methyl ester", - "synonymsKr": "메타크릴산메틸 / 2-메틸프로펜오익산,메틸에스테르 / 메타크릴산메틸에스테르 / 메타크릴산,메틸에스테르 / 메틸2-메틸아크릴레이트 / 메틸메타크릴레이트단량체 / 메틸메타크릴레이트,억제된 / 2-(메톡시카르보닐)-1-프로펜 / 2-메틸-2-프로펜오익산메틸에스테르 / 메틸2-메틸프로펜오에이트 / 메틸메틸아크릴산 / 메틸메타크릴레이트 / 메틸 메타크릴에이트", - "unNumber": "1247", - "casNumber": "80-62-6", - "transportMethod": "", - "sebc": "", - "usage": "유리의 대체재, 광학 부품, 도료 및 접착제, 섬유 호재 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "F", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.13, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "MME", "name": "METHYL METHACRYLATE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MMA", + "name": "Methyl methacrylate", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 196, + "id": 117, "abbreviation": "MNS", "nameKr": "메틸렌디옥시-베타-니트로스티렌", "nameEn": "3.4-METHYLENEDIOXY-BETA-NITROSTYENE", - "synonymsEn": "3,4-Methylenedioxy-beta-nitrostyrene / MDBN / NSC 170724 / MNS (MDBN) / 5-(2-Nitrovinyl) / AKOS BBS-00006781 / Syk Inhibitor III / MNS, 10 mM in DMSO / TIMTEC-BB SBB007833 / -nitrostyrene, MDBN) / MNS (NSC 170724, MDBN)", "synonymsKr": "메틸렌디옥시-베타-니트로스티렌", + "synonymsEn": "3,4-Methylenedioxy-beta-nitrostyrene / MDBN / NSC 170724 / MNS (MDBN) / 5-(2-Nitrovinyl) / AKOS BBS-00006781 / Syk Inhibitor III / MNS, 10 mM in DMSO / TIMTEC-BB SBB007833 / -nitrostyrene, MDBN) / MNS (NSC 170724, MDBN)", "unNumber": "-", "casNumber": "1485-00-3", "transportMethod": "", @@ -13785,58 +11621,58 @@ { "code": "MNS", "name": "3.4-METHYLENEDIOXY-BETA-NITROSTYENE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 197, - "abbreviation": "MOGAS", - "nameKr": "휘발유", - "nameEn": "MOTOR GASOLINE", - "synonymsEn": "gasoline MOTO GAS / GASOLINE / PIANO Gasoline / Cleaning solven / RFA Gasoline@Blank / TIANFU-CHEM gasoline / RF-A Gasoline(Technical) / PIANO Gasoline (with MtBE) / GASOLINE(FROM50-100OCTANE) / PIANO Gasoline (with Ethanol) / Gasoline - Premium@0.5 mg/mL in MeOH / MOTOR GASOLINE", - "synonymsKr": "/ 가솔린 / 휘발유 / 가솔린, 천연 / 경질 가솔린", - "unNumber": "1203", + "id": 118, + "abbreviation": "RGSLN", + "nameKr": "일반 휘발유", + "nameEn": "Regular unleaded gasoline", + "synonymsKr": "휘발유 / 가솔린 / 휘발유 / 가솔린, 천연 / 경질 가솔린", + "synonymsEn": "gasoline / GASOLINE / PIANO Gasoline / Cleaning solven / RFA Gasoline@Blank / TIANFU-CHEM gasoline / RF-A Gasoline(Technical) / PIANO Gasoline (with MtBE) / GASOLINE(FROM50-100OCTANE) / PIANO Gasoline (with Ethanol) / Gasoline - Premium@0.5 mg / mL in MeOH", + "unNumber": "", "casNumber": "8006-61-9", - "transportMethod": "", - "sebc": "", - "usage": "선박(모터) 및 차량 등 연료 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(X류)", + "sebc": "FE (Floater/Evaporator)", + "usage": "", + "state": "액체", + "color": "무색~옅은 노랑(착색제에 따라 변동)", + "odor": "휘발유 특유의 냄새", + "flashPoint": "-43℃ 이하", + "autoIgnition": "280℃ (257~457℃)", + "boilingPoint": "35~200℃", + "density": "0.72~0.78", + "solubility": "불용 (매우 미량)", + "vaporPressure": "매우 높음 (270~540 mmHg at 38℃)", + "vaporDensity": "3~4", + "explosionRange": "1.4~7.6%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 3, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "고인화성 액체, 발암성 의심, 중추신경계 독성 [인화성 유해성]", + "ergNumber": "128", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "반경 800m 이상", + "responseDistanceSpillDay": "반경 50m 이상", + "responseDistanceSpillNight": "중하 300m 이상", + "marineResponse": "증발(E)/부유(F), 해상수거 곤란 (경질 성분 증발 후 중질 성분 부유)", + "ppeClose": "근거리(레벨 A)", + "ppeFar": "원거리(레벨 C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "고인화성 탄화수소 혼합물(파라핀/나프텐/방향족 포함, 벤젠/톨루엔/크실렌 함유). 증기운 폭발 위험, 흡입 시 중추신경 영향. 장기 노출 시 발암성 의심. 해상 유출 시 경질분 증발(E), 중질분 부유(F)", + "firstAid": "흡입: 두통/현기증/혼수/호흡곤란 → 신선한 공기, 산소공급·인공호흡. 피부: 건조/자극/탈지 → 다량의 물과 비누로 세척, 오염의복 제거. 안구: 자극·충혈 → 15분 이상 물로 세척. 경구: 기도 흡인 치명적(화학성 폐렴) → 토하게 하지 말 것, 즉시 병원이송", + "fireFighting": "모든 점화원(불꽃, 불씨, 스파크) 제거, 복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수·일반포말(AFFF)·드라이케미컬·CO2 사용, 직사주수 금지. 사고선 냉각 및 예인 조치. BLEVE(증기폭발) 위험", + "spillResponse": "모든 점화원 제거하고 주변 해상 통제. 소화포 이용 분무주수로 증기 억제. 해수 유출 시 경질 성분 증발(E), 중질 성분 부유(F). 부유물을 오일붐으로 포위 후 스키머·흡착제로 회수. 안전 확보 시까지 지속적 농도 탐지 및 모니터링", + "exposure": "TWA 300 ppm, STEL 500 ppm", "regulation": "" }, "ibcHazard": "", @@ -13845,66 +11681,90 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { "code": "MOGAS", "name": "MOTOR GASOLINE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "UG", + "name": "UNLEADED GASOLINE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "GSLN", + "name": "Gasoline", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "1TCN", + "name": "Genklene", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RGSLN", + "name": "Regular unleaded gasoline", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 198, - "abbreviation": "PG", - "nameKr": "프로필렌 글리콜", - "nameEn": "MONO PROPYLENE GLYCOL", - "synonymsEn": "Propylene glycol / PG / 1,2-PROPANEDIOL / MONO PROPYLENE GLYCOL / PROPANE-1,2-DIOL / 1,2-PROPYLENE GLYCOL / propylenglycol / Propyledne glycol / Aliphatic alcohol / Propylene glycol 57-55-6 / Propylene glycol usp / NOMO-PYROLYSIS GASOLINE", - "synonymsKr": "1,2-디히드록시프로판 / (RS)-1,2-프로판디올 / 1,2-(RS)-프로판디올 / 1,2-프로판디올 / 1,2-프로필렌글리콜 / 2,3-프로판디올 / 2-히드록시프로판올 / DL-1,2-프로판디올 / DL-프로필렌글리콜 / 메틸에틸글리콜 / 메틸에틸렌글리콜 / 모노프로필렌글리콜 / 알파-프로필렌글리콜 / 이소프로필렌글리콜 / 프로필렌글리콜 / 프로필렌글리콜(P.G)-공업용 / 프로필렌글리콜(P.G)-식첨용 / 프로필렌글리콜 / 프로필렌 글리콜 / 1,2-다이하이드록시프로판", + "id": 119, + "abbreviation": "MPG", + "nameKr": "모노프로필렌글리콜", + "nameEn": "Monopropylene glycol", + "synonymsKr": "PG / 1,2-프로판디을 / 메틸에틸렌 글리콜 / 메틸에틸 글리콜 / 모노프로필렌 글리콜", + "synonymsEn": "Propylene glycol / PG / 1,2-PROPANEDIOL / MONO PROPYLENE GLYCOL / PROPANE-1,2-DIOL / 1,2-PROPYLENE GLYCOL / propylenglycol / Propyledne glycol / Aliphatic alcohol / Propylene glycol 57-55-6 / Propylene glycol usp", "unNumber": "-", "casNumber": "57-55-6", - "transportMethod": "", - "sebc": "", - "usage": "용제, 보습제, 유화제, 냉각액, 방부제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "산적액체(Z류)", + "sebc": "D (Dissolver)", + "usage": "방부제, 부동액, 습윤제, 셀로판 제조 물질툑성", + "state": "액체", + "color": "무색", + "odor": "무취", + "flashPoint": "98.9’C", + "autoIgnition": "3711", + "boilingPoint": "185℃", + "density": "1.0361", + "solubility": "1.000g/L(20t)", + "vaporPressure": "0.129mmHg(20X:)", + "vaporDensity": "2.6", + "explosionRange": "2.6~12.6%", "nfpa": { "health": 0, - "fire": 0, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Z", "ergNumber": "", - "idlh": "", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "반경 50m 이상", + "responseDistanceSpillNight": "중하 100m 이상", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨 B)", + "ppeFar": "원거리(레벨 C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "저독성 극성 유기용매, 식음·화장품·의약품 원료. 해상 유출 시 용해(D)", + "firstAid": "흡입노출 • 긴급 의료초치, 산소공급, 인공호흡 피부접촉 - 화상의 경우 차가운 물로 씻을 것, 비누와 물로 씻을 것 안구접촉 - 긴급 의료조치, 20문 이상 흐르는 물에 씻을 것 경구섭취 •긴급의료조치", + "fireFighting": "복합가스탐지기 이용 농도 확인. 분무주수·내알콜포말 사용, 직사주수 금지. 화재진압 후에도 사고선 냉각 조치", + "spillResponse": "점화원 제거 후 주변 해상 통제. 용해(D)되므로 해상수거 곤란, 지속 모니터링. 초기 이격거리 50m, 방호거리 100m", + "exposure": "TWA 10 mg/m³", "regulation": "" }, "ibcHazard": "", @@ -13913,208 +11773,96 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-B", + "emsFire": "F-E", + "emsSpill": "S-B", "emsFirstAid": "", "cargoCodes": [ { "code": "PG", "name": "MONO PROPYLENE GLYCOL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 199, - "abbreviation": "MPG", - "nameKr": "프로필렌 글리콜", - "nameEn": "NOMO-PYROLYSIS GASOLINE", - "synonymsEn": "Propylene glycol / PG / 1,2-PROPANEDIOL / MONO PROPYLENE GLYCOL / PROPANE-1,2-DIOL / 1,2-PROPYLENE GLYCOL / propylenglycol / Propyledne glycol / Aliphatic alcohol / Propylene glycol 57-55-6 / Propylene glycol usp / NOMO-PYROLYSIS GASOLINE", - "synonymsKr": "1,2-디히드록시프로판 / (RS)-1,2-프로판디올 / 1,2-(RS)-프로판디올 / 1,2-프로판디올 / 1,2-프로필렌글리콜 / 2,3-프로판디올 / 2-히드록시프로판올 / DL-1,2-프로판디올 / DL-프로필렌글리콜 / 메틸에틸글리콜 / 메틸에틸렌글리콜 / 모노프로필렌글리콜 / 알파-프로필렌글리콜 / 이소프로필렌글리콜 / 프로필렌글리콜 / 프로필렌글리콜(P.G)-공업용 / 프로필렌글리콜(P.G)-식첨용 / 프로필렌글리콜 / 프로필렌 글리콜 / 1,2-다이하이드록시프로판", - "unNumber": "-", - "casNumber": "57-55-6", - "transportMethod": "", - "sebc": "", - "usage": "용제, 보습제, 유화제, 냉각액, 방부제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "MPG", "name": "NOMO-PYROLYSIS GASOLINE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 200, - "abbreviation": "MPO", - "nameKr": "2-메틸-1,3-프로판디올", - "nameEn": "2-METHYL, 3-PROPANEDIOL", - "synonymsEn": "2-METHYL-1,3-PROPANEDIOL / METHYLPROPANEDIOL / 2-methylpropane-1,3-diol / 2-Methyl-1,3-propanediol (MPO) / MP Diol / MPDIOL(R) / MPDIOL MPD / MP diol glycol / MPDIOL(R) GLYCOL / β-Hydroxyisobutanol / 2-methyl-3-propanediol /2-METHYL, 3-PROPANEDIOL", - "synonymsKr": "/ 2-메틸-1,3-프로판디올 / 메틸프로판다이올 / 2-메틸-1, 3-프로판디올", - "unNumber": "-", - "casNumber": "2163-42-0", - "transportMethod": "", - "sebc": "", - "usage": "폴리우레탄, 코팅 및 잉크용 접착제 소프트 세그먼트 중간체 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "MPO", - "name": "2-METHYL, 3-PROPANEDIOL", - "company": "", - "source": "화물적부도" + "code": "1,2PPG", + "name": "1,2-Propylene glycol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MPG", + "name": "Monopropylene glycol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PO", + "name": "Propylene oxide", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 201, - "abbreviation": "MTBE", - "nameKr": "메틸삼차부틸에테르", - "nameEn": "METHYL TERT-BUTYL ETHER", - "synonymsEn": "METHYL TERT-BUTYL ETHER / TERT-BUTYL METHYL ETHER METHYL TERT- BUTYL ETHER / 2-METHOXY-2-METHYLPROPANE", - "synonymsKr": "메틸 삼차뷰틸 에테르 / TERT-부틸 메틸 에테르", + "id": 120, + "abbreviation": "MAACE", + "nameKr": "메틸 테르트-부틸 에테르", + "nameEn": "Methylamyl acetate", + "synonymsKr": "메틸 T-뷰틸에테르 / T-뷰틸 메틸 에테르 / MTBE / TERT-뷰틸메틸에테르", + "synonymsEn": "METHYL TERT-BUTYL ETHER / TERT-BUTYL METHYL ETHER / METHYL TERT- BUTYL ETHER / 2-METHOXY-2-METHYLPROPANE", "unNumber": "2398", "casNumber": "1634-04-4", "transportMethod": "", "sebc": "", "usage": "주로 가솔린 첨가제 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "state": "액체", + "color": "무색", + "odor": "테르펜 냄새", + "flashPoint": "-25.56t:", "autoIgnition": "", "boilingPoint": "", - "density": "", + "density": "0.74", "solubility": "", - "vaporPressure": "", + "vaporPressure": "(물 23.8rTimHg)", "vaporDensity": "", - "explosionRange": "", + "explosionRange": "1.6~15.1%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Z", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "풍하 방향으로 최소 300m", + "marineResponse": "증발용해 (ED)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 신선한 공기로 이동, 인공호흡, 호흡이 힘든 경우 산소공급, 의료조치 _ 피부접촉 •비누와물로 피부를 씻을 것 응급초지 안구접촉 • 20분 이상 흐르는 물에 피부와 눈을 씻을 것 경구섭취 •긴급 의료조치 초동 대응방법 보호복 호홉구 보안경 보호장갑 기타장비 대응장비 3,4형식 (C급) 방독마스크(반면,전면) 수 수 여하사가메가 1형식 (1B) 공기호흡기 O 0 열화상카메라 > 유출물잘은 고인화성물질로 증기의 이동에 의한 폭발가능성이 높으며, 피부자극을 일으킬 수 있으므로 모든 출동 세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박 통제 (흡연, 불꽃, 스파크 등 모든 점화원 제거) 해상유출시 ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3,4형식 보호의 착용(사고선 근접 시 1B이상 착용), 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 증발, 용해되므로 방제조치 불필요 > 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 I 화재 시대피거리(m) 800 I + > 유출물질은 연소시 유독가스 방출, 풍상에 위치, 최소 이격거리 유지하고 소화포 이용 화재진압 화재", "fireFighting": "", "spillResponse": "", "exposure": "", "regulation": "" }, "ibcHazard": "P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "F", + "ibcDetection": "R", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.19.6", "emsCode": "", @@ -14125,58 +11873,70 @@ { "code": "MTBE", "name": "METHYL TERT-BUTYL ETHER", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MTBE", + "name": "Methyl tert-butyl ether", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MAACE", + "name": "Methylamyl acetate", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 202, - "abbreviation": "MX", - "nameKr": "M-자일렌", - "nameEn": "MIXED XYLENE", + "id": 121, + "abbreviation": "MTX", + "nameKr": "메타-자일렌", + "nameEn": "meta-Xylene", + "synonymsKr": "3-자일렌 / 3-자일렌 / M-자일렌 / m-크실렌 / 메타크실렌 / M-크실렌 / 1,3-디메틸벤젠 / M-메틸톨루엔 / 크실렌 / M-크실롤 / 메타자일 / 1,3-다이메틸벤젠 / 1,3-자일렌 / m-자일롤 / 메타-자일렌 / 벤젠, 1,3-다이메틸-", "synonymsEn": "m-Xylene / 1,3-Xylene / 1,3-DIMETHYLBENZENE / 3-xylene / m-Xylol / META-XYLENE / Benzene,1,3-dimethyl- / 2,4-Xylene / 3-methyltoluene / m-XyL / M-XYLENE", - "synonymsKr": "3-자일렌 / M-자일렌 / m-크실렌 / 메타크실렌 / M-크실렌 / 1,3-디메틸벤젠 / M-메틸톨루엔 / 크실렌 / M-크실롤 / 메타자일 / 1,3-다이메틸벤젠 / 1,3-자일렌 / m-자일롤 / 메타-자일렌 / 벤젠, 1,3-다이메틸-", "unNumber": "1307", "casNumber": "108-38-3", - "transportMethod": "", - "sebc": "", - "usage": "플리에틸렌 테레프탈레이트(PET)의 특성 조절 이소프탈산 생산에 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "FE (Float-Evaporator)", + "usage": "", + "state": "액체", + "color": "무색", + "odor": "방향족", + "flashPoint": "27℃", + "autoIgnition": "527℃", + "boilingPoint": "139℃", + "density": "0.87", + "solubility": "0.16 g/L (25℃)", + "vaporPressure": "(물 23.8inmHg)", + "vaporDensity": "3.66", + "explosionRange": "1.1-7%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 3, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "130", + "idlh": "900 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유•증발 (FE)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성, 부유증발(FE), 해상수거 불가", + "firstAid": "흡입노출 • 토하게 하지 말 것, 긴급 의료조치, 산소공급, 인공호흡 물질특성 인체 유해성 화재 침강 용해 증발 증기밀도 (위험성) (물=1) (물) (물중기압) (공기=1) O y O O .누 O (높음) (낮옴) (낮음) “러 인화점 27紀 발화점 527℃ 끓는점 139.rc 수용해도 0.16g/L(25’C) 상온상태 액체 색상 무색, 투명 냄새 달콤한 냄새 비중 0.86 증기압 8.29mmHg(25t) 휘발성 낮음 점도 0.58cP(25t) 증기밀도 3.7 급성독성 TWAfflAl 간) looppm 경구 (LD50) 경피 (LD50) 홉입 (LC50) 노출기준 아우 얀뱨1분) 150Ppm 6,602 12,126 증기3 노출한계 ing/kg irg/kg nig/fi/4시간 id나l(30분) Qnnr、r、m 칙접 위험농도 당 ⑴ 일반증상 두통,현기증 유발,눈및 피부 자극 흐이 고농도 흡입 시 중추신경계 영향(두통, 현기증 등) 터너 폐렴, 폐부종, 간 및 신장 손상, 피부염 피부 홍반, 건조, 염증, 피부염 안구 심한 눈자극및 화상,결막염 경구 삼켜서 기도로 유입되면 치명적임 옹급조치 피부접촉 • 비누와 물로 씻을 것, 긴급 의료조치 안구접촉 • 몇 분간", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 내알코올 포말 이용.", + "spillResponse": "점화원 제거. 주변 해상 통제. 분무주수로 증기운 이동 억제.", + "exposure": "TWA 100 ppm, STEL 150 ppm, IDLH 900 ppm", "regulation": "" }, "ibcHazard": "", @@ -14185,67 +11945,73 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "MX", "name": "MIXED XYLENE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MTX", + "name": "meta-Xylene", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 203, + "id": 122, "abbreviation": "NACID", "nameKr": "질산", "nameEn": "NITRIC ACID", - "synonymsEn": "Nitric acid / HNO3 / Fuming nitric acid / HYDROGEN NITRATE / nitric acid fuming 100% / XS / HONO2 / Salpetersaure / Acide nitrique / nitric acid 65% / Nitric acid 70%", - "synonymsKr": "1N-질산 / 아조트산 / 아쿠아FORTIS / 질산 / 질산69% / 질산수소 / 질산20% / 히드록시니트릴 / 질산6.5%", + "synonymsKr": "1N-질산 / 아조트산 / 아쿠아FORTIS / 질산 / 질산69% / 질산수소 / 질산20% / 히드록시니트릴 / 질산6.5% / 질산(Aqua fortis) / 아조트산 / 인그라버스 산 / 하이드로겐 나이트레이트 / 나이탈 / 질소의 흄 / 나이트릴 하이드록사이드 / 농축된 질산 (빨간 흄 제외)", + "synonymsEn": "Nitric acid / HNO3 / Fuming nitric acid / HYDROGEN NITRATE / nitric acid fuming 100% / XS / HONO2 / Salpetersaure / Acide nitrique / nitric acid 65% / Nitric acid 70% / Acide nitrique(FRENCH) / Acido nitrico(ITALIAN) / Acido nitrico(Spanish) / Aqua fortis / Azotic acid / Azotowy kwas(POLISH) / Engraver's acid / Hydrogen nitrate / Kyselina dusicne(CZECH) / Nital / Nitrous fumes / Nitryl hydroxide / Salpetersaure(GERMAN) / Salpeterzuuroplossingen(DUTCH) / Concentrated nitric acid(other than red fuming)", "unNumber": "2031", "casNumber": "7697-37-2", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(8급), 산적액체(Y류)", + "sebc": "D (Dissolver)", "usage": "비료, 폭발물 제조, 로켓 추진체, 반도체 세정 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "state": "액체", + "color": "무색, 노란색,", + "odor": "자극적", + "flashPoint": "비가연성", "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", + "boilingPoint": "83℃", + "density": "1.5", + "solubility": "용해", + "vaporPressure": "63.1mmHg(25t)", + "vaporDensity": "2-3", "explosionRange": "", "nfpa": { - "health": 0, + "health": 3, "fire": 0, - "reactivity": 0, + "reactivity": 1, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "157", + "idlh": "25 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "100m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "산화성, 부식성, 피부/안구 심각한 손상, 연소 시 질소산화물 발생", + "firstAid": "흡입노출 • 즉시 의료조치 인화점 비가연성 발화점 비가연성 끓는점 83t 수용해도 용해 상온상태 액체 색상 무색, 노란색, 빨간색 냄새 자극적인 냄새 비중 1.5 증기압 63.1mmHg(25t) 휘발성 높음 점도 0.75cP(25r) 증기밀도 2-3 TWA(8 시간) 흡입(LC50) , 노출기준 STEL(i5 뷴) 증기 >2.65 노출한계 ng/C/4시간 ini %()부) 2Ppm 4ppm 일반증상 흡입 피부 급성독성 경구(11)50) 경피 (LD50) 자료없음 직접위험농도 '\"미 물질 흡입 시 심한손상, 화상, 사망할 수 있음 눈, 피부, 점막자극, 페부종 호흡곤란. 폐렴, 폐부종 등 치명적임 감기, 숨막힘과 코, 인후 및 호흡기 자극 심한 손상, 화상, 사망할 수 있음 안구 영구적인 눈 손상. 통증, 실명할 수 있음 경구 통증,입화상,사망할수있음 응급조치 피부접촉 • 다량의 물로 즉시 씻을 것, 화상의 경우 다량의 찬물로 씻을 것 안구접촉 • 몇 분간 물로 조심해서 씻어낼 것. 콘택트렌즈를 제거할 것 경구섭취 • 토하게 하지 말 것. 입을 씻어 낼 것, 즉시 의료조치 초동 대응방법 대응장바 보호복 호홉구 보안경 보호장갑 기타장비 .", + "fireFighting": "다량 물로 희석. 가연물과 분리. CO₂.", + "spillResponse": "다량 물로 희석. 주변 통제. 가연물과 격리.", + "exposure": "TWA 2 ppm, STEL 4 ppm, IDLH 25 ppm", + "regulation": "유해화학물질관리법" }, "ibcHazard": "", "ibcShipType": "", @@ -14253,66 +12019,72 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-B", + "emsFire": "F-A", + "emsSpill": "S-B", "emsFirstAid": "", "cargoCodes": [ { "code": "NACID", "name": "NITRIC ACID", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NACID", + "name": "Nitric acid", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 204, + "id": 123, "abbreviation": "NBA", - "nameKr": "부탄올", - "nameEn": "NORMAL-BUTYL ALCOHOL", - "synonymsEn": "2-Amino-1-butanol / (R)-2-aminobutan-1-ol / (R)-(-)-2-AMINO-1-BUTANOL / tube1180 / 2-Aminobutanol / (theta)-1-butano / (+)2-Aminobutanol / ( theta)-1-butanol / L-2-AMINO-1-BUTANOL / L-2-Aminobutanol99.1% / (R)(-)-2-AMINOBUTANOL / N-BUTYL ALCOHOL", - "synonymsKr": "아미노-1-부탄올알-(-)-2 / (R)-(-)-2-아미노-1-부탄올 / (R)-2-아미노-1-뷰탄올 / 아미노-1-부탄올알-(-)-2 / 2-아미노부탄올 / N-뷰탄올", + "nameKr": "n-부탄올", + "nameEn": "n-Butyl alcohol", + "synonymsKr": "n-부탄올 / 부틸알코올 / n-부탄올 / n-부틸알코올 / n-뷰틸알코올 / 뷰틸알코올 / 1-부틸알콜 / 정부탄올 / N-부틸알코올 / 부틸알코올 / 1-부탄올 / 1-부틸알코올 / 부틸수산화물 / 메틸올프 / 노말부탄올(NBOH) / N-뷰틸 알코올 / 노말-부틸알코올 / 부탄올", + "synonymsEn": "1-Butanol / n-Butanol / BuOH / NBA / n-BuOH / n-Butyl alcohol / Normal Butanol / butanols / 1-Butano / Butanol-1 / 1-Butyl alcohol", "unNumber": "1120", "casNumber": "71-36-3", - "transportMethod": "", - "sebc": "", - "usage": "가소제, 바이오 연료 염료, 래커, 수지, 바나시 등 제조", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "", + "state": "액체", + "color": "무색", + "odor": "달콤한 냄새", + "flashPoint": "37。0", + "autoIgnition": "343℃", + "boilingPoint": "117.7℃", + "density": "0.81", + "solubility": "63.2g/L(25r)", + "vaporPressure": "7.0mmHg(25'’C)", + "vaporDensity": "2.6", + "explosionRange": "1.4~11.2%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 3, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Z", + "ergNumber": "129", + "idlh": "1,400 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성, 호흡기/피부/안구 자극, 중추신경계", + "firstAid": "흡입노출 • 토하게 하지 말 것, 호흡이 힘든 경우 산소공급, 인공호흡 피부접촉 • 비누와 물로 피부를 씻을 것 안구접촉 • 몇 분간 물로 씻을 것, 콘택트렌즈 제거, 지속된 자극 시 병원진료 경구섭취 • 토하게 하지 말 것, 긴급 의료조치 초동 대응방법 대응장비 보호복 호흡구 3,4형삭 (C급) 방독마스크(반면, 전면〉 1형식 (1B) 공가호흡기 보안경 보호장갑 O O 기타장비 열화상카메라 1 초기 이격거리(m) 50 방호거리 (m) 300 1 해상유출시 ► 유출물질은 인화성물질로 화재위험성이 있으며, 심한 눈 손상과 피부, 호홉기를 자극하고 현기증, 두통을 유발할 수 있으므로 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박 통제 (흡연, 불꽃, 스파크 등 모든 점화원 제거) ► 츨동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용(사고선 근접 시 1B급 착용), 증기흡입과 피부와 눈에 접촉을 피할 것(화상주의) 乂 플라스틱, 고무 및 코팅류 일부 형태를 부식시킴 - 유출물질은 용해되므로 방제조치 불필요 > 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 1 화재 시대피거리(m", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제. 분무주수로 증기운 이동 억제.", + "exposure": "TWA 20 ppm, IDLH 1,400 ppm", "regulation": "" }, "ibcHazard": "", @@ -14321,50 +12093,340 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "NBA", "name": "NORMAL-BUTYL ALCOHOL", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NBA", + "name": "n-Butyl alcohol", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 205, - "abbreviation": "NBAC", - "nameKr": "아세트산부틸", - "nameEn": "N-BUTYL ACETATE", - "synonymsEn": "Butyl acetate / N-BUTYL ACETATE / ACETIC ACID BUTYL ESTER / Acetic acid butyl / Butylacetat / Butyl ethanoate / Butyle / butylacetates / Butile / BUTYLE ACETATE / 1-Butyl acetate / N-BUTYL ACETATE", - "synonymsKr": "아세트산부틸 / n-부틸아세트산 / n-뷰틸아세트산 / 부틸에탄산 / 뷰틸아세트산 / 초산부틸 / 초산n-부틸 / 부틸아세테이트 / 부틸아세테이트(B.A) / 부틸아세트산 / 초산부틸 / N-뷰틸 아세테이트 / 뷰틸 아세테이트 / 뷰틸 에타노에이트 / 아세트산 n-뷰틸 에스터 / 1-부틸아세테이트 / N-부틸 아세트산", - "unNumber": "1123", - "casNumber": "123-86-4", - "transportMethod": "", - "sebc": "", - "usage": "코팅제, 잉크, 접착제 등에서 용매로 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", + "id": 124, + "abbreviation": "NPA", + "nameKr": "프로판올", + "nameEn": "PROPANOL", + "synonymsKr": "노말 프로필 알콜 / 알코올, 프로필 / 오프탈 / 프로판올 / 프로필 알코올 / 2-메틸 에탄올", + "synonymsEn": "1-Propanol / PROPANOL / N-PROPANOL / PROPAN-1-OL / Propyl alcohol / N-PROPYL ALCOHOL / Propanol-1 / 1-Propyl alcohol / PROPANE-1-OL / n-Propan-1-ol / n-C3H7OH / PROPANOL", + "unNumber": "1274", + "casNumber": "71-23-8", + "transportMethod": "포장(3급), 산적액체(Z류)", + "sebc": "D (Dissolver)", + "usage": "반도체나 LCD 등 IT 부품 세정액, 페인트나 잉크제거용도", + "state": "액체", + "color": "무색", + "odor": "에탄올 냄새", + "flashPoint": "2*", + "autoIgnition": "371.rc", + "boilingPoint": "gzzc", + "density": "0.81", + "solubility": "용해", + "vaporPressure": "21mmHg(25t)", + "vaporDensity": "2.1", + "explosionRange": "2.1~13.5%", + "nfpa": { + "health": 1, + "fire": 3, + "reactivity": 0, + "special": "" + }, + "hazardClass": "유해액체물질/Y", + "ergNumber": "129", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨 A)", + "ppeFar": "원거리(레벨 C)", + "msds": { + "hazard": "인화성 액체. 증기 흡입 시 자극 및 중추신경 영향. 해상 유출 시 용해(D)", + "firstAid": "흡입노출 • 의료조치. 산소공급, 인공호흡 __ 피부접촉 - 긴급 의료조치. 화상의 경우 다량의 찬물로 씻을 것, 물과 비누로 씻을 것 ‘’“조지 안구접촉 • 몇 분간 물로 씻을 것. 콘택트렌즈 제거, 긴급 의료조치 경구섭취 • 긴급 의료조치, 입을 씻어낼 것 초동 매응방법 대응장비 보호복 호홉구 보안경 보호장갑 기타장비 3.4형식 (C급) 방독마스크(반면,전면) 주 广, 연호 W 카메가 1형식 (1B) 공기호홉기 O ① 열화상카메라 초기 이격거리 (m) 50 방호거리 (m) 300 해상유출시 ► 유출물질은 고인화성 물질로 증기의 이동에 의한 폭발가능성이 높으며, 눈과 호홉기를 자극할 수 있으므로 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박 통제 (흡연, 불꽃, 스파크 등 모든 정화원 제거) ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 촤소 3,4형식 보호의 착용(사고선 근접 시 1B이상 착용). 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 용해되므로 방제조치 불필요 > 화학방제함 유출물질 농도 탐지, 안전확보 샤까지 지속적인 모니터링 화재 시대피거리(m) 800 + 화재 •폭발시 >", + "fireFighting": "복합가스탐지기 이용 농도 확인(인화성 공유). 먼 곳에서 분무(안개)주수 또는 내알콜포말 이용 화재진압. 열화상카메라 운용(문자일 공유). 화재진압 후에도 사고선 냉각 조치", + "spillResponse": "모든 점화원(불꽃, 불씨, 스파크) 제거하고 주변 해상 통제. 소화포 이용 분무(안개) 주수로 증기들 줄이고 증기운의 이동 억제. 해수에 유출시 용해(D)되어 해상수거 불가. 안전 확보 시까지 지속적 유출물질 농도 탐지 및 모니터링", + "exposure": "TWA 100 ppm, STEL 150 ppm", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPA", + "name": "PROPANOL", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 125, + "abbreviation": "AMP", + "nameKr": "2-아미노-2-메틸-1-프로판올", + "nameEn": "N-PROPYL ALCOHOL", + "synonymsKr": "2-아미노-2-메틸-1-프로판올 / 2-아미노-2-메틸프로판올 / 아미노메틸프로판올 / 2.2-다이메틸에탄올아민 / 2-아미노 아이소뷰틸 알코올 / 2-아미노-2-메틸프로파놀 / 2-아미노-2-메틸프로판-1-올 / 2-아미노다이메틸에탄올 / 2-아미노아이소부탄올 / 베타-아미노아이소부탄올 / 아이소부탄올-2-아민 / 아이소부탄올아민 / 1-프로판올", + "synonymsEn": "2-Amino-2-methyl-1-propanol / 2-AMINO-2-METHYLPROPAN-1-OL / AMP-95 / 2-Amino-2-methylpropanol / 1,1-Dimethyl-2-hydroxyethylamine / Aminomethylpropanol / 2-methyl-2-amino-1-propanol / Karl Fischer / 2,2-Diethyl-ethanolamine / Isobutanolamine / 2-Aminoisobutanol / N-PROPYL ALCOHOL", + "unNumber": "2735", + "casNumber": "124-68-5", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "유기 합성 용매, 제약 산업, 코딩, 화장품\n완충제, ph조절제, 보습 성분 등 활용", + "state": "액체", + "color": "무색", + "odor": "알코올", + "flashPoint": "15℃", + "autoIgnition": "371℃", + "boilingPoint": "97℃", + "density": "0.80", + "solubility": "완전 혼화", + "vaporPressure": "19 mmHg", + "vaporDensity": "2.07", + "explosionRange": "2.15~13.7%", + "nfpa": { + "health": 1, + "fire": 3, + "reactivity": 0, + "special": "" + }, + "hazardClass": "인화성액체", + "ergNumber": "129", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "해상수거 곤란 (완전 혼화)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", + "msds": { + "hazard": "인화성, 해상수거 불가", + "firstAid": "흡입: 신선한 공기. 피부/안구: 물로 세척. 경구: 구토유발 금지, 의료조치.", + "fireFighting": "내알코올성 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제. 분무주수.", + "exposure": "TWA 200 ppm, STEL 250 ppm", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "3", + "ibcTankType": "2G", + "ibcDetection": "C", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19.6", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "AMP", + "name": "N-PROPYL ALCOHOL", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NPROPANOL", + "name": "N-PROPYL ALCOHOL", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 126, + "abbreviation": "ALKYLATE", + "nameKr": "알킬레이트", + "nameEn": "ALKYLATE", + "synonymsKr": "전 범위 알킬화 나프타", + "synonymsEn": "ALKYLATE / Naphtha (petroleum) / full range alkylate CAS / crude naphtha / raw naphtha / naphtha / full range C4-11, C7-12", + "unNumber": "1203", + "casNumber": "64741-64-6", + "transportMethod": "포장(3급), 산적액체", + "sebc": "E (Evaporator)", + "usage": "고급휘발유 원료, 가솔린 블렌딩용", + "state": "액체", + "color": "투명", + "odor": "가솔린 냄새", + "flashPoint": "<-40℃", + "autoIgnition": "300℃", + "boilingPoint": "40~220℃", + "density": "0.8323", + "solubility": "불용", + "vaporPressure": "(물 49.6mnHg)", + "vaporDensity": "3~4", + "explosionRange": "", + "nfpa": { + "health": 2, + "fire": 4, + "reactivity": 0, + "special": "" + }, + "hazardClass": "해양환경관리법/기름", + "ergNumber": "128", + "idlh": "", + "aegl2": "2,000 mg/kg", + "erpg2": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발 (E)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", + "msds": { + "hazard": "고인화성, 흡인성 유해, 피부 자극, 발암 의심", + "firstAid": "흡입노출 • 신선한 곳으로 이동, 의사진료, 산소공급, 의료조치 _ 피부접촉 • 긴급 의료조치, 화상의 경우 찬물로 식힐 것. 비누와 물로 씻을 것 。버스지 안구접촉 • 긴급 의료조치, 20분 이상 흐르는 물에 씻을 것 경구섭취 • 긴급 이료조치, 토하게 하지 말 것 초동 대응방법 m。;다 HI 보호복 호흡구 보안경 보호장갑 기타장비 내 OO 미 3,4형식 (C굽〉 방독마스크(반면, 전면) O O 열화상카메랴 1 초기 이격거리(m) 50 방호거리(m) 300 ►유출물질은 생식기능에 유해영향올 일으키고 홉입 시에는 치명적일 수 있으므로 모든 출동세력 풍상에 위치. 최소 50m 이격거리 유지. 주변선박 통제 해상유출시 ► 인화성 물질로 증기의 이동에 의한 폭발 가능성이 높으므로 홉연, 불꽃. 스파크 등 모든 점화원 제거 ►출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용. 증기홉입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 증발하므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지. 안전확보 시까지 지속적인 모니터링 I 화재 시 대피거리(m) 而 ►유출물질은 연소시 유독가스 방출, 풍상에 위치, 최", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 오일펜스/흡착재 회수.", + "exposure": "", + "regulation": "CAS 64741-64-6" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "ALKYLATE", + "name": "ALKYLATE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ALKYLATE", + "name": "ALKYLATE", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 127, + "abbreviation": "NPTH", + "nameKr": "알킬화 나프타", + "nameEn": "NAPHTHA", + "synonymsKr": "알킬화나프타,중 / 중질알킬화나프타(석유) / 중질알킬화나프타(석유) / 무거운증류액 / 나프타", + "synonymsEn": "HEAVY DISTILLATE / SHELLSOL71 / Heavy alkylate / HEAVY DISTILLATE / Naphtha (Erdoel) / schwere Alkylat- / HEAVY DISTILLATE (10%) / ALKYLATION NAPHTHA, HEAVY / PETROLEUM FOR ANALYSIS EMSURE / 64741-65-7 HEAVY DISTILLATE / Naphtha,petroleum,heavyalkylate / NAPHTHA", + "unNumber": "1263", + "casNumber": "64741-42-0", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "FE (Float-Evaporator)", + "usage": "휘발성 약체 및 석유화학 기초 원료", + "state": "액체", + "color": "투명", + "odor": "독특한 냄새", + "flashPoint": "-18℃ 이하", + "autoIgnition": "자료없음", + "boilingPoint": "-20~220℃", + "density": "0.75~0.773(16t)", + "solubility": "<0.1 g/L (25℃)", + "vaporPressure": "100 mmHg (20℃)", + "vaporDensity": "", + "explosionRange": "1.1~7.6%", + "nfpa": { + "health": 3, + "fire": 4, + "reactivity": 0, + "special": "" + }, + "hazardClass": "해양환경관리법/기쁨", + "ergNumber": "128", + "idlh": "3O 분)", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발©", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", + "msds": { + "hazard": "고인화성, 생식/발암 유해성, 피부/흡입 자극", + "firstAid": "흡입노출 ' • 산소공급.인공호흡.의료조치 피부접촉 • 비누와 물로 씻을 것, 화상의 경우 찬물로 식힐 것, 의료조치 읏급조치 안구접촉 • 몇 분간 조심해서씻을 것.콘택트렌즈 제거 경구섭취 • 즉시의료조치 초동 대응방법 대응장비 보호복 호흡구 보안경 보호장갑 기타장비 3.4형식 (C굽) 방독마스크(반면,전면) O O 열화상카메라 초기 이격거리(m) 50 방호거리(m) 300 해상유출시 ► 유출물질은 극인화성 물질로 증기의 이동에 의한 폭발 가능성이 높으며,유전적인 결함을 유발할 수 있고 암을 일 으킬 수 있는 물질이므로 모든 출동세력 풍상에 위치. 최소 50m 이격거리 유지, 주변선박 통제 (홉연. 불꽃, 스파크 등 모든 점화원 제거) ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용, 증기홉입과 피부와 눈에 접촉을 피할 것 > 유출물질은 증발하므로 방제조치 불필요 > 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 화재시대피거리 (m) 800 + 화재 •폭발시 ► 유출물질윤 연소시 유독가스 방출, 풍상에 위치, 최소 이격거리 유지하고 내알콜포 이용 화재진압 느 열화상카메라 운용(결과전", + "fireFighting": "내알코올 포말/분무주수/CO₂/건조분말. 직사주수 금지.", + "spillResponse": "점화원 제거. 오일펜스/흡착재로 회수. 증기운 이동 억제. 안전 확보 시까지 지속 모니터링.", + "exposure": "TWA 300 mg/㎥", + "regulation": "위험물안전관리법(제4류 제1석유류)" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPTH", + "name": "NAPHTHA", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 128, + "abbreviation": "OLA", + "nameKr": "오레인산", + "nameEn": "OLEIC ACID", + "synonymsKr": "올레산 / 시스-9-옥타데케노산 / 시스-옥타데크-9-에노산 / 시스-올레산 / 올레인산 / 흰올레산 / 올레익애씨드 / 오레인산 / (Z)-9-옥타데칸산 / 델타9-시스-옥타데칸산 / 델타9-시스-올레산 / 레드 기름 / 시스-9-옥타데케노 산 / 시스-델타9-옥타데칸산 / 시스-옥타에크-9-에노 산 / 시스-올레 산 / 흰 올레산 / 올레인산", + "synonymsEn": "Oleic acid / Octadecenoic acid / METHANONE / FORMALDEHYDE SOLUTION / cis-9-Octadecenoic acid / D100 / 9-cis-Octadecenoicacid / Oleic acid, AR / Oleinic acid / cis-Oleic Acid / Oleic Acid - CAS 112-80-1 - Calbiochem / OLEIC ACID", + "unNumber": "3082", + "casNumber": "112-80-1", + "transportMethod": "산적액체", + "sebc": "F (Floater)", + "usage": "세제, 섬유, 페인트, 잉크, 화장품, 의약품, 피혁, \n윤활제 등 제조", + "state": "액체", + "color": "연황색", + "odor": "약한 지방", + "flashPoint": "189℃", + "autoIgnition": "362℃", + "boilingPoint": "360℃", + "density": "0.89", + "solubility": "불용", "vaporPressure": "", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "지방산, 경미한 피부 자극", "ergNumber": "", "idlh": "", "aegl2": "", @@ -14372,14 +12434,88 @@ "responseDistanceFire": "", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "해상부유, 흡착재 회수", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "경미한 피부/안구 자극", + "firstAid": "흡입: 신선한 공기. 피부/안구: 물 세척. 경구: 의료조치.", + "fireFighting": "포말/분무주수/CO₂.", + "spillResponse": "오일펜스/흡착재 회수.", + "exposure": "", + "regulation": "CAS 112-80-1" + }, + "ibcHazard": "S/P", + "ibcShipType": "2", + "ibcTankType": "2G", + "ibcDetection": "R", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6,\n16.2.9", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OLA", + "name": "OLEIC ACID", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "OLA", + "name": "Oleic acid", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 129, + "abbreviation": "1OTEN", + "nameKr": "1-옥텐", + "nameEn": "1-Octene", + "synonymsKr": "카프릴렌 / 알파-옥텐 / 오크릴렌 / 알파-오크틸렌", + "synonymsEn": "1-OCTENE / OCT-1-ENE / Octen / OCTEN-1 / Octylene / Neodene 8 / I-Octen / 1-C8H16 / 1-OCTENE / 1-0ctene / OCTENE-1 / CAPRYLENE / 1-CAPRYLENE / ALPHA-OCTENE / N-1-OCTENE / OCTYLENE / ALPHA-OCTYLENE / 1-OCTYLENE", + "unNumber": "1993", + "casNumber": "111-66-0", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", + "usage": "플라스틱, 합성고무, 윤활유, 표면활성제 등 생산", + "state": "액체", + "color": "무색, 투명", + "odor": "무취", + "flashPoint": "8“C", + "autoIgnition": "256℃", + "boilingPoint": "121℃", + "density": "0.72", + "solubility": "4.1×10⁻⁵ (25℃)", + "vaporPressure": "(물 23.8imHg)", + "vaporDensity": "3.9", + "explosionRange": "0.7~3.9%", + "nfpa": { + "health": 1, + "fire": 4, + "reactivity": 0, + "special": "" + }, + "hazardClass": "유해액체물질/Y", + "ergNumber": "128", + "idlh": "0 분)", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유증발 (FE)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", + "msds": { + "hazard": "인화성, 부식성, 증발(E), 해상수거 불가", + "firstAid": "흡입노출 • 산소공급, 인공호흡, 의료조치 피부접촉 • 피부를 비누와 물로 씻올 것, 화상의 경우 다량의 찬물로 씻을 것 안구접촉 • 20분간 흐르는 물에 씻을 것. 의료조치 경구섭취 • 즉시 의료조치 초통대웅방법 대응장비 보호복 호흡구 보안경 ' 보호장갑 기타장비 3.4형식(C급) 방독마스크(반면.전면) ① ....................... ① 몈화상카메라 1형식 (1B) 공기호홉기 어 이 벌화상차배나 1 초기 이격거리 (m) 50 방호거리 (m) 300 | 해상유출시 ►유출물질은 고인화성으로 증기의 이동에 의한 폭발가능성이 높으며, 호흡기 과민성 유발 등 인제유해성이 있으므로. 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박 통제 (흡연. 룰꽃. 스파크 동 모든 점화원제거) ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용(사고선 근접 시 1B급 착용). 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 부유하면서 증발하므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지. 안전확보 시까지 지속적인 모니터링 1 화재 시대피거리(m) 800 1 + 화재", + "fireFighting": "내알코올성 포말/분무주수/CO₂. 직사주수 금지.", + "spillResponse": "점화원 제거. 주변 해상 통제. 분무주수로 증기운 이동 억제.", "exposure": "", "regulation": "" }, @@ -14389,29 +12525,201 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { - "code": "NBAC", - "name": "N-BUTYL ACETATE", - "company": "", - "source": "화물적부도" + "code": "OTEN", + "name": "OCTENE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "1OTEN", + "name": "1-Octene", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "OCTN", + "name": "Octene", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 206, - "abbreviation": "NoNAROMATICS", - "nameKr": "논-아로마틱스", - "nameEn": "NON AROMATIC RAFFINATE", - "synonymsEn": "NON AROMATIC RAFFINATE", - "synonymsKr": "비방향족 혼합물(연료 첨가제, 공업용 용제원료)", - "unNumber": "", - "casNumber": "64741-46-4 96-37-7 110-54-3 110-82-7", + "id": 130, + "abbreviation": "OX", + "nameKr": "o-자일렌", + "nameEn": "ORTHO-XYLENE", + "synonymsKr": "0-자일렌 / o-자일렌 / o-크실렌 / 오르소디메틸벤젠,1,2-디메틸벤젠,오르소메틸톨루엔 / 오르소자일렌 / 자일렌 / 1,2-크실렌 / 1,2-디메틸벤젠 / O-메틸톨루엔 / O-크실올 / O-자일렌 / 2-자일렌 / 1,2-다이메틸벤젠 / 1,2-자일렌 / 2-메틸톨루엔 / o-다이메틸벤젠 / 벤젠, 1,2-다이메틸- / 오쏘-자일렌 / o-자일렌", + "synonymsEn": "o-Xylene / XYLENES / 1,2-DIMETHYLBENZENE / XYLOL / 1,2-Xylene / o-Xylol / YLENE / ORTHO-XYLENE / 2-methyltoluene / o-Dimethylbenzene / 2-xylene / ORTHO-XYLENE", + "unNumber": "1307", + "casNumber": "95-47-6", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "FE (Float-Evaporator)", + "usage": "플라스틱, 고분자 물질, 페인트, 의약품 등 다양한 \n화학물질의 전구체", + "state": "액체", + "color": "무색", + "odor": "방향족", + "flashPoint": "3ZC", + "autoIgnition": "436℃", + "boilingPoint": "144℃", + "density": "0.87", + "solubility": "0.18 g/L (25℃)", + "vaporPressure": "(물 23.8(miHg)", + "vaporDensity": "3.7", + "explosionRange": "0.9~6.7%", + "nfpa": { + "health": 2, + "fire": 3, + "reactivity": 0, + "special": "" + }, + "hazardClass": "인화성액체, 비수용 유해성", + "ergNumber": "130", + "idlh": "900 ppm", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "부유증발 (FE)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", + "msds": { + "hazard": "인화성, 부유증발(FE), 해상수거 불가", + "firstAid": "흡입: 현기증/두통/중추신경계 → 의료조치, 산소공급. 피부: 자극 → 다량의 물과 비누로 세척. 안구: 심한 눈자극 → 눈뜨며 흘리는 물로 세척. 경구: 치명적(간손상), 폐렴 → 의료조치, 구토유발 금지.", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 내알코올 포말 이용. 직사주수 금지. 화재진압 후에도 사고선 냉각 조치.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 분무주수로 증기운 이동 억제. 부유증발(FE)되어 내화학흡착재 등 이용 흡착제거.", + "exposure": "TWA 100 ppm, STEL 150 ppm, IDLH 900 ppm", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "OX", + "name": "ORTHO-XYLENE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "OX", + "name": "o-Xylene", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 131, + "abbreviation": "PACID", + "nameKr": "메트아세톤산", + "nameEn": "Propionic acid", + "synonymsKr": "프로판산 / 카복시에 테 인 / 에테 인 카복실산 / 메 트아세톤산 / 모노프로프 / 모조아세트산", + "synonymsEn": "Propionic acid / PROPANOIC ACID / C3 / C2H5COOH / Propionoic acid / METHYL ACETIC ACID / Adofeed / Antischim B / TRIANOIC ACID / CARBOXYETHANE / 1-Propionic acid", + "unNumber": "1848", + "casNumber": "79-09-4", + "transportMethod": "포장(8급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "식품 보존제 사용", + "state": "오일류 액체", + "color": "무색,투명", + "odor": "불쾌한악취", + "flashPoint": "52’C", + "autoIgnition": "465'C", + "boilingPoint": "141*C", + "density": "0.99", + "solubility": "용해", + "vaporPressure": "3.53mmHg(25t)", + "vaporDensity": "2.6", + "explosionRange": "2.9~12.1%", + "nfpa": { + "health": 3, + "fire": 2, + "reactivity": 0, + "special": "" + }, + "hazardClass": "유해액체물질/Y", + "ergNumber": "132", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨 A)", + "ppeFar": "원거리(레벨 C)", + "msds": { + "hazard": "독성 및 부식성 유해물질로 인체유해성 매우 큼. 해상유출 시 용해(D), 해상수거 불가", + "firstAid": "흡입노출 • 즉시 의료조치 피부접촉 • 물에 씻을 것, 간급 의료조치, 화상의 경우 다량의 찬물로 씻올 것 안구접촉 • 물로 조심해서 씻을 것, 콘택트렌즈 제거 경구섭취 • 입을 씻어낼 것. 토하게 하지 말 것", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무(안개)주수 또는 내알콜포말 이용 화재진압, 직사주수 금지. 열화상카메라 운용. 화재진압 후에도 사고선 냉각 조치", + "spillResponse": "모든 점화원 제거하고 주변 해상 통제. 소화포 이용 분무(안개) 주수로 증기 줄이고 증기운 이동 억제. 해수에 유출시 용해(D)되어 해상수거 불가. 지속적 유출물질 농도 탐지 및 모니터링", + "exposure": "TWA 10 ppm, STEL 15 ppm", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "3", + "ibcTankType": "2G", + "ibcDetection": "C", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.11.2, 15.11.3, 15.11.4,\n15.11.6, 15.11.7, 15.11.8,\n15.12, 15.17, 15.19", + "emsCode": "F-E, S-C", + "emsFire": "F-E", + "emsSpill": "S-C", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PA", + "name": "PROPIONIC ACID", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PACID", + "name": "PROPIONIC ACID", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PACID", + "name": "Propionic acid", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PAHD", + "name": "Propionic anhydride", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 132, + "abbreviation": "RBDPKS", + "nameKr": "정제, 탈색, 탈취 공정을 거친 팜핵 스테아린", + "nameEn": "RBD Palm kernel stearin", + "synonymsKr": "오일팜커넬오일 / 오일팜커넬오일 / 야자핵유 / 팜커널오일", + "synonymsEn": "PALM KERNEL OIL / W 500 / Tefacid / palmnutoil / W 500 (oil) / Palm seed oil / palm-kemel oil / PALMKERNELOILS / Oele, Palmkern- / PALM KERNEL OIL / Oils, palm kernel", + "unNumber": "1", + "casNumber": "91079-14-0", "transportMethod": "", "sebc": "", "usage": "", @@ -14461,886 +12769,106 @@ "emsFire": "", "emsSpill": "", "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NoNAROMATICS", - "name": "NON AROMATIC RAFFINATE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 207, - "abbreviation": "NPA", - "nameKr": "프로판올", - "nameEn": "PROPANOL", - "synonymsEn": "1-Propanol / PROPANOL / N-PROPANOL / PROPAN-1-OL / Propyl alcohol / N-PROPYL ALCOHOL / Propanol-1 / 1-Propyl alcohol / PROPANE-1-OL / n-Propan-1-ol / n-C3H7OH / PROPANOL", - "synonymsKr": "1-프로판올 / n-프로필알코올 / 노말-프로필알콜 / 에틸칼비놀 / 프로필알콜 / 프로파놀 / N-프로파놀 / 1-하이드록시프로판 / 1-프로파놀 / 프로필릭알콜 / 1-프로필알콜 / N-프로판올 / 노말프로필알코올 / 프로필알코올 / 노말-프로필알콜 / 프로판올", - "unNumber": "1274", - "casNumber": "71-23-8 107-98-2", - "transportMethod": "", - "sebc": "", - "usage": "반도체나 LCD 등 IT 부품 세정액, 페인트나 잉크제거용도", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NPA", - "name": "PROPANOL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 208, - "abbreviation": "AMP", - "nameKr": "2-아미노-2-메틸-1-프로판올", - "nameEn": "N-PROPYL ALCOHOL", - "synonymsEn": "2-Amino-2-methyl-1-propanol / 2-AMINO-2-METHYLPROPAN-1-OL / AMP-95 / 2-Amino-2-methylpropanol / 1,1-Dimethyl-2-hydroxyethylamine / Aminomethylpropanol / 2-methyl-2-amino-1-propanol / Karl Fischer / 2,2-Diethyl-ethanolamine / Isobutanolamine / 2-Aminoisobutanol / N-PROPYL ALCOHOL", - "synonymsKr": "2-아미노-2-메틸-1-프로판올 / 2-아미노-2-메틸프로판올 / 아미노메틸프로판올 / 2.2-다이메틸에탄올아민 / 2-아미노 아이소뷰틸 알코올 / 2-아미노-2-메틸프로파놀 / 2-아미노-2-메틸프로판-1-올 / 2-아미노다이메틸에탄올 / 2-아미노아이소부탄올 / 베타-아미노아이소부탄올 / 아이소부탄올-2-아민 / 아이소부탄올아민 / 1-프로판올", - "unNumber": "2735", - "casNumber": "124-68-5", - "transportMethod": "", - "sebc": "", - "usage": "유기 합성 용매, 제약 산업, 코딩, 화장품 완충제, ph조절제, 보습 성분 등 활용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "FT", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12, 15.17, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "AMP", - "name": "N-PROPYL ALCOHOL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 209, - "abbreviation": "NPROPANOL", - "nameKr": "2-아미노-2-메틸-1-프로판올", - "nameEn": "N-PROPYL ALCOHOL", - "synonymsEn": "2-Amino-2-methyl-1-propanol / 2-AMINO-2-METHYLPROPAN-1-OL / AMP-95 / 2-Amino-2-methylpropanol / 1,1-Dimethyl-2-hydroxyethylamine / Aminomethylpropanol / 2-methyl-2-amino-1-propanol / Karl Fischer / 2,2-Diethyl-ethanolamine / Isobutanolamine / 2-Aminoisobutanol / N-PROPYL ALCOHOL", - "synonymsKr": "2-아미노-2-메틸-1-프로판올 / 2-아미노-2-메틸프로판올 / 아미노메틸프로판올 / 2.2-다이메틸에탄올아민 / 2-아미노 아이소뷰틸 알코올 / 2-아미노-2-메틸프로파놀 / 2-아미노-2-메틸프로판-1-올 / 2-아미노다이메틸에탄올 / 2-아미노아이소부탄올 / 베타-아미노아이소부탄올 / 아이소부탄올-2-아민 / 아이소부탄올아민 / 1-프로판올", - "unNumber": "2735", - "casNumber": "124-68-5", - "transportMethod": "", - "sebc": "", - "usage": "유기 합성 용매, 제약 산업, 코딩, 화장품 완충제, ph조절제, 보습 성분 등 활용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "FT", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12, 15.17, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NPROPANOL", - "name": "N-PROPYL ALCOHOL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 210, - "abbreviation": "ALKYLATE", - "nameKr": "알킬레이트", - "nameEn": "ALKYLATE", - "synonymsEn": "·Naphtha (petroleum) full range alkylate CAS crude naphtha raw naphtha naphtha full range C4-11, C7-12", - "synonymsKr": "전 범위 알킬화 나프타", - "unNumber": "1203", - "casNumber": "64741-64-6", - "transportMethod": "", - "sebc": "", - "usage": "고급휘발유 원료, 가솔린 블렌딩용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "ALKYLATE", - "name": "ALKYLATE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 211, - "abbreviation": "NPTH", - "nameKr": "알킬화 나프타", - "nameEn": "NAPHTHA", - "synonymsEn": "HEAVY DISTILLATE / SHELLSOL71 / Heavy alkylate / HEAVY DISTILLATE / Naphtha (Erdoel) / schwere Alkylat- / HEAVY DISTILLATE (10%) / ALKYLATION NAPHTHA, HEAVY / PETROLEUM FOR ANALYSIS EMSURE / 64741-65-7 HEAVY DISTILLATE / Naphtha,petroleum,heavyalkylate / NAPHTHA", - "synonymsKr": "알킬화나프타,중 / 중질알킬화나프타(석유) / 중질알킬화나프타(석유) / 무거운증류액 / 나프타", - "unNumber": "1263", - "casNumber": "64741-85-7", - "transportMethod": "", - "sebc": "", - "usage": "휘발성 약체 및 석유화학 기초 원료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NPTH", - "name": "NAPHTHA", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 212, - "abbreviation": "OLA", - "nameKr": "오레인산", - "nameEn": "OLEIC ACID", - "synonymsEn": "Oleic acid / Octadecenoic acid / METHANONE / FORMALDEHYDE SOLUTION / cis-9-Octadecenoic acid / D100 / 9-cis-Octadecenoicacid / Oleic acid, AR / Oleinic acid / cis-Oleic Acid / Oleic Acid - CAS 112-80-1 - Calbiochem / OLEIC ACID", - "synonymsKr": "올레산 / 시스-9-옥타데케노산 / 시스-옥타데크-9-에노산 / 시스-올레산 / 올레인산 / 흰올레산 / 올레익애씨드 / 오레인산 / (Z)-9-옥타데칸산 / 델타9-시스-옥타데칸산 / 델타9-시스-올레산 / 레드 기름 / 시스-9-옥타데케노 산 / 시스-델타9-옥타데칸산 / 시스-옥타에크-9-에노 산 / 시스-올레 산 / 흰 올레산 / 올레인산", - "unNumber": "3082", - "casNumber": "112-80-1", - "transportMethod": "", - "sebc": "", - "usage": "세제, 섬유, 페인트, 잉크, 화장품, 의약품, 피혁, 윤활제 등 제조", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "T", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "OLA", - "name": "OLEIC ACID", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 213, - "abbreviation": "OTEN", - "nameKr": "옥텐", - "nameEn": "OCTENE", - "synonymsEn": "1-OCTENE / OCT-1-ENE / Octen / OCTEN-1 / Octylene / Neodene 8 / I-Octen / 1-C8H16 / 1-OCTENE / 1-0ctene / OCTENE-1/ OCTENE", - "synonymsKr": "1-옥텐 / 1-옥틸렌 / 1-카프릴렌 / 알파옥텐 / 옥텐 / 옥틸렌 / 카프리렌 / N-1-옥텐 / 1-n-옥텐 / n-옥텐-1 / 알파-옥텐 / 알파-옥틸렌 / 옥트-1-엔 / 카프릴렌/ 1-옥텐", - "unNumber": "1993 3295", - "casNumber": "111-66-0", - "transportMethod": "", - "sebc": "", - "usage": "플라스틱, 합성고무, 윤활유, 표면활성제 등 생산", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "OTEN", - "name": "OCTENE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 214, - "abbreviation": "OX", - "nameKr": "o-자일렌", - "nameEn": "ORTHO-XYLENE", - "synonymsEn": "o-Xylene / XYLENES / 1,2-DIMETHYLBENZENE / XYLOL / 1,2-Xylene / o-Xylol / YLENE / ORTHO-XYLENE / 2-methyltoluene / o-Dimethylbenzene / 2-xylene/ ORTHO-XYLENE", - "synonymsKr": "0-자일렌 / o-자일렌 / o-크실렌 / 오르소디메틸벤젠,1,2-디메틸벤젠,오르소메틸톨루엔 / 오르소자일렌 / 자일렌 / 1,2-크실렌 / 1,2-디메틸벤젠 / O-메틸톨루엔 / O-크실올 / O-자일렌 / 2-자일렌 / 1,2-다이메틸벤젠 / 1,2-자일렌 / 2-메틸톨루엔 / o-다이메틸벤젠 / 벤젠, 1,2-다이메틸- / 오쏘-자일렌/ o-자일렌", - "unNumber": "1307", - "casNumber": "95-47-6", - "transportMethod": "", - "sebc": "", - "usage": "플라스틱, 고분자 물질, 페인트, 의약품 등 다양한 화학물질의 전구체", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "OX", - "name": "ORTHO-XYLENE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 215, - "abbreviation": "PA", - "nameKr": "프로피온산", - "nameEn": "PROPIONIC ACID", - "synonymsEn": "Propionic acid / PROPANOIC ACID / C3 / C2H5COOH / Propionoic acid / METHYL ACETIC ACID / Adofeed / Antischim B / TRIANOIC ACID / CARBOXYETHANE / 1-Propionic acid/ PROPIONIC ACID", - "synonymsKr": "프로피온산 / 루프리솔 / 메트아세톤산 / 메틸아세트산 / 모조아세트산 / 센트리그레인보존제 / 에틸포름산 / 테녹스P그레인보존제 / 프로조인 / 프로파노산 / 프로피온산그레인보존제 / 에탄카르복실산 / 카르복시에탄 /프로피오닉애씨드 / 프로피온산", - "unNumber": "1848", - "casNumber": "79-09-4", - "transportMethod": "", - "sebc": "", - "usage": "식품 보존제 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "FT", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.11.2, 15.11.3, 15.11.4, 15.11.6, 15.11.7, 15.11.8, 15.12, 15.17, 15.19", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PA", - "name": "PROPIONIC ACID", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 216, - "abbreviation": "PACID", - "nameKr": "투프리솔", - "nameEn": "PROPIONIC ACID", - "synonymsEn": "Propionic acid / PROPANOIC ACID / C3 / C2H5COOH / Propionoic acid / METHYL ACETIC ACID / Adofeed / Antischim B / TRIANOIC ACID / CARBOXYETHANE / 1-Propionic acid / PROPIONIC ACID", - "synonymsKr": "프로피온산 / 루프리솔 / 메트아세톤산 / 메틸아세트산 / 모조아세트산 / 센트리그레인보존제 / 에틸포름산 / 테녹스P그레인보존제 / 프로조인 / 프로파노산 / 프로피온산그레인보존제 / 에탄카르복실산 / 카르복시에탄 /프로피오닉애씨드 / 프로피온산", - "unNumber": "1848", - "casNumber": "79-09-4", - "transportMethod": "", - "sebc": "", - "usage": "식품 보존제 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "FT", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.11.2, 15.11.3, 15.11.4, 15.11.6, 15.11.7, 15.11.8, 15.12, 15.17, 15.19", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PACID", - "name": "PROPIONIC ACID", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 217, - "abbreviation": "HPS", - "nameKr": "팜스테아린", - "nameEn": "HYDROGENATED PALM STEARIN", - "synonymsEn": "팜 스테아린", - "synonymsKr": "팜스테아린", - "unNumber": "-", - "casNumber": "91079-14-0", - "transportMethod": "", - "sebc": "", - "usage": "초콜릿, 쿠키, 사탕 등 다양한 식품 생산에 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", "cargoCodes": [ { "code": "HPS", "name": "HYDROGENATED PALM STEARIN", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 218, - "abbreviation": "PALM", - "nameKr": "팜유", - "nameEn": "PALM OIL", - "synonymsEn": "·Fatty acids, palm-oil, me esters ·Methyl Myristate C14", - "synonymsKr": "·지방산류, 야자유, 메틸 에스터류 ·메틸 미리스테이트 C14", - "unNumber": "3082", - "casNumber": "91051-34-2", - "transportMethod": "", - "sebc": "", - "usage": "식품, 화장품, 세제, 바이오 연료, 의약품 산업용품 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "P", - "ibcShipType": "IMO 2(k)TYPE", - "ibcTankType": "2G", - "ibcDetection": "No", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "PALM", - "name": "PALM OIL", - "company": "", - "source": "화물적부도" + "code": "FRPS", + "name": "Fully refined palm stearin", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NBPKS", + "name": "NB palm kernel stearin", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NBDPKL", + "name": "NBD palm kernel olein", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PKS", + "name": "Palm kernel stearin", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RBDPKS", + "name": "RBD Palm kernel stearin", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RBDPS", + "name": "RBD Palm stearin", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 219, - "abbreviation": "PAO", - "nameKr": "팜지방산 증류액", - "nameEn": "PALM ACID OIL", - "synonymsEn": "·palm butter, palm oil fatty acids", - "synonymsKr": "/ 지방산,팜유/ 팜산유", + "id": 133, + "abbreviation": "PFAR", + "nameKr": "팜유 지방산 잔류물", + "nameEn": "Palm fatty acid residues", + "synonymsKr": "PAO/지방산.팜오일", + "synonymsEn": "Fatty acids, palm-oil / Palm oil acid / PALMOELFETTSAEURE / Fatty acids, palm-oil / Fatty acids, palm-oil USP / EP / BP / iazanium,1-dodecoxydodecane,sulfate / Palm kernel / palm based fatty acid", "unNumber": "3082", "casNumber": "68440-15-3", "transportMethod": "", "sebc": "", - "usage": "비누, 세제, 화장품, 바이오디젤 원료 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", + "usage": "바이오연료공급원료 험 해 류 위 유 분 피부부식성/자극성(구분2) 만성 수생환경 유해성(구분4) 우", + "state": "액체", + "color": "흰색, 호박색", + "odor": "자료없음", + "flashPoint": "자료없음", + "autoIgnition": "자료없음", "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "density": "0.906", + "solubility": "낮음", + "vaporPressure": "(물 17.5mniHg)", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, + "health": 1, "fire": 0, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Y", "ergNumber": "", - "idlh": "", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", + "responseDistanceFire": "• 일부는 탈 수 있으나 쉽게 점화하지 않음", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", + "marineResponse": "부유 (F)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 신선한 곳으로 이동, 긴급 의료조치. 산소공급, 인공호흡 물질톡성 인체 유해성 화재 침강 용해 증발 증기밀도 (위험성) (S=l) (물) (물종기압) (공기니) X X (읺 (잆 자료없음 인화점 자료없음 발화점 자료없음 긇는점 (5£义^#^;체) 수용해도 낮음 상온상태 액체 색상 흰색, 호박색 냄새 자료없음 비중 0.906 증기압 무시할만함 휘발성 낮음 점도 자료없음 증기밀도 자료없음 급성독성 TWA(8 시간) 경구(LD50) 경피 (LD50) 홉입 (LC50) 노춯기준 STEL(15분) 자 S(거 O >10,000 자루어。 노해 자료언\" '’‘9/kg IDLH(30 분) 칙첩 뮈험농도 일반증상 흡입 상부호흡및 기도 자극 피부 자극또는피부염 안구 화상및각막 불투명 경구 복통 및 설사 응급조치 피부접촉 • 20분 이상 흐르는 물에 씻을 것, 즉시 의료조치 안구접촉 • 20분 이상 흐르는 물에 씻을 것. 즉시 의료조치 경구섭취 •긴급의료조치 초동대옹방법 보호복 호흡구 보안경 보호장갑 기타장비 대응장비 5,6형식 (일회용방제복) 방진마스크 O O 열화상카메라 1 초기 이격거리(", "fireFighting": "", "spillResponse": "", "exposure": "", "regulation": "" }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "No", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -15349,58 +12877,94 @@ { "code": "PAO", "name": "PALM ACID OIL", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PFAD", + "name": "PALM FATTY ACID DISTILLATE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "POME", + "name": "Palm acid oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PAO", + "name": "Palm acid oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PFA", + "name": "Palm fatty acid", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PFAD", + "name": "Palm fatty acid distillate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PFAR", + "name": "Palm fatty acid residues", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 220, + "id": 134, "abbreviation": "PCE", "nameKr": "퍼클로로에틸렌", "nameEn": "PERCHLOROETHYLENE", - "synonymsEn": "Tetrachloroethylene / PERCHLOROETHYLENE / PCE / PERCHLORETHYLENE / Nema / TETRACHLOROETHENE / PERC / C2Cl4 / Tetrachlorethylene / Perk / Tetrachlorethen /", - "synonymsKr": "테트라클로로에틸렌 / 테트라클로로에틸렌* / 사염화에틸렌 / 퍼클로로에틸렌 / 디다켄 / 안킬로스틴 / 퍼클로로에틸렌 / 퍼클로로에텐 / 1,1,2,2-테트 / 퍼클로로에틸렌(P.C.E)/ 퍼클로로에틸렌", + "synonymsKr": "퍼 클로르에틸렌 / 테 트라클로르에틸렌 / 카본 바이 클로 라이 드", + "synonymsEn": "Tetrachloroethylene / PERCHLOROETHYLENE / PCE / PERCHLORETHYLENE / Nema / TETRACHLOROETHENE / PERC / C2Cl4 / Tetrachlorethylene / Perk / Tetrachlorethen", "unNumber": "1897", "casNumber": "127-18-4", - "transportMethod": "", - "sebc": "", + "transportMethod": "산적액체(Y류)", + "sebc": "S (Sinker)", "usage": "브레이크 세정제 및 접착제 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", + "state": "액체", + "color": "무색", + "odor": "달콤한 냄새", + "flashPoint": "비인", + "autoIgnition": "650℃", + "boilingPoint": "121℃", + "density": "1.6277", + "solubility": "0.0015 g/L (25℃)", + "vaporPressure": "(물 17.5mnHg))", + "vaporDensity": "5.83", "explosionRange": "", "nfpa": { - "health": 0, + "health": 2, "fire": 0, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "160", + "idlh": "150 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "100m", + "marineResponse": "침강 (S)", + "ppeClose": "근거리(레벨 A)", + "ppeFar": "원거리(레벨 C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "불연성이나 가열 시 독성가스(포스겐, 염화수소) 발생. 해상 유출 시 침강(S)", + "firstAid": "흡입노출 • 의료조치, 인공호흡, 산소공급 피부접촉 • 뜨거운 물질의 경우 찬물로 식힐 것, 긴급 의료조치, 즉시 20분 이상 흐르는 물에 씻을 것 안구접촉 • 몇 분간 물로 조심해서씻을 것. 콘택트렌즈 제거 경구섭취 • 의학조치,위세척 고려", + "fireFighting": "자체 불연. 주변 화재 시 물분무·드라이케미컬·CO2·포말로 화재원 냉각 진압. 가열된 용기에서 독성가스(포스겐 등) 발생 주의", + "spillResponse": "점화원 제거 불필요하나 증기 흡입 주의. 누출물 차단 후 흡착제·모래로 회수, 밀폐용기에 보관. 해상 유출 시 침강하므로 해상수거 불가, 주변 모니터링", + "exposure": "TWA 25 ppm, STEL 100 ppm, IDLH 150 ppm", "regulation": "" }, "ibcHazard": "", @@ -15417,125 +12981,69 @@ { "code": "PCE", "name": "PERCHLOROETHYLENE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 221, - "abbreviation": "PERC", - "nameKr": "퍼클로로에틸렌", - "nameEn": "PERCHLOROETHYLENE", - "synonymsEn": "Tetrachloroethylene / PERCHLOROETHYLENE / PCE / PERCHLORETHYLENE / Nema / TETRACHLOROETHENE / PERC / C2Cl4 / Tetrachlorethylene / Perk / Tetrachlorethen /", - "synonymsKr": "테트라클로로에틸렌 / 테트라클로로에틸렌* / 사염화에틸렌 / 퍼클로로에틸렌 / 디다켄 / 안킬로스틴 / 퍼클로로에틸렌 / 퍼클로로에텐 / 1,1,2,2-테트 / 퍼클로로에틸렌(P.C.E)/ 퍼클로로에틸렌", - "unNumber": "1897", - "casNumber": "127-18-4", - "transportMethod": "", - "sebc": "", - "usage": "브레이크 세정제 및 접착제 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "PERC", "name": "PERCHLOROETHYLENE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PCE", + "name": "Perchloroethylene", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 222, + "id": 135, "abbreviation": "PD", "nameKr": "1,3-펜타디엔", "nameEn": "TRANS-1,3-PENTADIENE", - "synonymsEn": "1,3-PENTADIENE / PIPERYLENE / Penta-1,3-diene / TRANS-PIPERYLENE / m-Pentadiene / 1,3-Piperlene / 1,3-Pentadine / l,3-Pentadiene / Pentadiene-1,3 / CH2=CHCH=CHCH3/ 1,3-Pentadiene", "synonymsKr": "1,3-펜타디엔 / 1,3-PD / 1-메틸부타디엔 / 메틸 부타디엔 / 피페릴렌 / 1,3-펜타디엔", - "unNumber": "1993 3295", + "synonymsEn": "1,3-PENTADIENE / PIPERYLENE / Penta-1,3-diene / TRANS-PIPERYLENE / m-Pentadiene / 1,3-Piperlene / 1,3-Pentadine / l,3-Pentadiene / Pentadiene-1,3 / CH2=CHCH=CHCH3 / 1,3-Pentadiene", + "unNumber": "1993\n3295", "casNumber": "504-60-9", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", "usage": "EPDM 고무 제조 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "state": "액체", + "color": "무색", + "odor": "매캐한 냄새", + "flashPoint": "-48℃", "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "boilingPoint": "42℃", + "density": "0.68", + "solubility": "0.23 g/L (25℃)", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "2.35", + "explosionRange": "2.0 ~ 8.3%", "nfpa": { "health": 0, - "fire": 0, - "reactivity": 0, + "fire": 4, + "reactivity": 2, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "128", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "1m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발 (E)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "고인화성, 해상수거 불가", + "firstAid": "흡입노출 • 신선한 공기 호흠 / 숨을 쉬지 않는다면 인공호흡 / 즉시 의사의 도움 피부접촉 • 물과 비누를 사용하여 적어도 15분 정도 씻어내고 오염된 옷과 신발 제거 응급조치 안구접촉 - 눈꺼풀을 위아래로 들어 올려 적어도 15분 정도 씻어낸다 경구섭취 • 몸올 따듯하게 하는 것 외에 어떠한 조치도 취하지 말 것", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 일반포말 이용. 직사주수 금지.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 분무주수로 증기운 이동 억제.", "exposure": "", "regulation": "" }, @@ -15545,66 +13053,66 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { "code": "PD", "name": "TRANS-1,3-PENTADIENE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 223, + "id": 136, "abbreviation": "PDEB", "nameKr": "1.4-디에틸벤젠", "nameEn": "1,4-DIETHYLBENZENE", - "synonymsEn": "Benzene, 1,4-diethyl- / PDEB / P-DIETHYLBENZENE / 1.4-Diethylben / p-diethylenzene / PDEB )1,4-Diethy / p-diethyl-benzen / 1,4-diethyl-benzen / 1,4-DIETHYLBENZENE / para-Diethylbenzene/ 1.4-DIETHYLBENZEN", - "synonymsKr": "1,4-다이에틸벤젠 / 1,4-디에틸벤젠 / 1.4-디에틸벤젠/ 1.4-디에틸벤젠", + "synonymsKr": "벤젠, 1,4-디에틸- / 벤젠 P-다이에틸 / P-다이에틸벤젠 / 1,4-다이에틸벤졸", + "synonymsEn": "Benzene, 1,4-diethyl- / PDEB / P-DIETHYLBENZENE / 1.4-Diethylben / p-diethylenzene / PDEB )1,4-Diethy / p-diethyl-benzen / 1,4-diethyl-benzen / 1,4-DIETHYLBENZENE / para-Diethylbenzene / 1.4-DIETHYLBENZEN", "unNumber": "2049", "casNumber": "105-05-5", - "transportMethod": "", - "sebc": "", + "transportMethod": "산적액체(Y류)", + "sebc": "E (Evaporator)", "usage": "가교 플리스티렌 생산에 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "액체", + "color": "무채색", + "odor": "휘", + "flashPoint": "55℃", + "autoIgnition": "430℃", + "boilingPoint": "184℃", + "density": "0,862", + "solubility": "24.8mg/L(25“C)", + "vaporPressure": "1.06mmHg(25'C)", + "vaporDensity": "4.6", + "explosionRange": "0.7~6.0%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "128", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "위험도", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유증발 (FE)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성, 증발(E), 해상수거 불가", + "firstAid": "흡입: 신선한 공기. 피부/안구: 물로 세척. 경구: 의료조치.", + "fireFighting": "분무주수/포말/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제.", + "exposure": "TWA 3,200mg/㎥, STEL 100ppm", "regulation": "" }, "ibcHazard": "", @@ -15613,163 +13121,119 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { "code": "PDEB", "name": "1,4-DIETHYLBENZENE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PDEBZN", + "name": "p-Diethylbenzene", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 224, - "abbreviation": "PENOL", - "nameKr": "페놀", - "nameEn": "Phenol", - "synonymsEn": "PhOH / CARBOLIC ACID / Fenol / PHENOL CRYSTALS / Phenol, water saturated, stabilized / Benzophenol / HYDROXYBENZENE / LIQUEFIEDPHENOL,LIQUEFIED,USP / PHENIC ACID / LIQUIFIED PHENOL PHENOL", - "synonymsKr": "페놀 / 모노페놀 / 모노히드록시벤젠 / 벤젠올 / 페닌산 / 페닐수산화물 / 페닐알코올 / 히드록시벤젠 / 모노하이드록시벤젠 / 석탄산 / 옥시벤젠 / 카르볼산 / 페닐산 / 펜산 / 하이드록시벤젠/ 페놀", - "unNumber": "1671(고) 2312(액)", + "id": 137, + "abbreviation": "HPHNL", + "nameKr": "이온 페놀", + "nameEn": "Hydrated phenol", + "synonymsKr": "벤젠올 / 석탄산 / 모노페놀 / 펜산 / 페닐 알코올 / 페닐산 / 카보닐산", + "synonymsEn": "Phenol / PhOH / CARBOLIC ACID / Fenol / PHENOL CRYSTALS / Phenol, water saturated, stabilized / Benzophenol / HYDROXYBENZENE / LIQUEFIEDPHENOL,LIQUEFIED,USP / PHENIC ACID / LIQUIFIED PHENOL", + "unNumber": "1671", "casNumber": "108-95-2", - "transportMethod": "", - "sebc": "", - "usage": "플라스틱, 폴리카보네이트, 에폭시, 나일론 등 생산", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "소독약, 가소제, 의약품 급성독성-경구(구분3) 급성독성-경피 (구분3) -구분2 만성 수생환경 유해성(구분2)", + "state": "고체(녹는점 40℃)", + "color": "무색, 흰색", + "odor": "뚜렷한", + "flashPoint": "7*", + "autoIgnition": "715℃", + "boilingPoint": "182℃", + "density": "1.06", + "solubility": "83 g/L (25℃)", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "3.24", + "explosionRange": "1.36~10%", "nfpa": { - "health": 0, - "fire": 0, + "health": 4, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "153", + "idlh": "250 ppm", + "aegl2": "23 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "25m", + "responseDistanceSpillNight": "25m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨 A)", + "ppeFar": "원거리(레벨 C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "독성·부식성·인화성. 증기 흡입 시 유독가스 발생, 피부 접촉 시 유독성 흡수", + "firstAid": "흡입노출 피부접촉 • 즉시 의료조치 • 물로 씻을 것, 화상의 경우 찬물로 씻을 것. 의료조치 OU 소지 안구접촉 • 몇 분간 물로 조심해서 씻을 것, 콘택트렌즈 제거 경구섭취 • 의료조치", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무(안개)주수 또는 알코올포말 이용 화재진압. 반경 800m 이상 통제. 화재진압 후에도 사고선 냉각 조치", + "spillResponse": "점화원 제거하고 주변 해상 통제. 분무 주수로 증기 억제. 해수에 용해(D)되어 해상수거 곤란. 안전 확보 시까지 지속 모니터링. 초기 50m, 방호거리 300m", + "exposure": "TWA 5 ppm, STEL 15 ppm, AEGL-2 23 ppm, IDLH 250 ppm", "regulation": "" }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "T", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12, 15.17, 15.19, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-A, S-A", + "emsFire": "F-A", + "emsSpill": "S-A", "emsFirstAid": "", "cargoCodes": [ { "code": "PENOL", "name": "Phenol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 225, - "abbreviation": "PFAD", - "nameKr": "지방산, 팜오일", - "nameEn": "PALM FATTY ACID DISTILLATE", - "synonymsEn": "·palm butter, palm oil fatty acids", - "synonymsKr": "/ 지방산,팜유/ 팜산유", - "unNumber": "3082", - "casNumber": "68440-15-3", - "transportMethod": "", - "sebc": "", - "usage": "비누, 세제, 화장품, 바이오디젤 원료 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "No", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "PFAD", - "name": "PALM FATTY ACID DISTILLATE", - "company": "", - "source": "화물적부도" + "code": "HPHNL", + "name": "Hydrated phenol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MPCRSL", + "name": "m-p-Cresol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PPHNL", + "name": "Pure phenol", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 226, + "id": 138, "abbreviation": "PFO", "nameKr": "열분해연료유", "nameEn": "PYROLYSIS FUEL OIL", - "synonymsEn": "PYROLYSIS FUEL OIL", "synonymsKr": "열분해연료유", + "synonymsEn": "PYROLYSIS FUEL OIL", "unNumber": "-", "casNumber": "69013-21-4", "transportMethod": "", @@ -15825,24 +13289,104 @@ { "code": "PFO", "name": "PYROLYSIS FUEL OIL", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 227, + "id": 139, + "abbreviation": "PG", + "nameKr": "열분해가솔린", + "nameEn": "PYROLYSIS GASOLINE", + "synonymsKr": "열분해 가솔린", + "synonymsEn": "PYROLYSIS GASOLINE", + "unNumber": "1203", + "casNumber": "68606-10-0", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "FE (Float-Evaporator)", + "usage": "방향족 공장 연료", + "state": "액체", + "color": "연황색", + "odor": "방향성", + "flashPoint": "-27~-11℃", + "autoIgnition": "463~520℃", + "boilingPoint": "", + "density": "0.79~0.91", + "solubility": "불용", + "vaporPressure": "", + "vaporDensity": "2.8~3.8", + "explosionRange": "0.9~7.7%", + "nfpa": { + "health": 2, + "fire": 3, + "reactivity": 0, + "special": "" + }, + "hazardClass": "고인화성, 부유증발(FE), 혼합물(벤젠/톨루엔 등)", + "ergNumber": "128", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "반경 800m 이상", + "responseDistanceSpillDay": "반경 50m 이상", + "responseDistanceSpillNight": "중 300m 이상", + "marineResponse": "해상부유, 증발", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", + "msds": { + "hazard": "고인화성, 발암성, 흡인성 유해, 중추신경계", + "firstAid": "흡입: 두통, 몽롱함, 어지러움, 메스꺼움 → 신선한 공기, 산소공급, 인공호흡. 피부: 피부염, 발진, 건조, 갈라짐 → 15분 이상 비누와 물로 씻을 것. 안구: 피부자극, 통증 → 눈을 문지르지 말 것, 흐르는 물로 15분 이상 씻을 것. 경구: 발기부전, 소화기장애, 신장출혈 → 즉시 물로 입을 씻어낼 것.", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 내알코올 포말.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 오일펜스/흡착재 회수.", + "exposure": "", + "regulation": "CAS 68606-10-0" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PG", + "name": "PYROLYSIS GASOLINE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PYGAS", + "name": "PYROLYSIS GASOLINE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RPG", + "name": "RAW PYROLYSIS GASOLINE", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 140, "abbreviation": "PGA", "nameKr": "프로필렌글리콜에스테르", "nameEn": "Propyleneglycol alginate", - "synonymsEn": "PROPYLENE GLYCOL ALGINATE / propylenealginate / alginicacidpropyleneglycolester / ginate / kelcoloid / 150mPa . S / kelcoloidhvf / femanumber2941 / Alginate ester’ / ALGIN DERIVATIVE/ PROPYLENE GLYCOL ALGINATE", - "synonymsKr": "알긴산프로필렌글리콜에스테르 / 프로필렌글리콜알긴산 / 프로필렌글리콜알긴산 / 프로필렌글라이콜알지네이트 / 프로필렌글리콜알기네이트/ 프로필렌 글리콜 알긴산", + "synonymsKr": "알긴산프로필렌글리콜에스테르 / 프로필렌글리콜알긴산 / 프로필렌글리콜알긴산 / 프로필렌글라이콜알지네이트 / 프로필렌글리콜알기네이트 / 프로필렌 글리콜 알긴산", + "synonymsEn": "PROPYLENE GLYCOL ALGINATE / propylenealginate / alginicacidpropyleneglycolester / ginate / kelcoloid / 150mPa . S / kelcoloidhvf / femanumber2941 / Alginate ester’ / ALGIN DERIVATIVE / PROPYLENE GLYCOL ALGINATE", "unNumber": "-", "casNumber": "9005-37-2", "transportMethod": "", "sebc": "", - "usage": "수지, 염료, 오일 등을 용제 페인트 및 코팅, 플라스틱 및 섬유 사용", + "usage": "수지, 염료, 오일 등을 용제\n페인트 및 코팅, 플라스틱 및 섬유 사용", "state": "", "color": "", "odor": "", @@ -15893,55 +13437,55 @@ { "code": "PGA", "name": "Propyleneglycol alginate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 228, - "abbreviation": "PGMEA", - "nameKr": "프로필렌 글리콜 모노메틸 에테르 아세트산", - "nameEn": "PROPYLENEGLYCOL METHYL ETHER ACETATE", - "synonymsEn": "PGMEA / MPA / PROPYLENE GLYCOL MONOMETHYL ETHER ACETATE / PROPYLENE GLYCOL METHYL ETHER ACETATE / 1-METHOXY-2-PROPANOL ACETATE / 2-METHOXY-1-METHYLETHYL ACETATE / PMA-EL / Dowanol PMA / Propylene glyc / METHOXYISOPROPYL ACETATE/ PROPYLENE GLYCOL MONOMETHYL ETHER ACETATE Propyleneglycol Methyl Ether Acetate", - "synonymsKr": "1-메톡시-2-프로판올아세트산 / 1-메톡시-2프로판올아세트산,프로필렌글리콜메틸에테르아세트산 / 프로필렌글리콜모노메틸에테르아세트산 / 프로필렌글리콜모노메틸에테르아세트산(P.M.A) / 프로필렌글리콜메틸에테르아세테이트 / 메톡시아이소프로필아세테이트 / 프로필렌글리콜모노메틸에테르아세트산 / 프로필렌 글리콜 모노메틸 에테르 아세테이트, 알파-이성질체 / 1-메톡시-2-프로판올 아세트산 / 아세트 산, 2-메톡시-1-메틸에틸 에스테르 / 프로필렌 글리콜 메틸 에테르 아세테이트 / 프로필렌 글리콜 모노메틸 에테르 아세트산", + "id": 141, + "abbreviation": "DOWNLPMA", + "nameKr": "플로필렌 글리콜 메틸 에테르 아세테이트(상표명)", + "nameEn": "Dowanol PMA glycol ether acetate", + "synonymsKr": "1-매톡시-2-프로판올 아세테이트 / PM아세테이트 / 메틸 프록시톨 아세테이트", + "synonymsEn": "1-Methoxy-2-propyl acetate / PGMEA / MPA / PROPYLENE GLYCOL MONOMETHYL ETHER ACETATE / PROPYLENE GLYCOL METHYL ETHER ACETATE / 1-METHOXY-2-PROPANOL ACETATE / 2-METHOXY-1-METHYLETHYL ACETATE / PMA-EL / Dowanol PMA / Propylene glyc / METHOXYISOPROPYL ACETATE", "unNumber": "3272", "casNumber": "108-65-6", "transportMethod": "", "sebc": "", - "usage": "잉크, 코팅제, 세척제, 반도체 공정 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", + "usage": "아크릴성 용매, 우례탄 인화성 액체(구분3) 특정표적장기 독성(1회노출)- 구분3(마취작용) 특정표적장기 독성(1회노출)- 구분3(호흡기계 자극)", + "state": "액체", + "color": "무색", + "odor": "과일냄새", + "flashPoint": "42℃", + "autoIgnition": "315。0", "boilingPoint": "", - "density": "", + "density": "0.97", "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "vaporPressure": "(물 23.8mnHg)", + "vaporDensity": "4.6", + "explosionRange": "1.5 ~ 10.8%", "nfpa": { "health": 0, - "fire": 0, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Z", "ergNumber": "", - "idlh": "", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "최소반경 50m", + "responseDistanceSpillNight": "풍하 방향으로 최소 300m", + "marineResponse": "부유증발용해 (FED)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 산소공급. 인공호흡, 즉시 의료조치 물질특성 인체 유해성 화재 침강 용해 증발 증기밀도 (위험성) (물=1) (물) (물중기압) (공가=1) O 乂 O (잃 높음 인화점 42’C 발화점 315仁 끓는점 1451c 수용해도 19.8g/L(25t) 상온상태 액체 색상 무색 냄새 과일냄새 비중 0.97 증기압 3.98mmHg(2W 휘발성 낮음 점도 자료없음 증기밀도 4.6 급성독성 TWA(8a| 간) 경구(LD50) 경피 (LD50) 흡입 (LC50) 노츨기준 STEL(i5S) 자라어■으 8,532 >5.000 자료없음 노출한겨 r,트 mg/kg mg/kg ° IDLH(30 분) 직접 위험농도 일반증상 호이 증기상 물질은 현기증 또는 질식유발 터님 화상이나자극유발 피부 피부자극 안구 화상이나자극유발 경구 많은 양의섭취는 유해함 응급조치 피부접촉 • 비누와 물로 씻을 것, 화상의 경우 잔물로 식힐 것 안구접촉 • 20분 이상 흐르는 물에 씻을 것 경구섭취 •긴급의료조치 초퉁 대용방법 대응장비 보호복 호홉구 보안경 버호장갑 기타장비 3,4형식 (C급) 방독마스크(반면.전면) O", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -15961,59 +13505,71 @@ { "code": "PGMEA", "name": "PROPYLENEGLYCOL METHYL ETHER ACETATE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PM", + "name": "PROPYLENE GLYCOL MONOMETHYL ETHER ACETATE", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DOWNLPMA", + "name": "Dowanol PMA glycol ether acetate", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 229, + "id": 142, "abbreviation": "PHOS", - "nameKr": "인산", + "nameKr": "백린산", "nameEn": "Phosphoric acid", - "synonymsEn": "H3PO4 / ORTHOPHOSPHORIC ACID / linsuan / Phosphoric / O-PHOSPHORIC ACID / hydrogenphosphate / Acide phosphorique / phosphoricacidsolutions / phosophoric Acid / Phosphoric Acid Powder", - "synonymsKr": "인산 / 오르토-인산 / 인산60% / 인산,60% / 인산,85% / 인산,액체 / 화이트인산 / 포스포릭애씨드", + "synonymsKr": "에빗 / 오쏘인산 / 소낙 / 백린산", + "synonymsEn": "Phosphoric acid / H3PO4 / ORTHOPHOSPHORIC ACID / linsuan / Phosphoric / O-PHOSPHORIC ACID / hydrogenphosphate / Acide phosphorique / phosphoricacidsolutions / phosophoric Acid / Phosphoric Acid Powder", "unNumber": "1805", "casNumber": "7664-38-2", - "transportMethod": "", - "sebc": "", - "usage": "비료 제조에 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", + "transportMethod": "포장(8급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "비료제조. 부식제. 산성제. 광택제 느 NFPA 코드(0~4단계) 건강: 3 화재: 0 반응: 0 A A* 급성독섬-흡입분진(구분3) 험 피부부식/자극성(구분1) 해 X 심한눈손상성/자극성(구분1) 류 거엄 특정표적장기독성(1회노출〉 - 구분1", + "state": "액체(농도, 온도에 따라 다름)", + "color": "무색, 투명", + "odor": "무취", + "flashPoint": "비가연성", + "autoIgnition": "비가연성", + "boilingPoint": "158℃", + "density": "1.83(18℃)", + "solubility": ">850 g/L (25℃)", + "vaporPressure": "(물 23.8miHg)", + "vaporDensity": "3.4", "explosionRange": "", "nfpa": { - "health": 0, + "health": 3, "fire": 0, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Z", + "ergNumber": "154", + "idlh": "1,000 mg/㎥", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "100m", + "marineResponse": "침강용해 (SD)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "부식성, 피부/안구 심각한 손상", + "firstAid": "흡입노출 • 호흡이 멈췄다면 구강대구강 인공호흡, 즉시 의료조치, 산소공급 피부접촉 • 비누와 물로 씻을 것, 의료조치 안구접촉 - 충분한 양의 물로 씻어낼 것, 콘택트렌즈를 제거할 것 경구셥취 • 즉시의료조치 초동 대응방법 1 대응장비 보호복 호홉구 보안경 보호장갑 기타장비 3,4형식(C급) 방독마스크(반면,전면) 수 며하사카께가 1형식 (1B) 공기호흡기 O O 열화상카메라 1 초기이격거리 (m) 50 방호거리 (m) 100 | 해상유출치 ► 유출물질은 1회 노출만으로도 중대한 독성을 일으킬 수 있고, 피부화상. 눈 손상을 초래할 수 있는 매우 유해한 물질이므로 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박 통제 ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3,4형식 보호의 착용(사고선 근접 시 1B이상 착용), 증기홉입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 용해되므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지. 안전확보 시까지 지속적인 모니터링 1 화재 샤대피거리(m) 800 1 + 화재-폭발치 ► 유출물질은 연소시 부식성 및 독성 휴을 생성, 풍상에 위치,", + "fireFighting": "분무주수/포말/CO₂.", + "spillResponse": "다량 물로 희석. 주변 통제. 금속과 격리.", + "exposure": "TWA 1 mg/㎥, STEL 3 mg/㎥, IDLH 1,000 mg/㎥", + "regulation": "유해화학물질관리법" }, "ibcHazard": "", "ibcShipType": "", @@ -16021,133 +13577,71 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-B", + "emsFire": "F-A", + "emsSpill": "S-B", "emsFirstAid": "", "cargoCodes": [ { "code": "PHOS", "name": "Phosphoric acid", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 230, - "abbreviation": "PIB", - "nameKr": "폴리이소부틸렌", - "nameEn": "Polyisobutylene", - "synonymsEn": "usb / POLYISOBUTENE / p20 / p118 / p200 / POLY(ISOBUTYLENE) 24'000 / kp5 / oktol / pb150 / pib100 / POLYISOBUTENE", - "synonymsKr": "폴리아이소뷰틸렌 / 폴리이소부틸렌 / 폴리아이소부텐 / 폴리이소부티렌/ 폴리이소부틸렌", - "unNumber": "1325", - "casNumber": "9003-27-4", - "transportMethod": "", - "sebc": "", - "usage": "내부 튜브, 윤활제, 접착제 실란트, 연료 첨가제", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "PIB", - "name": "Polyisobutylene", - "company": "", - "source": "화물적부도" + "code": "PHOS", + "name": "Phosphoric acid", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 231, + "id": 143, "abbreviation": "PIP", "nameKr": "1,3-펜타디엔", "nameEn": "piperylene", - "synonymsEn": "cis-1-methyl-1 / 3-butadiene / cis-piperylene / trans-1-methyl-1 3-butadiene / trans-piperylene / 1,3-pentadiene", "synonymsKr": "시스-피페릴렌 / 1,3-부테디엔 / 이소프렌 / 2,3-디메틸부타디엔의 혼합물", + "synonymsEn": "cis-1-methyl-1 / 3-butadiene / cis-piperylene / trans-1-methyl-1 / 3-butadiene / trans-piperylene / 1,3-pentadiene", "unNumber": "3295", - "casNumber": "2004-70-8", - "transportMethod": "", - "sebc": "", + "casNumber": "78-79-5", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", "usage": "석유 수지 원료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "액체", + "color": "무색", + "odor": "석유 냄새", + "flashPoint": "-54℃ 가열시 분해하여", + "autoIgnition": "39513", + "boilingPoint": "34℃", + "density": "0.68(물=1)", + "solubility": "642ppm @ 25℃", + "vaporPressure": "550mmHg@25℃", + "vaporDensity": "2.35(공기=1)", + "explosionRange": "1.5 ~ 8.9%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 1, + "fire": 4, + "reactivity": 2, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "128", + "idlh": "0 분", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발 (E)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "고인화성, 해상수거 불가", + "firstAid": "흡입노출 • 즉시 오염 지역을 벗어나, 신선한 공기를 깊게 호흡하게 할 것 물칠톡성 I 인체 유해성 화재 침강 용해 증발 증기밀도 (위험성) (물=1) (물) (물증기압) (공기=1) 0 乂 O O .누므 (높옴) (낮음) (높음) “러 인화점 18.33 仁 발화점 39513 끓는점 34仁 수용해도 642ppm @ 25仁 상온상태 액체 색상 무색 냄새 석유 냄새 비중 0.68(물=1) 증기압 550mmHg@25t 휘발성 매우높음 점모 0.23cP@15t 증기밀도 2.35(공기=1) 급성독성 ™A(8 시간) 경구(LD50) 경피 (LD50) 홉입 (LC5O) 노출기준 _ STEL(15분) 치J 다O1오 2’0架— leomq/ 노출한게 애°없= 2.210 > ImL/kg '아》여' mg/kg IDLH(30 분 직접 위험농도 인바즈사 증기는 눈과 상부 호흡 기관의약한 자극 효과를 己己으‘나타냄 흐흡기관 자극을 유발할 수 있욤 흡입 고농축 용제 대기에 노출이 지속되었다면 혼수, 의식불명, 혼수상태 및 사망의 가능성이 있음 ⑴버 보통정의 자극성 있음, 액체의 지방질 또는 기륨에 ‘푸 혼합할 수 있어 피부 탈지를 일으킴 안구 직접적 눈 접촉은 결막홍조를 일으킬 수 있음", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 일반포말 이용. 직사주수 금지.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 분무주수로 증기운 이동 억제.", "exposure": "", "regulation": "" }, @@ -16157,27 +13651,27 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { "code": "PIP", "name": "piperylene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 232, + "id": 144, "abbreviation": "PKO", "nameKr": "팜핵유", "nameEn": "palm kernel-oil", - "synonymsEn": "POTASSIUM PALM KERNELATE / Fettsuren, Palmkernol-, Kaliumsalze / palm oil fatty acids, potassium salts / Fatty acids, palm kernel-oil, potassium salts/ PALM KERNEL OIL", "synonymsKr": "팜커넬오일 / 야자 씨앗유 / 팜핵오일", + "synonymsEn": "POTASSIUM PALM KERNELATE / Fettsuren, Palmkernol-, Kaliumsalze / palm oil fatty acids, potassium salts / Fatty acids, palm kernel-oil, potassium salts / PALM KERNEL OIL", "unNumber": "-", "casNumber": "70969-43-6", "transportMethod": "", @@ -16233,123 +13727,55 @@ { "code": "PKO", "name": "palm kernel-oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 233, - "abbreviation": "PM", - "nameKr": "프로필렌 글리콜 모노메틸 에테르 아세트산", - "nameEn": "PROPYLENE GLYCOL MONOMETHYL ETHER ACETATE", - "synonymsEn": "PGMEA / PMA / PROPYLENE GLYCOL MONOMETHYL ETHER ACETATE / PROPYLENE GLYCOL METHYL ETHER ACETATE / 1-METHOXY-2-PROPANOL ACETATE / 2-METHOXY-1-METHYLETHYL ACETATE / PMA-EL / Dowanol PMA / Propylene glyc / METHOXYISOPROPYL ACETATE/ PROPYLENE GLYCOL MONOMETHYL ETHER", - "synonymsKr": "1-메톡시-2-프로판올아세트산 / 1-메톡시-2프로판올아세트산,프로필렌글리콜메틸에테르아세트산 / 프로필렌글리콜모노메틸에테르아세트산 / 프로필렌글리콜모노메틸에테르아세트산(P.M.A) / 프로필렌글리콜메틸에테르아세테이트 / 메톡시아이소프로필아세테이트 / 프로필렌글리콜모노메틸에테르아세트산 / 프로필렌 글리콜 모노메틸 에테르 아세테이트, 알파-이성질체 / 1-메톡시-2-프로판올 아세트산 / 아세트 산, 2-메톡시-1-메틸에틸 에스테르 / 프로필렌 글리콜 메틸 에테르 아세테이트 / 프로필렌 글리콜 모노메틸 에테르 아세트산 / 프로필렌 글리콜 모노메틸 아세트산", - "unNumber": "3272", - "casNumber": "108-65-6", - "transportMethod": "", - "sebc": "", - "usage": "잉크, 코팅제, 세척제, 반도체 공정 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PM", - "name": "PROPYLENE GLYCOL MONOMETHYL ETHER ACETATE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 234, + "id": 145, "abbreviation": "PMDI", "nameKr": "폴리메틸렌 폴리페닐 폴리이소시아네이트", "nameEn": "Polymethylene polyphenyl polyisocyanate", + "synonymsKr": "폴리머릭 디페닐메탄 디이소시아네이트 / 이이소사이안산 폴리 메틸렌 폴리페닐렌에스터", "synonymsEn": "papi / PMDI / pmppi / isocyanuric / papi27 / isocyanatedepolymethyleneetdepolyphenyle / Polymeric Methylene Diphenyl Diisocyanate / e534 / cr200 / mr200", - "synonymsKr": "아이소사이안산폴리메틸렌폴리페닐렌에스터 / 아이소사이안산폴리메틸렌폴리페닐렌에스터 / 폴리메틸렌 폴리페닐 아이소사이아네이트 / 폴리메틸렌폴리페닐폴리이소시아네이트", "unNumber": "3080", "casNumber": "9016-87-9", "transportMethod": "", "sebc": "", "usage": "경질 PU 폼 단열제, 경질 PU 폼, 이소이아누레이트 폼, 도료, 접착제, 구조용 폼, 자동차 펌포 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "state": "여염 삞", + "color": "어두운 황갈색", + "odor": "곰팡이냄새", + "flashPoint": "215TC", + "autoIgnition": ">600℃", + "boilingPoint": "200℃", + "density": "1.2", + "solubility": "불용", + "vaporPressure": "25'쩹셩 매우", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Y", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "침강 (S)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 즉시 의료조치 피부접촉 • 20분 이상 흐르는 물에 씻을 것 , 의사진료 안구접촉 • 긴급 의료조치, 20분 이상 흐르는 물에 씻을 것 경구셥취 - 구강대구강 인공호흡 하지 말 것, 즉시 의료조치", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -16369,268 +13795,144 @@ { "code": "PMDI", "name": "Polymethylene polyphenyl polyisocyanate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 235, - "abbreviation": "PMPI", - "nameKr": "아이소사이안산폴리메틸렌폴리페닐렌에이터", - "nameEn": "Polymethylene polyphenyl polyisocyanate", - "synonymsEn": "papi / PMDI / pmppi / isocyanuric / papi27 / isocyanatedepolymethyleneetdepolyphenyle / Polymeric Methylene Diphenyl Diisocyanate / e534 / cr200 / mr200", - "synonymsKr": "아이소사이안산폴리메틸렌폴리페닐렌에스터 / 아이소사이안산폴리메틸렌폴리페닐렌에스터 / 폴리메틸렌 폴리페닐 아이소사이아네이트 / 폴리메틸렌폴리페닐폴리이소시아네이트", - "unNumber": "3080", - "casNumber": "9016-87-9", - "transportMethod": "", - "sebc": "", - "usage": "경질 PU 폼 단열제, 경질 PU 폼, 이소이아누레이트 폼, 도료, 접착제, 구조용 폼, 자동차 펌포 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "PMPI", "name": "Polymethylene polyphenyl polyisocyanate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PPI", + "name": "Polyphenyl polymethylene isocyanate", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 236, + "id": 146, "abbreviation": "PO", "nameKr": "산화프로필렌", "nameEn": "Propylene oxide", - "synonymsEn": "PO / METHYLOXIRANE / Epoxypropane / Methyl(trifluoroMethyl)dioxirane / 1,2-PROPYLENE OXIDE / 1,2-EPOXYPROPANE / PROPENE OXIDE / Oxirane, 2-Methyl- / Propylene oxide, extra pure, 99.5% / PROPYLENOXIDE", - "synonymsKr": "1,2-에폭시프로판 / 산화프로필렌 / 프로필렌옥사이드 / 프로필렌산화물 / 1,2-에폭시프로판 / 메틸옥시란 / 프로펜산화물 / 메틸에틸렌산 / 메틸옥시란 / 1,2-프로필렌 옥사이드 / 1,2-에폭시 프로판 / 2-메틸옥시렌 / 메틸 에틸 옥사이드 / 메틸옥시렌 / 산화 프로판 / 산화 프로필렌", + "synonymsKr": "1,2-에폭시프로판 / 산화프로필렌 / 프로필렌옥사이드 / 프로필렌산화물 / 1,2-에폭시프로판 / 메틸옥시란 / 프로펜산화물 / 메틸에틸렌산 / 메틸옥시란 / 1,2-프로필렌 옥사이드 / 1,2-에폭시 프로판 / 2-메틸옥시렌 / 메틸 에틸 옥사이드 / 메틸옥시렌 / 산화 프로판 / 산화 프로필렌 / 1,2-에폭시프로페인 / 에틸렌 옥사이드, 메틸- / 메틸 에틸렌 옥사이드 / 메틸옥시레인 / 옥시레인, 메틸- / 프로페인, 에폭시- / 프로페인, 1,2-에폭시- / 프로펜 옥사이드 / 프로필렌 에폭사이드 / 프로필렌옥사이드 / 프로페인, 1, 2-에폭시- / 에폭시프로페인 / 2, 3-에폭시프로페인 / 메틸 옥시레인 / 1, 2-프로필렌 옥사이드", + "synonymsEn": "PO / METHYLOXIRANE / Epoxypropane / Methyl(trifluoroMethyl)dioxirane / 1,2-PROPYLENE OXIDE / 1,2-EPOXYPROPANE / PROPENE OXIDE / Oxirane, 2-Methyl- / Propylene oxide, extra pure, 99.5% / PROPYLENOXIDE / AD 6 (Suspending agent) / AI3-07541 / Caswell No 713A / Pesticide Code: 042501. / EPA Pesticide Chemical Code 042501 / EPOXYPROPANE / 1,2-Epoxypropane / ETHYLENE OXIDE, METHYL- / METHYL ETHYLENE OXIDE / Methyloxirane / NCI-C50099 / OXIRANE, METHYL- / OXYDE DE PROPYLENE (FRENCH) / PROPANE, EPOXY- / PROPANE, 1,2-EPOXY- / PROPENE OXIDE / PROPYLENE EPOXIDE / PROPYLENEOXIDE / Epoxypropane / 2, 3-epoxypropane / Methyl oxirane / 1, 2-propylene oxide / NCI-C50099", "unNumber": "1280", "casNumber": "75-56-9", - "transportMethod": "", - "sebc": "", - "usage": "플리에테르 폴리올 제조 그라우트, 페인트, 방수재, 코팅 및 접착제 제조", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류), 산적액화가스", + "sebc": "D (Dissolver)", + "usage": "플리에테르 폴리올 제조\n그라우트, 페인트, 방수재, 코팅 및 접착제 제조", + "state": "액체", + "color": "무색, 투명", + "odor": "알코올 냄새", + "flashPoint": "-38\"C", + "autoIgnition": "400℃", + "boilingPoint": "34.3℃", + "density": "0,83", + "solubility": "용해", + "vaporPressure": "538mmHg(25t)", + "vaporDensity": "2", + "explosionRange": "1.9~36.3%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 3, + "fire": 4, + "reactivity": 2, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "127P", + "idlh": "400 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발용해 (ED)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "고인화성, 발암 의심, 중합성, 호흡기/피부 자극", + "firstAid": "흡입노출 - 인공호흡, 산소공급. 의료조치 피부접촉 . 피부를 물로 씻을 것, 화상의 경우 찬물로 씻을 것 안구접촉 • 몇 분간 물에 씻을 것, 콘택트렌즈 제거할 것 경구섭취 • 입을 씻어낼것 초동매옹방법 대응장비 보호복 호흡구 3,4궓식 (C급〉 ■ 방독마스크(반면, 전면) 1형식 (1B) 공기호홉기 보안경 보호장갑 O O 기타장비 열화상카메라 1 초기 이격거리(m) 50 방호거리 (m) 300 1 해상유출시 ► 유출물질은 발암성 물질로 유전적인 결함을 일으킬 수 있고, 눈, 피부, 호흡기 자극 등 인체노출 시 유해성이 있음. 극인화성 물질로 화재위험성이 매우 높으므로 모든 출동세력 풍상에 위차. 촤소 50m 이격거리 유지. 주변선박 통제 (흡연, 불꽃, 스파크 등 모든 점화원 제거) ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호복 착용(사고선 근접시 1B 착용), 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 증발. 용해되므로 방제조치 불필요 • 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 1 화재 시대피거리(m) 800 1 + • 유출물질은 연소시 유독가스 방출, 풍상에 위치,", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제. 증기운 이동 억제.", + "exposure": "TWA 2 ppm, IDLH 400 ppm", "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "AC", - "ibcMinRequirement": "15.8, 15.12, 15.14, 15.17, 15.19", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "ibcMinRequirement": "15.8, 15.12, 15.14, 15.17,\n15.19", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "PO", "name": "Propylene oxide", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 237, - "abbreviation": "PRIMA500", - "nameKr": "베이스 오일 (에어라모크 제조)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체/ 석유유래물질, 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "산업용 윤활유 원료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PRIMA500", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 238, + "id": 147, "abbreviation": "PT", "nameKr": "프로필렌 테트라머", "nameEn": "PROPYLENE TETRAMER", + "synonymsKr": "PT/1-프로펜테트라머", "synonymsEn": "Propylene tetramer / Dodecene / Light Tetramer / Propylene tetramer / PROPYLENETETRAMERS / 1-Propene, tetramer / Dodecene (nonlinear) / Propylene Tetramer(PT) / TIANFU-CHEM Propylene tetramer / (4E,7E,10E)-dodeca-1,4,7,10-tetraene", - "synonymsKr": "1-프로펜테트라머 / 프로필렌테트라머 / 1-프로펜테트라머/ 프로필렌 테트라머", "unNumber": "2850", "casNumber": "6842-15-5", "transportMethod": "", "sebc": "", "usage": "화학 원료, 세제, 계면활성제 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "state": "액체", + "color": "노란색, 무색", + "odor": "탄화수소 냄새", + "flashPoint": "58℃", "autoIgnition": "", "boilingPoint": "", - "density": "", + "density": "0.78", "solubility": "", - "vaporPressure": "", + "vaporPressure": "(물 49i짜1g)", "vaporDensity": "", "explosionRange": "", "nfpa": { "health": 0, - "fire": 0, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/X", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "최소반경 50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유 (F)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 피부접촉 안구접촉 경구섭취 • 산소공급, 인공호흡, 의사진료 • 긴급 의료조치, 화상의 경우 찬물로 식힐 것. 비누와 물로 씻을 것 • 몇 분간 물로 씻을 것. 콘택트렌즈 제거 •긴급 의료조치 초통대응방법 대응장비 보호복 호홉구 보안경 3,4형식 (C급) 방독마스크(반면,전면) O 보호장갑 O 기타장비 열화상카메라 I 초기아격거리 (m) 50 방호거리 (m) 300 •유출물질은 수생생물에 매우 유독한 물질로 피부, 눈, 호흡기를 자극하거나 증가홈입 시 유해하며, 인화성물질로 화재위험성이 있으므로 모든 출동세력 풍상에 위치. 최소 50m 이격거리 유지, 주변선박 통제 스.. (홉연’ 불꽃' 스파크 등 모든 점화원 제거) 해상기•출시 ►출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3,4형식 보호의 착용, 증기흡입과 피부와 눈에 접촉을 피할 것 ►유출물질은 부유하브로 방제조치 필요 (오일펜스 설치, 유흡착재 등 아용 유출유 회수) ► 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 화재 시대피거리(m) 800 + ►유출물질은 연소시 유독가스 방출, 풍상에 위치, 최소 이격거리 유지하고 내", "fireFighting": "", "spillResponse": "", "exposure": "", "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "F", + "ibcDetection": "R", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.19.6", "emsCode": "", @@ -16641,58 +13943,64 @@ { "code": "PT", "name": "PROPYLENE TETRAMER", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PPT", + "name": "Propylene tetramer", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 239, + "id": 148, "abbreviation": "PX", "nameKr": "파라-자일렌", "nameEn": "PARA XYLENE", + "synonymsKr": "P-자일렌 / P-크실렌 / 4-자일렌 / P-다이메틸벤젠 / P-메틸톨루엔 / 1,4-자일렌 / 4-메틸톨루엔 CAM 106-42-3", "synonymsEn": "P-XYLENE / PARA-XYLENE / 1,4-DIMETHYLBENZENE / Benzene, 1,4-dimethyl- / 1,4-Xylene / 4-xylene / p-Xylene (1.4- / p-Xylol / 4-Methyltoluene / p-Dimethylbenzene / p-Xylene, For Gas Chromatography", - "synonymsKr": "p-자일렌 / 4-자일렌 / p-자일렌 / P-크실렌 / 파라자일렌 / P-디메틸벤젠 / P-메틸톨루엔 / 1,4-디메틸벤젠 / P-크실렌 / 1,4-다이메틸벤젠 / 1,4-자일렌 / 4-메틸톨루엔 / p-자일롤 / 파라-자일렌 / 파라크실렌", "unNumber": "1307", "casNumber": "106-42-3", - "transportMethod": "", - "sebc": "", - "usage": "폴리에스터 섬유, PET병, 플라스틱 용기 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "FE (Float-Evaporator)", + "usage": "석유화학제품 원료(페트병, 화학섬유) 생식독성 (구분 1B) -구분3(마취작용) 흡인 유해성(구분1) 만성 수생환경유해성(구분2)", + "state": "액체(13。0에서응고", + "color": "무색, 투명", + "odor": "향기로운냄새", + "flashPoint": "27℃", + "autoIgnition": "528℃", + "boilingPoint": "138℃", + "density": "0.86", + "solubility": "0.16 g/L (25℃)", + "vaporPressure": "(물 17.5inmHg)", + "vaporDensity": "3.7", + "explosionRange": "1.1 ~7%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 3, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "인화성액체, 비수용 유해성", + "ergNumber": "130", + "idlh": "900 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유•증발 (FE)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성, 부유증발(FE), 해상수거 불가", + "firstAid": "흡입노출 • 신선한 곳으로 이동, 즉시 의료조치 o=:z: 눗 1 피부접촉 • 15분 이상 비누와 물로 씻을 것, 의료조치 소지 안구접촉 • 15분 동안 많은 양의 물로 씻을 것, 의료조치, 콘택트렌즈 제거 경구섭취 • 즉시 물로 입을 씻을 것, 즉시 의료조치 초똥 대응방법 대욤장비 보호복 호흡구 3.4형식(C급) 방독마스크(반면, 전면) ■ 1형식 (1B) 공기호흡기 보안경 보호장갑 O O 기타장비 열화상카메라 1 초기 이격거리 (m) 50 방호거리 (m) 300 1 해상유출시 - 유출물질온삼켜서 기도로 유입되면 치명적인 물질이고 인체노출 시 생식기능 악영향, 눈 및 피부자극, 현기증 등을 일으킬수 있음. 인화성물질로 화재위험성이 있으므로 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박 통제(흡연, 불꽃, 스 파크 등 모든 점화원 제거) > 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용(사고선 근접 시 1B급 착용). 증기홉입과 피부와 눈에 • 유출물질은 증기밀도가 높고 휘발성이 닞은 부유성 물잘로 추운날씨에는 방제조치가 필요함(오일펜스 설치. 유겔화제. 착재 아용 흡착) 단. 아 물질은", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 내알코올 포말 이용. 직사주수 금지.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 분무주수로 증기운 이동 억제.", + "exposure": "TWA 100 ppm, STEL 150 ppm, IDLH 900 ppm", "regulation": "" }, "ibcHazard": "", @@ -16701,67 +14009,73 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "PX", "name": "PARA XYLENE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PX", + "name": "Para-Xylene", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 240, + "id": 149, "abbreviation": "TPG", "nameKr": "열분해가솔린", "nameEn": "Treated Pyrolysis Gasoline", + "synonymsKr": "넙사(석유)나이트열문해", "synonymsEn": "Treated Pyrolysis Gasoline", - "synonymsKr": "", "unNumber": "1203", "casNumber": "64741-74-8", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "FE (Float-Evaporator)", "usage": "납사(석유)나이트열분해", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", + "state": "액체", + "color": "맑은 갈색", + "odor": "방향성", + "flashPoint": "-20℃", + "autoIgnition": "463~520℃", "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "density": "0.76~0.86", + "solubility": "불용", + "vaporPressure": "(물 17.5nmHg)", + "vaporDensity": "2.8~3.8", + "explosionRange": "0.9~7.7%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "해양환경관리법 / 기름, 석유 및 석유대체연료사업법 / 석유제품", + "ergNumber": "128", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "자료없음", + "responseDistanceSpillDay": "반경 50m 이상", + "responseDistanceSpillNight": "중 300m 이상", + "marineResponse": "증발 (E)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "고인화성, 발암성, 흡인성 유해, 중추신경계", + "firstAid": "흡입노출 피부접촉 옹급조치 아그저* 안구접족 경구섭취 • 즉시 의료조치. 토하게 하지 말 것 • 뜨거운 물질인 경우 차가운 물로 씻을 것, 20분 이상 흐르는 물에 씻을 것 • 긴급 의료조치, 20분 이상 흐르는 물에 씻을 것 • 구강대구강 인공호흡 하지 말 것, 즉시 의료조치, 토하게 하지 말 것", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 내알코올 포말.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 오일펜스/흡착재 회수.", "exposure": "", - "regulation": "" + "regulation": "CAS 68606-10-0" }, "ibcHazard": "", "ibcShipType": "", @@ -16769,202 +14083,66 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { "code": "TPG", "name": "Treated Pyrolysis Gasoline", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 241, - "abbreviation": "PYGAS", - "nameKr": "열분해가솔린", - "nameEn": "PYROLYSIS GASOLINE", - "synonymsEn": "PYROLYSIS GASOLINE", - "synonymsKr": "열분해 가솔린", - "unNumber": "1203", - "casNumber": "68606-10-0", - "transportMethod": "", - "sebc": "", - "usage": "방향족 공장 연료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PYGAS", - "name": "PYROLYSIS GASOLINE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 242, - "abbreviation": "RPG", - "nameKr": "열분해가솔린", - "nameEn": "RAW PYROLYSIS GASOLINE", - "synonymsEn": "RAW PYROLYSIS GASOLINE", - "synonymsKr": "열분해 가솔린", - "unNumber": "1203", - "casNumber": "68606-10-0", - "transportMethod": "", - "sebc": "", - "usage": "가솔린, 블렌딩, BTX 추출 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RPG", - "name": "RAW PYROLYSIS GASOLINE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 243, + "id": 150, "abbreviation": "SACID", "nameKr": "황산", "nameEn": "SULFURIC ACID", - "synonymsEn": "Sulfuric acid / Hydrogen sulfate / SULFURIC ACID REAGENT GRADE 95-98% / So42- / Sulfuric acid 96 % / Acide sulfurique / So4-- / Acid Mist / Sulfur acid / Dipping acid / Inorganic acid", - "synonymsKr": "황산 / 1N-황산 / 2N(1M)황산 / 5N황산 / N/10(0.05M)황산 / N/2(0.25M)황산 / N/20(0.025M)황산 / N/5(0.1M)황산 / 비트리올갈색기름 / 비트리올의기름 / 황산 / 황산1:2 / 황산15% / 황산30% / 황산9% / 황산95% / 황산pH4 / 황산이수소 / 설프릭애씨드 / 황산이나트륨 / 황산(VI)산", - "unNumber": "1350(고) 2448(액)", + "synonymsKr": "황산 / 1N-황산 / 2N(1M)황산 / 5N황산 / N / 10(0.05M)황산 / N / 2(0.25M)황산 / N / 20(0.025M)황산 / N / 5(0.1M)황산 / 비트리올갈색기름 / 비트리올의기름 / 황산 / 황산1:2 / 황산15% / 황산30% / 황산9% / 황산95% / 황산pH4 / 황산이수소 / 설프릭애씨드 / 황산이나트륨 / 황산(VI)산 / 전지산 / EPA 살충제 화학 코드 078001 / 황화 수소 / 메트링 산 / 진한 황산 / 농 황산 / 황산염 수소 / 노르드하우젠 산 / 검은 산성 / 디핑 산 / 스멜터 산 / 전해질 산성 / 델트렉스 / Incitec 물질 000304426401 / Selby 황산 비중 1.84 / 아이콘 황산 - 98 %, 73 %, 70 %, 60 % / 황산 52-98 % / Jasol 황산 98 % / Jasol 황산 35 %", + "synonymsEn": "Sulfuric acid / Hydrogen sulfate / SULFURIC ACID REAGENT GRADE 95-98% / So42- / Sulfuric acid 96 % / Acide sulfurique / So4-- / Acid Mist / Sulfur acid / Dipping acid / Inorganic acid / Acide sulfurique(FRENCH) / Acido solforico(ITALIAN) / Acido sulfurico(Spanish) / Battery acid / BOV / Caswell no 815 / EPA pesticide chemical code 078001 / Hydrogen sulfate / Mattling acid / Oil of vitriol / Vitriol brown oil / Hydrogen sulphate / Nordhausen acid / Black acid / Dipping acid / Smelter acid / Electrolyte acid / RIA00 / Deltrex / Incitec substance 000304426401 / Selby sulphuric acid sp.gr. 1.84 / Pronalys BSPSL741 / Ikon sulfuric acid - 98 %, 73 %, 70 %, 60 % / Sulfuric acid 52-98 % / Jasol suphuric acid 98 % / Jasol suphuric acid 35 %", + "unNumber": "1830", "casNumber": "7664-93-9", - "transportMethod": "", - "sebc": "", - "usage": "비료, 세제, 석유정제, 야금, 의약품 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", + "transportMethod": "포장(8급), 산적액체(Y류)", + "sebc": "D (Dissolver, 반응성)", + "usage": "폭발물과 안료, 염료, 비료, 접착제 위험 금속부식성물질(구분1) 급성독성-홉입분진(구분2) 파부부식성/자극성(구분1) 심한 눈 손상성/자극성(구분1) 발암성 (구분 1A) 믈질특성", + "state": "액체", + "color": "무색투명, 암갈색", + "odor": "무취. 약한산성냄새", + "flashPoint": "비가연성", + "autoIgnition": "비가연성", + "boilingPoint": "290℃", + "density": "1.8", + "solubility": "용해", + "vaporPressure": "0.99mmHg(14W", + "vaporDensity": "3.4", "explosionRange": "", "nfpa": { - "health": 0, + "health": 3, "fire": 0, - "reactivity": 0, - "special": "" + "reactivity": 2, + "special": "W" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y류", + "ergNumber": "137", + "idlh": "15 mg/m³", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "침강용해 (SD)", + "ppeClose": "근거리(레벨 A)", + "ppeFar": "원거리(레벨 C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "강산, 부식성. 물과 격렬하게 반응하여 발열. 해상 유출 시 용해(D) 및 발열", + "firstAid": "흡입노출 피부접촉 응급조치 안구접촉 경구섭취 초동 대응방법 대응장비 보호복 호흡구 보안경 보호장갑 기타장비 3.4형식 (C급) 방독마스크(반면. 전면) 고무장화 1형식 (1B) 공기호홉기 이 열화상카메라 1 초기 이격거리 (m) 50 방호거리 (m) 50 | 해상유출시 ►유출물질은 홉입 시 치명적이고 발암성이 있는 물질로서, 물과 반옹하여 열을 생성하고. 금속을 부식시키는 물질임, 피부화상과 심한 눈 손상을 일으킬 수 있으므로 모든 출동세력 풍상에 위치. 최소 50m 이격거리 유지, 주변선박통졔 ► 출동 경비정(방제정〉복합가스용 방독마스크를 포함한 최소 3,4형식 보호의 착용(사고선 근접 시 1B이상 착용), 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 용해되므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 1 화재 시대피거리(m) 800 1 + 화재 •폭발시 ►유출물잘은 연소시 유독가스 방출, 물과 반응하는 물질이므로 직접적으로 물을 사용하지 말고, 화재로부터 먼 곳에서 내알콜포 이용 화재진압 O수 사용 시, 해수와 반응하면 횐색 염산가스 생성 ► 열화상카메라 운", + "fireFighting": "자체 불연. 주변 화재 시 드라이케미컬·CO2·물분무(소량) 사용, 물 접촉 시 발열·비산 주의", + "spillResponse": "유출 차단 후 건조 모래·석회로 중화. 해수 접촉 시 강하게 발열하므로 주변 모니터링. 회수물은 중화 처리", + "exposure": "TWA 0.2 mg/m³, IDLH 15 mg/m³", "regulation": "" }, "ibcHazard": "", @@ -16973,32 +14151,38 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-B", + "emsFire": "F-A", + "emsSpill": "S-B", "emsFirstAid": "", "cargoCodes": [ { "code": "SACID", "name": "SULFURIC ACID", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SUA", + "name": "SULPHURIC ACID", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 244, - "abbreviation": "SAFOL23", - "nameKr": "사폴23", - "nameEn": "Safol23", - "synonymsEn": "Alcohol C10~C16 / C10-16 ALCOHOLS", - "synonymsKr": "1-히드록시도데칸 / 도데킬알코올 / 라우린산알코올 / 1-도데칸올 / 1-도데킬알코올 / 도데칸올 / 라우르산알코올 / 라우릴알코올 / 로릴알코올 / 페티알콜 / 라우릴알콜 / 납 / C.I.염료금속4 / 납플레이크 / 로릴알코올 / 1-도데실 알코올 / 1-도데카놀 / 1-하이드록시도데케인 / n-도데실 알코올 / 도데실 알코올", - "unNumber": "3082", + "id": 151, + "abbreviation": "LAL12", + "nameKr": "라우릴 알코올", + "nameEn": "Lauryl alcohol C12", + "synonymsKr": "라우릴알코올 / 1-히드록시도데칸 / 도데킬알코올 / 라우린산알코올 / 1-도데칸올 / 1-도데킬알코올 / 도데칸올 / 라우르산알코올 / 라우릴알코올 / 로릴알코올 / 페티알콜 / 라우릴알콜 / 납 / C.I.염료금속4 / 납플레이크 / 로릴알코올 / 1-도데실 알코올 / 1-도데카놀 / 1-하이드록시도데케인 / n-도데실 알코올 / 도데실 알코올", + "synonymsEn": "1-Dodecanol / Fatty alcohol / LAURYL ALCOHOL / DODECANOL / dodecyl / lauryl / DODECAN-1-OL / Pisol / Lauric Alcohol / DODECYL ALCOHOL / Lorol", + "unNumber": "", "casNumber": "112-53-8", "transportMethod": "", "sebc": "", - "usage": "보조제, 계면활성제, 소포제", + "usage": "", "state": "", "color": "", "odor": "", @@ -17049,123 +14233,135 @@ { "code": "SAFOL23", "name": "Safol23", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "LAL12", + "name": "Lauryl alcohol C12", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 245, + "id": 152, "abbreviation": "SM", "nameKr": "스티렌 모노머", "nameEn": "STYRENE MONOMER", - "synonymsEn": "Styrene / SM / STYRENE MONOMER / VINYLBENZENE / ETHENYLBENZENE / PHENYLETHYLENE / Benzene, ethenyl- / STYROL / methyl 2-methylprop-2-enoate / Styren / Styron", "synonymsKr": "스티렌 모노머 / 스티렌 / 비닐벤젠 / 스티렌모노머,억제제 / 에텐일벤젠 / 페닐에텐 / 스타이렌 / 스티렌모노머 / 페닐에틸렌", + "synonymsEn": "Styrene / SM / STYRENE MONOMER / VINYLBENZENE / ETHENYLBENZENE / PHENYLETHYLENE / Benzene, ethenyl- / STYROL / methyl 2-methylprop-2-enoate / Styren / Styron", "unNumber": "2055", "casNumber": "100-42-5", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "FE (Float-Evaporator)", "usage": "합성 수지 및 고무 제조 원료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "액체", + "color": "무색", + "odor": "자극적", + "flashPoint": "32。0", + "autoIgnition": "490℃", + "boilingPoint": "145℃", + "density": "0.91", + "solubility": "0.31 g/L (25℃)", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "3.6", + "explosionRange": "0.9~6.8%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 2, + "fire": 3, + "reactivity": 2, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "128", + "idlh": "0 분)", + "aegl2": "130 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "반경 50m 이상", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유•증발 (FE)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성, 호흡기 자극, 중합성, 중추신경계", + "firstAid": "흡입노출 - 토하게 하지 말 것, 인공호흡, 산소공급 피부접촉 • 피부를 물로 씻을 것, 화상의 경우 찬물로 씻을 것 안구접촉 • 몇 문간 물로 씻올 것, 콘택트렌즈 제거 경구섭취 • 토하게 하지 말 것, 즉시 의료기관 진찰 초동 대응방법 대응장비 보호복 호흡구 보안경 보호장갑 기타장비 3,4형식 (C 급〉 방독마스크(반면,전면) 수 연히스F 가 mi 가 1형식 (1B) 공기호홉기 O O 열화상카메라 1 초기 이격거러(m) 50 방호거리(m) 300 | 해상유출시 ►유출물질은 홈입 시 심각한 영향을 줄 수 있고 반복노출 시 중대한 독성을 일으킬 수 있음. 인화성 액체로 증기의 이동에 의한 폭발가능성이 있는 물질로, 모든 출동세력 풍상에 위치. 최소 50m 이격거리 유지, 주변선박 통제 (흡연, 불꽃. 스파크 등 모든 점화원 제거) ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용(사고선 근접시 1B급 착용), 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 증기밀도가 높고 휘발성이 낮은 부유성 물질로 추운날씨에는 방제조치가 필요함(오일폔스 설치, 유겔화제. 유홉착재 이용 홉착) ► 화학방제", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 내알코올 포말 이용.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 분무주수로 증기운 이동 억제.", + "exposure": "TWA 20 ppm, STEL 40 ppm, AEGL-2 130 ppm, IDLH 700 ppm", "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12, 15.13, 15.17, 15.19.6, 16.6.1, 16.6.2", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "ibcMinRequirement": "15.12, 15.13, 15.17,\n15.19.6, 16.6.1, 16.6.2", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "SM", "name": "STYRENE MONOMER", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SM", + "name": "Styrene monomer", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 246, - "abbreviation": "SN150", - "nameKr": "베이스오일", - "nameEn": "BASE OIL", + "id": 153, + "abbreviation": "LAWS", + "nameKr": "수소탈황화된 중질 나프타", + "nameEn": "Low aromatic white spirit", + "synonymsKr": "수소탈황화된 중질 나프타 (석유) / 수소탈황화된중질나프타(석유) / 수소탈황화된중질나프타(석유)(Naphtha(petroleum),hydrodesulfurizedheavy) / C8-10알케인 / 사이클로알케인 / 아로마틱하이드로카본", "synonymsEn": "PETROLEUM ETHER / HEXANES / HEX / NAPHTHA / PETROL / BENZINE / LIGROINE / LIGROIN / MINERAL SEAL OIL / BENZIN / PETROLEUM OIL", - "synonymsKr": "수소탈황화된 중질 나프타 수소탈황화된 중질 나프타 (석유) / 수소탈황화된중질나프타(석유) / 수소탈황화된중질나프타(석유) / C8-10알케인/사이클로알케인/아로마틱하이드로카본", - "unNumber": "1203", - "casNumber": "64742-82-1", + "unNumber": "", + "casNumber": "64742-83-2", "transportMethod": "", "sebc": "", - "usage": "윤활유의 기본 성분의 베이스 오일", - "state": "", - "color": "", + "usage": "해양환경관리법/기름 석유 및 석유대체연료사업법 / 탄화수소유 옅은 노란색의 방향족화합물 냄새가 나는 액체로서 가솔린. 벤젠과 같은 탄화수소 생산에 중간체로 사용됨. 해상유 출 시에는 증발하므로 방제조치는 불필요하나, 발암성물질로 증기 흡입 시 매우 유해하고, 1 회 노출만으로 중대한 독성올 일으킬 수 있으므로 방독마스크, 화학", + "state": "액체", + "color": "옅은 노란색", "odor": "", - "flashPoint": "", - "autoIgnition": "", + "flashPoint": "-ire", + "autoIgnition": "자료없음", "boilingPoint": "", - "density": "", + "density": "0.87", "solubility": "", "vaporPressure": "", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 3, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "해양환경관리법/기름", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발 (E)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 신선한 공기가 있는 곳으로 이동, 인공호흡 피부접촉 • 20분 이상 흐르는 물에 씻을 것 。―지 안구접촉 • 즉시 20분 이상 흐르는 물에 씻을 것, 긴급 의료조치 경구셥취 • 구강대구강 인공호흡하지 말 것, 토하게 하지 말 것, 의료조치", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -17185,57 +14381,69 @@ { "code": "SN150", "name": "BASE OIL", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "W SPIRIT", + "name": "White spirit", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "LAWS", + "name": "Low aromatic white spirit", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 247, - "abbreviation": "SOY", - "nameKr": "대두유", - "nameEn": "SOYBEAN OIL", + "id": 154, + "abbreviation": "RBDSBO", + "nameKr": "정제, 탈색, 탈취 공정을 거친 콩기름", + "nameEn": "RBD Soyabean oil", + "synonymsKr": "강낭콩, 고무 성질올 제거한 메주콩, 중국 완두콩유. 대두처럼 보이는 메주콩유", "synonymsEn": "Soybean oil / soybean / SOYASAPONIN / Soy oil / SOYA OIL / CAP 18 (oil) / SOYBEAN POLAR LIPID EXTRACT / A6OIL / CAP 18 / D04962 / HY 3050", - "synonymsKr": "대두 기름 / 대두기름 / 대두기름(SOYBEANOIL) / 돌콩오일 / 대두유", - "unNumber": "-", + "unNumber": "", "casNumber": "8001-22-7", - "transportMethod": "", - "sebc": "", - "usage": "쇼트닝, 마가린 원료, 식용유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", + "transportMethod": "산적액체(Y류)", + "sebc": "F (Floater)", + "usage": "식용유, 마요네즈와 드레싱의 유화에 쓰임", + "state": "액체", + "color": "약한노란색", + "odor": "약간독특한냄새", + "flashPoint": "2681:", + "autoIgnition": "430.781", "boilingPoint": "", - "density": "", - "solubility": "", + "density": "0.91", + "solubility": "불용", "vaporPressure": "", "vaporDensity": "", "explosionRange": "", "nfpa": { "health": 0, - "fire": 0, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Y", "ergNumber": "", - "idlh": "", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", + "responseDistanceFire": "자료없음", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "희발성", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "식용유 부유, 해상수거 곤란", + "firstAid": "흡입노출 • 신선한 곳으로 옮김, 인공호흡, 호흡곤란 시 산소투입 피무접촉 • 20분 이상 흐르는 물에 눈을 씻을 것, 오염된 옷과 신발 제거 드급조치 더 안구접촉 • 20분 이상 흐르는 물에눈을 씻을 것 경구섭취 • 의식이 없으면 아무것도 먹이지 말 것, 의료조치 ' 초등 대응방법 대응장비 보호복 호흡구 보안경 보호장걉 기타장비 (일21韻1복) 방진마스크 ° ° 열화상카메라 초기 이격거라 (m) 자료없음 방호거리 (m) 자료없음 해상유출시 ► 유출물질은 물에 녹지 않고 부유. 오일폔스 설치 확산방지 > 오일펜스 설치. 뜰채. 유흡착재 등 이용 유출물질 화수조치 宗 유출물질은 미끄러우므로 방제작업 시 안전주의 > 출동 경비정(방제정) 방진마스크를 포함한 5,6형식 보호의 착용, 증기홉입과 피부와 눈에 접촉을 피할 것 화재시대피거리 (m) 자료없옴 + 화재 •폭발시 > 유출물질은 연소시 유독가스 방출, 풍상에 위치, 내알콜포 이용 화재진압 • 열화상카메라 운용(결과전파), 소화포 이용 사고선 냉각조치 할 것 • 직수분사 금지(화재를 번지게 할 수 있음) • 안전이 확보되면, 화학방제함 또는 예인선 동원 긴급예인 조치 39", + "fireFighting": "포말/분무주수/CO₂.", + "spillResponse": "오일펜스/흡착재 회수.", "exposure": "", "regulation": "" }, @@ -17245,27 +14453,45 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "SOY", "name": "SOYBEAN OIL", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "FRSBO", + "name": "Fully refined soya bean oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RBDSBO", + "name": "RBD Soyabean oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RSBO", + "name": "Refined Soya bean oil", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 248, + "id": 155, "abbreviation": "SRFO", "nameKr": "중유", "nameEn": "STRAIGHT RUN FUEL OIL", - "synonymsEn": "STRAIGHT RUN FUEL OIL", "synonymsKr": "중유 과정을 거치지 않고 원유 그대로인 중유", + "synonymsEn": "STRAIGHT RUN FUEL OIL", "unNumber": "2934", "casNumber": "64741-45-3", "transportMethod": "", @@ -17321,126 +14547,58 @@ { "code": "SRFO", "name": "STRAIGHT RUN FUEL OIL", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 249, - "abbreviation": "SUA", - "nameKr": "황산", - "nameEn": "SULPHURIC ACID", - "synonymsEn": "Sulfuric acid / Hydrogen sulfate / SULFURIC ACID REAGENT GRADE 95-98% / So42- / Sulfuric acid 96 % / Acide sulfurique / So4-- / Acid Mist / Sulfur acid / Dipping acid / Inorganic acid", - "synonymsKr": "황산 / 1N-황산 / 2N(1M)황산 / 5N황산 / N/10(0.05M)황산 / N/2(0.25M)황산 / N/20(0.025M)황산 / N/5(0.1M)황산 / 비트리올갈색기름 / 비트리올의기름 / 황산 / 황산1:2 / 황산15% / 황산30% / 황산9% / 황산95% / 황산pH4 / 황산이수소 / 설프릭애씨드 / 황산이나트륨 / 황산(VI)산", - "unNumber": "1350(고) 2448(액)", - "casNumber": "7664-93-9", - "transportMethod": "", - "sebc": "", - "usage": "비료, 세제, 석유정제, 야금, 의약품 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SUA", - "name": "SULPHURIC ACID", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 250, + "id": 156, "abbreviation": "TBA", "nameKr": "삼차 부틸 알코올", "nameEn": "TERT-BUTYL ACRYLATE", + "synonymsKr": "T—뷰틸 알코올 / tert-부틸 알코올 / TERTIARY Butyl 시cohoKTBA) / Tert-butanoi / T-뷰탄올", "synonymsEn": "tert-Butanol / TBA / BUTANOL / TERT-BUTYL ALCOHOL / BUTAN-1-OL / 2-METHYLPROPAN-2-OL / t-Butanol / 2-METHYL-2-PROPANOL / 2-Propanol, 2-methyl- / TERTIARY BUTYL ALCOHOL / T-BUTYL ALCOHOL", - "synonymsKr": "tert-부틸알코올 / 1,1-디메틸에탄올 / T-부탄올 / 삼차-부탄올 / 트리메틸메탄올 / 트리메틸카빈올 / 부틸알코올TERT-BUTYLALCOHOL / 삼차부틸알코올 / 삼차-부틸알콜 / 2-메틸-2-프로판올 / t-부틸알코올 / T-뷰틸 알코올", "unNumber": "1120", "casNumber": "75-65-0", - "transportMethod": "", - "sebc": "", - "usage": "용매, 에탄올 변성제, 페인트 제거제, 가솔린 옥탄 부스터 및 산화제", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Z류)", + "sebc": "D (Dissolver)", + "usage": "1120 (CHjyCOH 에탄올의 변성제, 조미료 향수 등 원료 위험 유해 분류 인화성 급성독성 흡인유해성 인화성 액체 : 구분 2 급성 독성(흡입): 구분4 심한 눈 손상성자극성 : 구분2 생식독성:구분2 을질툭성 I", + "state": "액체", + "color": "무색", + "odor": "자극성", + "flashPoint": "11~23℃", + "autoIgnition": "478℃", + "boilingPoint": "82.42℃", + "density": "0.7887", + "solubility": "lOOOg/L", + "vaporPressure": "40.7mmHg(25‘C)", + "vaporDensity": "2.5", + "explosionRange": "2.4~8.0%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/2", "ergNumber": "", - "idlh": "", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성, 호흡기 자극, 중추신경계", + "firstAid": "흡입노출 • 신선한 곳으로 이동, 산소공급. 인공호흡 피부접촉 • 15분 이상 비누와 물로 씻을 것, 의료조치 안구접촉 - 눈을 문지르지 말 것, 15분 동안 물로 씻을 것, 의료초치. 콘택트렌즈 제거 경구섭취 . 즉시 물로 입을 씻어낼 것, 의사진료 초동대웅방법 대응장비 보호복 호흡구 보안경 보호장갑 기타장비 3.4형식(C급) 방독마스크(반면,전면) 仁, 여하사가께기 1형식 (1B) 공기호홈기 O O 열화상카메라 초기 이격거리 (m) 50 방호거리 (m) 300 해상유출시 ► 유출물질은 생식기능에 유해영향을 일으키고 흡입 시에는 치명적일 수 있으므로 모든 출동세력 풍상에 위치. 최소 50m 이격거리 유지, 주변선박 통제 ► 인화성 물질로 증기의 이동에 의한 폭발 가능성이 높으므로 흡연. 불꽃, 스파크 등 모든 점화원 제거 ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용, 증기홉입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 물에 용해 희석되어 방제조치 불필요 ► 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 화재 시대피거리(m) 800 + 화재-폭발시 ►유출물질은 연소시 유독가스 방출,", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제.", + "exposure": "TWA 100 ppm, IDLH 1,600 ppm", "regulation": "" }, "ibcHazard": "", @@ -17449,67 +14607,67 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "TBA", "name": "TERT-BUTYL ACRYLATE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 251, + "id": 157, "abbreviation": "TCE", - "nameKr": "트리클로 에틸렌", - "nameEn": "TRICHLORO ETHYLENE", - "synonymsEn": "Trichloroethylene / TCE / TRI / TRICHLORETHYLENE / TRICHLOROETHENE / 1,1,2-TRICHLOROETHENE / 1979/1/6 / Triol / C2HCl3 / Trichlorethylen / Triad", + "nameKr": "트라이클로로에틸렌", + "nameEn": "Trichloroethylene", "synonymsKr": "트라이클로로에틸렌 / 트리클로로에틸렌 / 트라이클로로에틸렌 / 티씨이 / 트리클로로에틸렌(TCE) / 1,1,2-트라이클로로에텐 / 아세틸렌 트라이클로라이드 / 에티닐 트라이클로라이드 / 에틸렌 트라이클로라이드 / 트라이클로로에텐", + "synonymsEn": "Trichloroethylene / TCE / TRI / TRICHLORETHYLENE / TRICHLOROETHENE / 1,1,2-TRICHLOROETHENE / 1979 / 1 / 6 / Triol / C2HCl3 / Trichlorethylen / Triad", "unNumber": "1170", "casNumber": "79-01-6", - "transportMethod": "", - "sebc": "", - "usage": "세척제, 탈지제, 브레이크 클리너, 실런트, 윤활유, 접착제, 페인트 및 코팅제 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(6.1급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "유해액체물질/Y 국가긴급방제계횜 포함 위험 • 유해물질 무색의 달콤한 냄새가 나는 액체로 주로 접착제, 윤활제, 광택제 등에 사용되며, 해상유출 시에는 침강, 용해되므로 방제조치가 불필요함. 암을 일으킬 수 있고 눈. 피부 자극과 피부에 과민반응을 일으킬 수 있으므로 방독마스크. 화학", + "state": "액체", + "color": "무색", + "odor": "달콤한냄새", + "flashPoint": "32℃", + "autoIgnition": "410“C", + "boilingPoint": "87.2’C", + "density": "1.46", + "solubility": "1.28g/L(25“C)", + "vaporPressure": "69mmHg(25‘'C)", + "vaporDensity": "4.53", + "explosionRange": "8~10.5%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "160", + "idlh": "1,000 ppm", + "aegl2": "74 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "100m", + "marineResponse": "휘발성", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "발암성(Group 1), 중추신경계 억제, 간독성, 피부 자극", + "firstAid": "흡입노출 • 즉시 의료조치. 산소공급, 인공호흡 피부접촉 • 긴급 의료조치, 20분 이상 흐르는 물에 씻을 것 안구접촉 • 몇 분간 물로 씻을 것, 콘택트렌즈 제거. 의료조치 경구섭취 • 즉시의료조치 초동매응방법 대응장비 보호복 호흡구 보안경 보호장갑 기타장비 3,4형식 (C급) 밤독마스크(반 전면) 厂— 厂 ' : 연궁[나가!가I가 1형식 (1B) 공기호홉기 ① ① 열화상카메라 1 초기 이격거리 (m) 50 방호거리 (m) 100 | 해상유출시 ►유출물질은 발암성 물질로 눈. 피부자극과 피부에 과민반응을 일으킬 수 있으므로 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박 통제 ►출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3.4형식 보호의 착용(사고선 근접 시 1B급 착용), 증기흡입과 피부와 눈에 접촉을 피할 것 ►유출물질은 침강, 용해되므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 1 화재시대피거리 (m) 800 1 + 화재-폭발시 ► 유출물질은 연소시 유독가스 방출, 풍상에 위치, 최소 아격거리 유지하고 내알콜포 이용 화재진압 ► 열화상카메라", + "fireFighting": "분무주수/포말/CO₂. 용기 냉각.", + "spillResponse": "점화원 제거. 주변 통제. 흡수제 회수.", + "exposure": "TWA 10 ppm, AEGL-2 74 ppm, IDLH 1,000 ppm", + "regulation": "유해화학물질관리법" }, "ibcHazard": "", "ibcShipType": "", @@ -17517,67 +14675,73 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-A", + "emsFire": "F-A", + "emsSpill": "S-A", "emsFirstAid": "", "cargoCodes": [ { "code": "TCE", "name": "TRICHLORO ETHYLENE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "TCE", + "name": "Trichloroethylene", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 252, - "abbreviation": "TCM", - "nameKr": "클로로포름", - "nameEn": "TRICHLOROMETHAN", + "id": 158, + "abbreviation": "CFM", + "nameKr": "메탄트리염화물", + "nameEn": "Chloroform", + "synonymsKr": "트리클로로메탄 / 메테인 트라이클로라이드 / 메테닐 클로라이드 / 트라이클로로폼", "synonymsEn": "Chloroform / CHCl3 / TRICHLOROMETHANE / TCM / Fisher Chemical / Chloroform 5g [67-66-3] / r20 / Chloroforme / Trichlormethan / METHYLIDYNE TRICHLORIDE / Residual Solvent Class 2 - Chloroform", - "synonymsKr": "클로로포름 / 클로로포름 / R20(냉각제) / 메탄트리염화물(METHANETRICHLORIDE)메틸트리염화물 / 메테닐트리염화물 / 클로로폼 / 트리클로로메탄 / 트리클로로메탄,클로로포롬 / 트리클로로포름 / 프레온20 / 메테닐트리클로라이드 / 삼염화메탄", "unNumber": "1888", "casNumber": "67-66-3", - "transportMethod": "", - "sebc": "", - "usage": "살충제, 곰팡이 제거제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", + "transportMethod": "포장(6.1급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "마취제. 치약의 성분 발암성 (구분2) - 구분2 생식독성 (구분2) 오존충유해성(구분1) 물질툑성 I", + "state": "휘", + "color": "투명, 무색", + "odor": "달콤한 냄새", + "flashPoint": "비가연성", + "autoIgnition": "982℃", + "boilingPoint": "60-62℃", + "density": "1.49", + "solubility": "7.95g/L(25r)", + "vaporPressure": "197mmHg(25'’C)", + "vaporDensity": "4.12", "explosionRange": "", "nfpa": { - "health": 0, + "health": 2, "fire": 0, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "151", + "idlh": "0 분)", + "aegl2": "64 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "침강용해 (SD)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "발암성 의심, 중추신경계 억제, 간/신장 손상", + "firstAid": "흡입노출 피부접촉 응급조치 안구접촉 경구섭취 • 즉시 의료조치 • 물로 씻을 것, 화상의 경우 다량의 찬물로 씻을 것 • 몇 분간 물로 조심해서 씻어낼 것. 콘택트렌즈를 제거할 것 • 입을 씻어낼 것, 구강대구강법 인공호흡 하지 말 것, 즉시 의료조치 ►유출물질은 화재시 매우 유독한 유독가스(포스겐) 방출, 풍상에 위치, 최소 이격거리 유지하고 내알골포 이용 대응장비 보호복 호흡구 보안경 보호장갑 3,4형식 (C급) 방독마스크(반면, 전면) 주 소 1형식 (1B) 공기호홈기 이 이 기타장비 열화상카메라 1 초기 이격거리(m) 50 방호거리(m) 50 1 해상유출시 ►유출물질은 피부 및 눈자극. 두통, 현기증 유발 등 인체유해성이 있으므로 모든 출동세럭 풍상에 위치, 최소 50rn 이격거리 유지, 주변선박 통제 ►출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3,4형식 보호의 착용(사고선 근접 시 1B이상 착용), 증기흡입과 피부와 눈에 접촉을 피할 것 ►유출물질은 침감, 용해되므로 방제조치 불필요 •乂 대기 상층부의 오존층을 파괴하는 물질임 ► 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 1 화재", + "fireFighting": "복합가스탐지기 이용 농도 확인(문자망 공유). 먼 곳에서 분무주수 또는 일반포말 이용. 화재진압.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 해수에 유출시 침전용해(SD)되어 해상수거 불가.", + "exposure": "TWA 10 ppm, AEGL-2 64 ppm, IDLH 500 ppm", + "regulation": "유해화학물질관리법" }, "ibcHazard": "", "ibcShipType": "", @@ -17585,67 +14749,73 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-A", + "emsFire": "F-A", + "emsSpill": "S-A", "emsFirstAid": "", "cargoCodes": [ { "code": "TCM", "name": "TRICHLOROMETHAN", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CFM", + "name": "Chloroform", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 253, + "id": 159, "abbreviation": "TDI", "nameKr": "톨루엔디이소시아네이트", "nameEn": "TOLUENE DIISOCYANATE", - "synonymsEn": "·BENZENE, 1,3-DIISOCYANATOMETHYL- ·DESMODUR T100 ·DIISOCYANATOMETHYLBENZENE ·DIISOCYANATOTOLUENE ·HYLENE T ·ISOCYANIC ACID, METHYL-M-PHENYLENE ESTER ·METHYL-M-PHENYLENE DIISOCYANATE ·METHYLPHENYLENE ISOCYANATE ·METHYL-M-PHENYLENE ISOCYANATE ·MONDUR TD ·MONDUR TD-80 ·RUBINATE TDI ·RUBINATE TDI 80/20 ·TDI ·TOLUENE-1,3-DIISOCYANATE ·TOLYLENE DIISOCYANATE ·TOLYLENE ISOCYANATE ·U223 ·TDI mixture ·tolylene-2, 4-diisocyanate / tolylene-2, 6-diisocyanate ·4-methyl-mphenylenediisocyanate / 6-methyl-m-phenylenediisocyanate ·isocyanic acid, methylphenylene ester diisocayantomethylbenzene ·2, 4-tolylene diisocyanate / 2, 6-tolylene diisocyanate ·di-isocyanatoluene ·Hylene T Mondur TD Niax TDI ·Rubinate TDI 80/20 Voronate T80", - "synonymsKr": "·벤젠, 1,3-다이아이소시아네이토메틸- ·다이아이소시아네이토메틸벤젠 ·다이아이소시아네이토톨루엔 ·아이소시안산 , 메틸-M-페닐렌 에스터 ·메틸-M-페닐렌 다이아이소시아네이트 ·메틸페닐렌 아이소시아네이트 ·메틸-M-페닐렌 아이소시아네이트 ·톨루엔-1,3-다이아이소시아네이트 ·톨일렌 다이아이소시아네이트 ·톨일렌 아이소시아네이트 ·톨일렌-2, 4-다이아이소시아네이트/ 톨일렌-2, 6-다이아이소시아네이트 ·4-메틸-m페닐렌다이아이소시아네이트/ 6-메틸-m-페닐렌다이아이소시아네이트 ·아이소시안산, 메틸페닐렌 에스터다이아이소카얀토메틸벤젠 ·2, 4-톨일렌 다이아이소시아네이트/ 2, 6-톨일렌 다이아이소시아네이트 ·di-isocyana톨루엔", + "synonymsKr": "톨루엔디이소시안산(혼합이성질체) / 톨루엔-2,4 / 2,6-디이소시아네이트 / m-톨리덴다이아이소시아네이트 / 톨루엔 다이아이소시아네이트 / 다이아이소시아나토톨루엔 / 메틸페닐렌 아이소시아네이트 / 벤젠, 1,3-다이아이소시아나토메틸 / 아이소시안산, 메틸-m-페닐렌 에스터 / 톨루엔다이아이소시아네이트 / 톨일렌 아이소시아네이트 / 벤젠, 1,3-다이아이소시아네이토메틸- / 다이아이소시아네이토메틸벤젠 / 다이아이소시아네이토톨루엔 / 아이소시안산 , 메틸-M-페닐렌 에스터 / 메틸-M-페닐렌 다이아이소시아네이트 / 메틸페닐렌 아이소시아네이트 / 메틸-M-페닐렌 아이소시아네이트 / 톨루엔-1,3-다이아이소시아네이트 / 톨일렌 다이아이소시아네이트 / 톨일렌 아이소시아네이트 / 톨일렌-2, 4-다이아이소시아네이트 / 톨일렌-2, 6-다이아이소시아네이트 / 4-메틸-m페닐렌다이아이소시아네이트 / 6-메틸-m-페닐렌다이아이소시아네이트 / 아이소시안산, 메틸페닐렌 에스터다이아이소카얀토메틸벤젠 / 2, 4-톨일렌 다이아이소시아네이트 / 2, 6-톨일렌 다이아이소시아네이트 / di-isocyana톨루엔", + "synonymsEn": "Toluene diisocyanate / TOLYLENE DIISOCYANATE / Toluene diisocyanate, 98%, mixture of 80% 2,4- and 20% 2,6-form / tdi80-20 / rubinatetdi / desmodurt100 / SCURANATE T65 / TDI-80 TYPE 1 / TDI-80 TYPE 2 / Esbelt Vulsam / niaxisocyanatetdi / BENZENE, 1,3-DIISOCYANATOMETHYL- / DESMODUR T100 / DIISOCYANATOMETHYLBENZENE / DIISOCYANATOTOLUENE / HYLENE T / ISOCYANIC ACID, METHYL-M-PHENYLENE ESTER / METHYL-M-PHENYLENE DIISOCYANATE / METHYLPHENYLENE ISOCYANATE / METHYL-M-PHENYLENE ISOCYANATE / MONDUR TD / MONDUR TD-80 / RUBINATE TDI / RUBINATE TDI 80 / 20 / TDI / TOLUENE-1,3-DIISOCYANATE / TOLYLENE DIISOCYANATE / TOLYLENE ISOCYANATE / U223 / TDI mixture / tolylene-2, 4-diisocyanate / tolylene-2, 6-diisocyanate / 4-methyl-mphenylenediisocyanate / 6-methyl-m-phenylenediisocyanate / isocyanic acid, methylphenylene ester diisocayantomethylbenzene / 2, 4-tolylene diisocyanate / 2, 6-tolylene diisocyanate / di-isocyanatoluene / Hylene T Mondur TD Niax TDI / Rubinate TDI 80 / 20 Voronate T80", "unNumber": "2078", "casNumber": "26471-62-5", - "transportMethod": "", - "sebc": "", - "usage": "플리우레탄 제조의 기초 원료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(6.1급), 산적액체(X류)", + "sebc": "S (Sinker)", + "usage": "황백색에서 옅은 노란색을 띄며 매운 냄새가 나는 액체로서 주로 경화제, 접착제. 니스 등에 사용됨. 해상유출 시에는 침강하므로 방제조치는 불필요할 것으로 보이나, 증기흡입 시 치명적이고, 호흡기. 피부에 과민반응을 일으킬 수 있으므로 방독마스크, 화학", + "state": "액체", + "color": "황백색-옅은 노란색", + "odor": "매운 냄새", + "flashPoint": "135℃", + "autoIgnition": "620℃", + "boilingPoint": "251℃", + "density": "1.22", + "solubility": "불용", + "vaporPressure": "(물 23,8nimHg)", + "vaporDensity": "6", + "explosionRange": "0.9~9.5%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 3, + "fire": 1, + "reactivity": 3, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "156", + "idlh": "2.5 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "침강 (S)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "독성, 부식성, 호흡기 감작성, 발암성 의심, 수분과 반응", + "firstAid": "흡입노출 피부접촉 응급조치 안구접촉 경구섭취 • 산소공급, 인공호흡. 신선한 곳으로 이동. 구강대구강법 피할 것 • 15분 이상 비누와 물로 씻을 것, 의료조치 • 몇 분간 물로 씻을 것, 의료조치, 콘택트렌즈 제거 • 긴급 의료조치, 의식이 있다면 수분제거를 위해 구토를 유도 초통매응방법 보호복 호홉구 보안경 보호장갑 ! 기타장비 대옹장비 3,4형식 (C급) 방독마스크(반면,전면) 仁) 仁) 서 옄화사카메라 1형식 (1B) 공기호홉기 ⑴ 아 설와승가베다 1 초기 이격거리 (m) 50 방호거리 (m) 50 ►유출물질은 홉입 시 치명적이고. 피부화상. 피부와 호흡기에 과민반옹을 일으킬 수 있으므로, 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박 통제 (흡연, 불꽃. 스파크 등 모든 점화원 제거) 乂 대기 중에 해상유출시 굳는 물질임 ►출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용(사고선 근접 시 1B급 착용), 증기홉입과 피부와 눈에 접촉욜 피할 것 ►유출물질은 침강하므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지. 안전확보 시까지 지속적인 모니터링 1 화재 시대피거", + "fireFighting": "분무주수/포말/CO₂.", + "spillResponse": "수분과 격리. 흡수제 회수. 점화원 제거.", + "exposure": "TWA 0.005 ppm, STEL 0.02 ppm, IDLH 2.5 ppm", + "regulation": "유해화학물질관리법" }, "ibcHazard": "", "ibcShipType": "", @@ -17653,367 +14823,249 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-A", + "emsFire": "F-A", + "emsSpill": "S-A", "emsFirstAid": "", "cargoCodes": [ { "code": "TDI", "name": "TOLUENE DIISOCYANATE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 254, + "id": 160, "abbreviation": "TEA", "nameKr": "트리에탄올아민", "nameEn": "TRIETHANOLAMINE", - "synonymsEn": "Triethylamine / TEA / Et3N / N,N-DIETHYLETHANAMINE / (C2H5)3N / TEN / Triethylamin / Trietilamina / TRIEHYLAMINE / N,N,N-Triethylamine / N,N-Diethylethanamin", - "synonymsKr": "트리에틸아민 / (디에틸아미노)에탄 / N,N-디에틸에탄아민 / 에탄아민,N,N-디에틸- / 트라이에틸아민 / 트라이에틸아민(트리에틸아민) / 트리에틸아민 / N,N-다이에틸에탄아민 / C20-C28선형일차알코올", + "synonymsKr": "트롤아민/ 스테롤아민 / 나이트릴로트리에탄올", + "synonymsEn": "Triethylamine / TEA / Et3N / N,N-DIETHYLETHANAMINE / (C2H5)3N / TEN / Triethylamin / Trietilamina / TRIEHYLAMINE / N,N,N-Triethylamine / N,N-Diethylethanamin / Amine, triethyl, 2,2',2''-trihydroxy- / Daltogen / Ethanol, 2,2',2''-nitrilotri- / Ethanol, 2,2',2''-nitrilotris- / Nitrilotriethanol / Nitrilo-2,2',2''-triethanol / 2,2',2''-Nitrilotris(ethanol) / Sterolamide / Sting-kill / Thiofaco t-35 / Triethanolamin / Triethanolamin-ng / Triethylamine, 2,2',2''-trihydroxy- / Triethylolamine / Trihydroxytriethylamine / Tris(hydroxyethyl)amine / Tris(2-hydroxyethyl)amine / Trolamine / Sterolamine / Usepa / opp pesticide code: 004208 / 2,2',2''-Nitrilotriethanol / 24 / r2055 / Tea / Alkanolamine / Amino alcohol", "unNumber": "2733", "casNumber": "102-71-6", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(3급), 산적액체(Z류)", + "sebc": "D (Dissolver)", "usage": "유화제와 계면활성제 제조", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "점성액체", + "color": "옅은 노란색", + "odor": "암모니아 냄새", + "flashPoint": "17*", + "autoIgnition": "31*", + "boilingPoint": "335℃", + "density": "1.13", + "solubility": "1,000 g/L (잘 녹음)", + "vaporPressure": "(물 17.5imiHg)", + "vaporDensity": "5.1", + "explosionRange": "1.3~8.5%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 2, + "fire": 1, + "reactivity": 1, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "부식성, 용해(D), 해상수거 필요", + "ergNumber": "132", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "666m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "경미한 독성, 피부/안구 자극, 감작성", + "firstAid": "흡입: 신선한 공기. 피부/안구: 물로 세척. 경구: 의료조치.", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 내알코올 포말.", + "spillResponse": "주변 통제. 해수에 유출 시 용해(D)되어 해상수거 불가.", "exposure": "", - "regulation": "" + "regulation": "CAS 102-71-6" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "T", + "ibcDetection": "R", "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6,\n16.2.9", + "emsCode": "F-A, S-C", + "emsFire": "F-A", + "emsSpill": "S-C", "emsFirstAid": "", "cargoCodes": [ { "code": "TEA", "name": "TRIETHANOLAMINE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 255, - "abbreviation": "TEOA", - "nameKr": "트리에탄올아민", - "nameEn": "TRIETHANOLAMINE", - "synonymsEn": "Triethylamine / TEA / Et3N / N,N-DIETHYLETHANAMINE / (C2H5)3N / TEN / Triethylamin / Trietilamina / TRIEHYLAMINE / N,N,N-Triethylamine / N,N-Diethylethanamin", - "synonymsKr": "트리에틸아민 / (디에틸아미노)에탄 / N,N-디에틸에탄아민 / 에탄아민,N,N-디에틸- / 트라이에틸아민 / 트라이에틸아민(트리에틸아민) / 트리에틸아민 / N,N-다이에틸에탄아민 / C20-C28선형일차알코올", - "unNumber": "2733", - "casNumber": "102-71-6", - "transportMethod": "", - "sebc": "", - "usage": "유화제와 계면활성제 제조", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "T", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "TEOA", "name": "TRIETHANOLAMINE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 256, + "id": 161, "abbreviation": "THF", - "nameKr": "테트라하드로푸란", - "nameEn": "TETRAHYDROFURAN", - "synonymsEn": "Tetrahydrofuran / THF / Oxolane / PTMEG 2000 / PTHF / Butylene oxide / Tetrahydrofurane / oxolan / PTMEG 1000 / 1,4-Epoxybutane / TETRAMETHYLENE ETHER GLYCOL 2000 POLYMER", + "nameKr": "테트라하이드로푸란", + "nameEn": "Tetrahydrofuran", "synonymsKr": "테트라하이드로푸란 / 테트라히드로푸란 / 부탄,알파,델타-산화물 / 시클로테트라메틸렌산화물 / 옥사시클로펜탄 / 테트라메틸렌산화물 / 테트라하이드로푸란 / 테트라하이드로퓨란 / 테트라하이드로퓨란250ppmBHT / 티에치에프 / 테트라하이드로푸란(THF)", + "synonymsEn": "Tetrahydrofuran / THF / Oxolane / PTMEG 2000 / PTHF / Butylene oxide / Tetrahydrofurane / oxolan / PTMEG 1000 / 1,4-Epoxybutane / TETRAMETHYLENE ETHER GLYCOL 2000 POLYMER", "unNumber": "2056", "casNumber": "109-99-9", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "D (Dissolver)", "usage": "플리머, 의약품, 농약 생산", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "유동성 액체", + "color": "투명, 무색", + "odor": "미약한 과일향", + "flashPoint": "-2(rc", + "autoIgnition": "32rc", + "boilingPoint": "65℃", + "density": "0.89", + "solubility": "300 g/L (25℃)", + "vaporPressure": "(물 23.8inniHg)", + "vaporDensity": "2.49", + "explosionRange": "2~11.8%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 2, + "fire": 4, + "reactivity": 1, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "유해액체물질/Z", + "ergNumber": "127", + "idlh": "2,000 ppm", + "aegl2": "450 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "인화점", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발용해 (ED)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "고인화성, 호흡기/피부/안구 자극, 중추신경계, 간독성", + "firstAid": "흡입노출 피부접촉 응급조치 안구접촉 경구섭취 •산소공급, 인공호흡, 의료조치 • 비누와 물로 씻을 것, 화상의 경우 다량의 찬물로 씻을 것 • 몇 분간 물로 초심해서 씻어넬 것, 콘택트렌즈를 제거할 것 • 즉시 의료조치 초동 대응방법 보호복 호홉구 보안경 보호장갑 기타장비 대응장비 3,4형식 (C급) 1 형식 (1B) 방독마스크(반면, 전면) 공기호흡기 O O : 열화상카메라 1 초기 이격거리(m) 50 방호거리 (m) 300 1 ► 유출물질은 고인화성 물질로 증기의 이동에 의한 폭발 가능성이 높으며, 심한 눈 손상과 호흡기자극을 일으킬 수 있으므로 모든 출동세력 퍙상에 위치. 최소 50m 이격거라 유지, 주변선박 통제(홉연. 불꽃. 스파크 동 모든 해상유출시 점화원 제거) ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3,4형식 보호의 착용(사고선 근접 시 1B이상 착 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 용해되므로 방제조치 불필요 부 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 I 화재 시대피거리(rrO—— \"eoi + ► 유출물질은 화재시 매우 유독한 유독가스 방출, 풍상에 위", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제. 증기운 이동 억제.", + "exposure": "TWA 200 ppm, STEL 250 ppm, AEGL-2 450 ppm, IDLH 2,000 ppm", "regulation": "" }, "ibcHazard": "S", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "F", + "ibcDetection": "R", "ibcFireFighting": "AC", "ibcMinRequirement": "15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "THF", "name": "TETRAHYDROFURAN", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "THF", + "name": "Tetrahydrofuran", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 257, + "id": 162, "abbreviation": "TOL", "nameKr": "톨루엔", "nameEn": "TOLUENE", - "synonymsEn": "Toluene / TOL / METHYLBENZENE / TOLUNE / TOLUOL / Toluen / JB / PHENYLMETHANE / Methane, phenyl- / tolueno / caswellno859", - "synonymsKr": "톨루엔 / 1-메틸벤젠 / 메틸벤젠 / 톨루올 / 메틸벤젠,메틸벤졸 / 페닐메탄 / 톨루엔(TO) / 메틸벤졸", + "synonymsKr": "벤젠메틸- / 메타사이드 / 메틸벤젠 / 메틸벤졸 / 톨루올 108-88-3", + "synonymsEn": "Toluene / TOL / METHYLBENZENE / TOLUNE / TOLUOL / Toluen / JB / PHENYLMETHANE / Methane, phenyl- / tolueno / caswellno859 / ANTISAL 1A / BENZENE, METHYL- / Caswell no 859 / CP 25 / METHACIDE / METHANE, PHENYL- / METHYLBENZENE / METHYLBENZOL / NCI-C07272 / PHENYLMETHANE / TOLUEEN (DUTCH) / TOLUEN (CZECH) / TOLUOL / TOLUOLO (ITALIAN) / 1 degree toluene / methylbenzene / methyl benzene / methyl benzol / phenylmethane / methane, phenyl- / methacide, / ME-752 / toluol / toly / tolly / tollie / tolie / BP Toluene / Shell Toluene / Shell Toluol / Shell Methyl Benzene / Bauer Industries Thinner / Exxon 12645 / Selby Toluene, Pronalys BSPTL786", "unNumber": "1294", "casNumber": "108-88-3", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", "usage": "도료의 용제, 접착제, 잉크, 의약품 용제", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "액체", + "color": "무색, 투명", + "odor": "달콤하고 자극적임", + "flashPoint": "4℃", + "autoIgnition": "480℃", + "boilingPoint": "111℃", + "density": "0.87", + "solubility": "0.53 g/L (25℃)", + "vaporPressure": "28.4 mmHg (25℃)", + "vaporDensity": "3.1", + "explosionRange": "1.1~7.1%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "130", + "idlh": "500 ppm", + "aegl2": "1,200 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발 (E)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성(F), 증발(E), 해상수거 불가", + "firstAid": "흡입노출 피부접촉 응급조치 안구접촉 경구섭취 • 토하게 하지 말 것, 산소공급, 인공호흡 • 비누와 물로 씻을 것, 화상의 경우 잔물로 씻을 것 . 즉시 20분 이상 흐르는 물에 씻을 것 • 토하게 하지 말 것, 즉시 의료조치 초동 대응방법 대응장비 보호복 호홉구 보안경 보호장갑 기타장비 3.4형식 (C급) 방독마스크(반면,전몐 열화상카메라 1형식 (1B) 공기호홈기 이 으 설화才가메바 1 초기 이격거리(m) 50 방호거리(m) 300 | 해상유출시 ►유출물질은 고인화성물질로 증기의 이동에 의한 폭발 가능성이 높으며, 삼켜서 기도로 유입되면 치명적이고 생식기능 악영향, 피부자극, 현기증을 일으킬 수 있으므로 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박 통제 (흡연, 불꽃. 스파크 등 모든 점화원 제거) ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호복 착용(사고선 근접시 1B 착용), 증기홉입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 증발하므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지. 안전확보 시까지 지속적인 모니터링 1 화재 시대피거리(m) 800 1 +", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 일반포말 이용. 직사주수 금지. 화재진압 후에도 사고선 냉각 조치.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 분무 주수로 증기운 이동 억제. 안전 확보 시까지 지속적 모니터링.", + "exposure": "TWA 50 ppm, STEL 150 ppm", "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.17, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-U", + "emsFire": "F-E", + "emsSpill": "S-U", "emsFirstAid": "", "cargoCodes": [ { "code": "TOL", "name": "TOLUENE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 258, - "abbreviation": "TX", - "nameKr": "", - "nameEn": "ALKYLBENZEN MIXTURE", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "TX", - "name": "ALKYLBENZEN MIXTURE", - "company": "", - "source": "화물적부도" + "code": "TLN", + "name": "Toluene", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 259, + "id": 163, "abbreviation": "UCO", "nameKr": "회수유", "nameEn": "USED COOKING OIL", - "synonymsEn": "USED COOKING OIL", "synonymsKr": "폐식용유", + "synonymsEn": "USED COOKING OIL", "unNumber": "-", "casNumber": "68476-81-0", "transportMethod": "", @@ -18069,19 +15121,25 @@ { "code": "UCO", "name": "USED COOKING OIL", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "YG", + "name": "YELLOW GREASE", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 260, + "id": 164, "abbreviation": "UCOME", "nameKr": "지방산 메틸 에스테르", "nameEn": "USED COOKING OIL METHYL ESTER", - "synonymsEn": "USED COOKING OIL METHYL ESTER", "synonymsKr": "지방산 메틸 에스테르", + "synonymsEn": "USED COOKING OIL METHYL ESTER", "unNumber": "-", "casNumber": "67742-38-3", "transportMethod": "", @@ -18137,87 +15195,19 @@ { "code": "UCOME", "name": "USED COOKING OIL METHYL ESTER", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 261, - "abbreviation": "UG", - "nameKr": "무연휘발유", - "nameEn": "UNLEADED GASOLINE", - "synonymsEn": "gasoline / GASOLINE / PIANO Gasoline / Cleaning solven / RFA Gasoline@Blank / TIANFU-CHEM gasoline / RF-A Gasoline(Technical) / PIANO Gasoline (with MtBE) / GASOLINE(FROM50-100OCTANE) / PIANO Gasoline (with Ethanol) / Gasoline - Premium@0.5 mg/mL in MeOH", - "synonymsKr": "가솔린 / 휘발유 / 가솔린, 천연 / 경질 가솔린", - "unNumber": "1203", - "casNumber": "8006-61-9", - "transportMethod": "", - "sebc": "", - "usage": "자동차 연료 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "UG", - "name": "UNLEADED GASOLINE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 262, + "id": 165, "abbreviation": "ULSD", "nameKr": "초저유황경유", "nameEn": "FUELS DIESEL", - "synonymsEn": "2 DIESEL FUEL / diesel / HRD 76 / ROADFUEL / MOTORFUEL / NATO-F 76 / MskSolvent / dieseloils / dieselfuels / Fuels,diesel / 2 DIESEL FUEL", "synonymsKr": "디젤연료1번 / 디젤연료 / 디젤연료,정제과정이완전히알려지고발암물질을함유하지않음을보여줄수있으면예외 / 디젤", + "synonymsEn": "2 DIESEL FUEL / diesel / HRD 76 / ROADFUEL / MOTORFUEL / NATO-F 76 / MskSolvent / dieseloils / dieselfuels / Fuels,diesel / 2 DIESEL FUEL", "unNumber": "-", "casNumber": "68334-30-5", "transportMethod": "", @@ -18273,563 +15263,19 @@ { "code": "ULSD", "name": "FUELS DIESEL", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 263, - "abbreviation": "ULTRA4", - "nameKr": "베이스오일 (사우디 아람코 제품)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀(윤활기유) /제풍명 수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질/ 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "자동차 엔진오일, 전기차용 윤활유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "ULTRA4", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 264, - "abbreviation": "ULTRA6", - "nameKr": "베이스오일 (사우디 아람코 제품)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀(윤활기유)/제품명 수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "상용차량 엔진오일, 기어오일, 윤활유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "ULTRA6", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 265, - "abbreviation": "ULTRA8", - "nameKr": "베이스오일 (사우디 아람코 제품)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀(윤활기유)/제품명 수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질/ 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "고점도 엔진오일, 그리스 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "ULTRA8", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 266, - "abbreviation": "AU2", - "nameKr": "베이스오일 (사우디 아람코 제품)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀(윤활기유)/제품명 수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질/ 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "변압기유, 전기 절연유 등 전력산업용 윤활유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "AU2", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 267, - "abbreviation": "AU3", - "nameKr": "베이스오일 (사우디 아람코 제품)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀(윤활기유)/제품명 수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질/ 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "자동변속기오일, 백색오일 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "AU3", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 268, - "abbreviation": "AU4", - "nameKr": "베이스오일 (사우디 아람코 제품)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀(윤활기유)/제품명 수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질/ 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "엔진오일, 다목적 윤활유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "AU4", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 269, - "abbreviation": "AU6", - "nameKr": "베이스오일 (사우디 아람코 제품)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀(윤활기유)/제품명 수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질/ 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "엔진오일, 기어오일, 액슬오일 등 중점도 윤활유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "AU6", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 270, - "abbreviation": "AU8", - "nameKr": "베이스오일 (사우디 아람코 제품)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀(윤활기유)/제품명 수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질/ 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "고하중 기계오일, 산업용 윤활유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "AU8", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 271, + "id": 166, "abbreviation": "VGO", "nameKr": "감압 경유", "nameEn": "VACUUM GAS OIL", - "synonymsEn": "VACUUM GAS OIL", "synonymsKr": "감압 가스 기름", + "synonymsEn": "VACUUM GAS OIL", "unNumber": "-", "casNumber": "70592-76-6", "transportMethod": "", @@ -18885,291 +15331,99 @@ { "code": "VGO", "name": "VACUUM GAS OIL", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 272, + "id": 167, "abbreviation": "VAC", "nameKr": "비닐 아세테이트", "nameEn": "VINYL ACETATE", - "synonymsEn": "Vinyl acetate / VAM / VINYL ACETATE MONOMER / Ethenyl acetate / Ethenyl ethanoate / Vinylacetate 1 / ethenylacetate / Vinyl Acetate(VAM) / aceticacidethenylester / VyAc / Vinile", - "synonymsKr": "초산비닐모노머 / 아세트산비닐 / 1-아세톡시에틸렌 / 비닐A단량체 / 비닐아세테이트 / 비닐아세트산 / 아세톡시에틸렌 / 아세트산비닐에스테르 / 아세트산에테닐에스테르 / 아세트산,에테닐에스테르 / 에스테르 / 에테닐아세트산 / 초산비닐모노머 / 아세트산비닐에스테르 / 에테닐아세트산 / 1-아세톡시에틸렌 / 비틸아세트산모노머 / 비닐아세트산(VAM) / 비닐아세테이트 / 비닐 아세테이트", + "synonymsKr": "초산비닐 / 아세트산. 에틸렌 에테르 / 아세트산, 에테닐 에스터 / 에테닐 아세트산", + "synonymsEn": "Vinyl acetate / VAM / VINYL ACETATE MONOMER / Ethenyl acetate / Ethenyl ethanoate / Vinylacetate 1 / ethenylacetate / Vinyl Acetate(VAM) / aceticacidethenylester / VyAc / Vinile / ACETATE DE VINYLE (FRENCH) / ACETIC ACID, ETHYLENE ETHER / ACETIC ACID, ETHENYL ESTER / ACETIC ACID VINYL ESTER / 1-ACETOXYETHYLENE / ETHANOIC ACID, ETHENYL ESTER / ETHENYL ACETATE / Ethenyl ethanoate / OCTAN WINYLU (POLISH) / VAC / VAM / VINILE (ACETATO DI) (ITALIAN) / VINYLACETAAT (DUTCH) / VINYL ACETATE HQ / Vinyl acetate monomer / VINYLACETAT (GERMAN) / VINYLE (ACETATE DE) (FRENCH) / VINYL A MONOMER / VINYLESTER KYSELINY OCTOVE / VINYL ETHANOATE / VYAC / ZESET T / VAM / ethenyl ethanoate / ethenyl acetate / acetic acid vinyl ester / acetic acid, ethenyl ester / 1-acetoxyethylene / vinyl acetate H.Q.", "unNumber": "1301", "casNumber": "108-05-4", - "transportMethod": "", - "sebc": "", - "usage": "접착제, 페인트, 직물과 종이 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "ED (Evaporator-Dissolver)", + "usage": "접착제, 페인트, 직물과 종이 인화성 액체(구문2) 발암성 (구분2) 특정표적장기 독성(반복노출) 구분-2", + "state": "액체", + "color": "투명, 무색", + "odor": "콕 쏘는 듯한 냄새", + "flashPoint": "-8℃", + "autoIgnition": "402℃", + "boilingPoint": "73℃", + "density": "0.93", + "solubility": "20 g/L (20℃)", + "vaporPressure": "115 mmHg (25℃)", + "vaporDensity": "3", + "explosionRange": "2.6~13.4%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 2, + "fire": 4, + "reactivity": 2, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "129P", + "idlh": "3O 분)", + "aegl2": "36 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발용해 (ED)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "고인화성, 호흡기/피부/안구 자극, 중합성", + "firstAid": "흡입노출 • 신선한 공기가 있는 곳으로 이동, 인공호흡. 산소공급 on =•우! 피부접촉 • 피부를 물로 씻을 것, 화상의 경우 찬물로 씻을 것 하느소지 안구접촉 • 20분 이상 흐르는 물에 씻을 것 경구섭취 •긴급 의료조치", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 내알코올 포말.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 분무주수로 증기운 이동 억제.", + "exposure": "TWA 10 ppm, STEL 15 ppm, AEGL-2 36 ppm", "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12, 15.13, 15.17, 15.19.6, 16.6.1, 16.6.2", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "ibcMinRequirement": "15.12, 15.13, 15.17,\n15.19.6, 16.6.1, 16.6.2", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "VAC", "name": "VINYL ACETATE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 273, - "abbreviation": "VAM", - "nameKr": "초산비닐모노머", - "nameEn": "VINYL ACETATE MONOMER", - "synonymsEn": "Vinyl acetate / VAM / VINYL ACETATE MONOMER / Ethenyl acetate / Ethenyl ethanoate / Vinylacetate 1 / ethenylacetate / Vinyl Acetate(VAM) / aceticacidethenylester / VyAc / Vinile", - "synonymsKr": "초산비닐모노머 / 아세트산비닐 / 1-아세톡시에틸렌 / 비닐A단량체 / 비닐아세테이트 / 비닐아세트산 / 아세톡시에틸렌 / 아세트산비닐에스테르 / 아세트산에테닐에스테르 / 아세트산,에테닐에스테르 / 에스테르 / 에테닐아세트산 / 초산비닐모노머 / 아세트산비닐에스테르 / 에테닐아세트산 / 1-아세톡시에틸렌 / 비틸아세트산모노머 / 비닐아세트산(VAM) / 비닐아세테이트 / 비닐 아세테이트", - "unNumber": "1301", - "casNumber": "108-05-4", - "transportMethod": "", - "sebc": "", - "usage": "접착제, 페인트, 직물과 종이 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "VAM", "name": "VINYL ACETATE MONOMER", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 274, - "abbreviation": "W SPIRIT", - "nameKr": "화이트 스피릿", - "nameEn": "White spirit", - "synonymsEn": "PETROLEUM ETHER / HEXANES / HEX / NAPHTHA / PETROL / BENZINE / LIGROINE / LIGROIN / MINERAL SEAL OIL / BENZIN / PETROLEUM OIL", - "synonymsKr": "수소탈황화된 중질 나프타 (석유) / 수소탈황화된중질나프타(석유) / 수소탈황화된중질나프타(석유) / C8-10알케인/사이클로알케인/아로마틱하이드로카본", - "unNumber": "1300", - "casNumber": "64742-82-1", - "transportMethod": "", - "sebc": "", - "usage": "도료 희석제, 세첵제, 탈지제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "W SPIRIT", - "name": "White spirit", - "company": "", - "source": "화물적부도" + "code": "VAM", + "name": "Vinyl acetate", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 275, - "abbreviation": "W150SN", - "nameKr": "베이스오일 (SK enmove, GS 등 제조)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "윤활유 제조, 가공유, 방청유, 유압작동유 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "W150SN", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 276, + "id": 168, "abbreviation": "XHVI3", - "nameKr": "베이스 오일 (SK enmove 제조)", + "nameKr": "베이스 오일\n(SK enmove 제조)", "nameEn": "BASE OIL", + "synonymsKr": "베이스오일(운활유) / 제품명 / 윤활유 / 윤활유 / 석유유래물질", "synonymsEn": "Lubricating oils / VKGS / VM 1 / VM 4 / VM 5 / VM 8 / TB 20 / Tp 22 / TAD 17 / TCp 10 / TCp 15K", - "synonymsKr": "베이스오일(운활유)/제품명 윤활유 / 윤활유 / 석유유래물질", "unNumber": "1203", "casNumber": "74869-22-0", "transportMethod": "", @@ -19225,1282 +15479,144 @@ { "code": "XHVI3", "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 277, - "abbreviation": "XHVI4", - "nameKr": "베이스 오일 (SK enmove 제조)", - "nameEn": "BASE OIL", - "synonymsEn": "Lubricating oils / VKGS / VM 1 / VM 4 / VM 5 / VM 8 / TB 20 / Tp 22 / TAD 17 / TCp 10 / TCp 15K", - "synonymsKr": "베이스오일(운활유)/제품명 윤활유 / 윤활유 / 석유유래물질", - "unNumber": "1203", - "casNumber": "74869-22-0", - "transportMethod": "", - "sebc": "", - "usage": "고급엔진오일, 산업용 합성 윤활유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "XHVI4", "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 278, - "abbreviation": "XHVI8", - "nameKr": "베이스 오일 (SK enmove 제조)", - "nameEn": "BASE OIL", - "synonymsEn": "Lubricating oils / VKGS / VM 1 / VM 4 / VM 5 / VM 8 / TB 20 / Tp 22 / TAD 17 / TCp 10 / TCp 15K", - "synonymsKr": "베이스오일(운활유)/제품명 윤활유 / 윤활유 / 석유유래물질", - "unNumber": "1203", - "casNumber": "74869-22-0", - "transportMethod": "", - "sebc": "", - "usage": "고급엔진오일, 산업용 합성 윤활유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "XHVI8", "name": "BASE OIL", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 279, - "abbreviation": "Y2", - "nameKr": "베이스 오일 (SK enmove 제조)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "매무 저점도, 고연비용 합성기유 용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "Y2", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 280, - "abbreviation": "Y3", - "nameKr": "베이스 오일 (SK enmove 제조)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "일반 저점도 합성기유, 경량 엔진오일", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "Y3", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 281, - "abbreviation": "Y4", - "nameKr": "베이스 오일 (SK enmove 제조)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "중점도 합성기유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "Y4", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 282, - "abbreviation": "Y5", - "nameKr": "베이스 오일 (SK enmove 제조)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "고온안전성 우수, 고점도 윤활유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "Y5", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 283, - "abbreviation": "Y6", - "nameKr": "베이스 오일 (SK enmove 제조)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "고하중, 고온 안전성 윤활기유 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "Y6", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 284, - "abbreviation": "Y8", - "nameKr": "베이스 오일 (SK enmove 제조)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "고점도 고내열 기유, 산업용 윤활기유 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "Y8", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 285, - "abbreviation": "YG", - "nameKr": "식용유", - "nameEn": "YELLOW GREASE", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "68476-81-0", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "YG", - "name": "YELLOW GREASE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 286, - "abbreviation": "YL3", - "nameKr": "베이스 오일 (SK enmove 제조)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "저점도 고성능 엔진오일 하이브리드/EV용 윤활유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "YL3", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 287, - "abbreviation": "YUBASE2", - "nameKr": "베이스 오일 (SK enmove 제조)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "초저점도 엔진오일, EV용 윤활유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "YUBASE2", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 288, - "abbreviation": "YUBASE3", - "nameKr": "베이스 오일 (SK enmove 제조)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "일반 저점도 엔진오일", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "YUBASE3", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 289, - "abbreviation": "YUBASE4", - "nameKr": "베이스 오일 (SK enmove 제조)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "중점도 엔진오일", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "YUBASE4", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 290, - "abbreviation": "YUBASE4+", - "nameKr": "베이스 오일 (SK enmove 제조)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "고 VI 저휘발성 엔진오일", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "YUBASE4+", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 291, - "abbreviation": "YUBASE6", - "nameKr": "베이스 오일 (SK enmove 제조)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "고하중용 디젤 엔진오일", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "YUBASE6", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 292, - "abbreviation": "YUBASE6+", - "nameKr": "베이스 오일 (SK enmove 제조)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "고성능 합성기유", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "YUBASE6+", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 293, - "abbreviation": "YUBASE8", - "nameKr": "베이스 오일 (SK enmove 제조)", - "nameEn": "BASE OIL", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 석유유래물질 / 유압유체", - "unNumber": "1203", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "고점도 엔진오일, 기어오일, 산업용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "YUBASE8", - "name": "BASE OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 294, + "id": 169, "abbreviation": "1,1,1TCE", "nameKr": "메틸클로로포름", "nameEn": "1,1,1-Trichloroethane", - "synonymsEn": "cf2 / Trichloroethane / CH3CCl3 / TRICHLORETHANE / METHYLCHLOROFORM / 1,1,1-TCE / Chlorothene NU / 1,1,1-Trichlorethan / 1,1,1- threeethyl chloride / CF 2", - "synonymsKr": "111 트리클로로에탄메틸클로로포름 / 1,1,1-트리클로로에탄 / 1,1,1-트리클로로에탄 / 1,1,1-트라이클로로에테인 / 메틸클로로포름 / 트리클로로에탄 / 메틸트리클로로메탄 / 메틸클로로포름 / 삼염화에탄 / 1,1,1-트리치로로에탄", + "synonymsKr": "1,1,1-트리클로로에탄 / 알파-T / 에어로텐 MM/에어로텐 TT / 클로로에텐 / 클로로텐", + "synonymsEn": "cf2 / Trichloroethane / CH3CCl3 / TRICHLORETHANE / METHYLCHLOROFORM / 1,1,1-TCE / Chlorothene NU / 1,1,1-Trichlorethan / 1,1,1- threeethyl chloride / CF 2 / Alpha-T / Aerothene MM / Aerothene TT / AI3-02061 / Algylen / Baltana / Caswell no 875 / CF 2 / Chloroethane-NU / Chloroethene / Chloroform, methyl- / Chlorothane NU / Chlorothene / Chlorothene (inhibited) / Chlorothene NU / Chlorothene SM / Chlorothene VG / Chlorylen / Dowclene LS / Ethane, 1,1,1-trichloro- / Gemalgene / Genklene / ICI-CF 2 / Inhibisol / Methyl chloroform / Methyltrichloromethane / NCI-C04626 / Solvent 111 / Strobane / 1,1,1-TCE / TCEA / 1,1,1-Trichloorethaan (Dutch) / 1,1,1-Trichloraethan (German) / Trichloran / Alpha-Trichloroethane / Trichloro-1,1,1-ethane (French) / Trichloroethane / 1,1,1-Tricloroetano (Italian) / Trielene / Tri-ethane / USEPA / OPP Pesticide Code: 081201 / TCE / 1, 1, 1-TRI / Aerothene / Chlorten", "unNumber": "2831", "casNumber": "71-55-6", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(6.1급), 산적액체(Y류)", + "sebc": "D (Dissolver)", "usage": "에스테르화 반응하는 에스테르 용매제", - "state": "", - "color": "", - "odor": "", + "state": "액체(고휘", + "color": "무색, 투명", + "odor": "클로로폼", "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "autoIgnition": "537℃", + "boilingPoint": "74.11", + "density": "1.34", + "solubility": "1.29g/L", + "vaporPressure": "124mmHg(25t)", + "vaporDensity": "4.6", + "explosionRange": "7.5~15.5%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "160", + "idlh": "700 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "100m", + "marineResponse": "침강용해 (SD)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "독성, 중추신경계 억제, 심장 자극", + "firstAid": "흡입노출 • 인공호흡, 호흡이 힘든 경우 산소공급, 의료조치 피부접촉 . 비누와 물로 피부를 씻을 것 안구접촉 • 20분 이상 흐르는 물에 피부와 눈을 씻을 것 경구섭취 • 긴급 이료조치 ► 안전이 확보되면, 화학방제함 또는 예인선 동원 긴급예인 조치 초동 대응방법 대응장비 보호볶 호훕구 보안경 보호장갑 기타장비 3,4형식 (C급) 방독마스크(반면,전면) ① 여화사카메라 1형식 (1B) 공기호흡기 ① 으 르화 O 카메바 1 초기 이격거리(m) 50 방호거리(m) 100 | 해상유출시 > 유출물질은 대기 상층부의 오존층을 파괴하는 물질이며, 증기흡입 시 유해하고 호홈기계 자극 및 현기증을 일으킬 수 있으므로. 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박 통제 > 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3,4형식 보호의 착용(사고선 근접 시 1B이상 착용), 증기흡입과 피부와 눈에 접촉을 끼할 것 > 유출물질은 침강. 용해되므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 1 화제 시대피거리(m) 800 1 + 화재 •폭발시 ► 유출물질윤 연소", + "fireFighting": "분무주수/포말/CO₂.", + "spillResponse": "주변 통제. 흡수제 회수.", + "exposure": "TWA 350 ppm, STEL 450 ppm, IDLH 700 ppm", + "regulation": "오존층보호법" }, "ibcHazard": "P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "No", + "ibcDetection": "O", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-A", + "emsFire": "F-A", + "emsSpill": "S-A", "emsFirstAid": "", "cargoCodes": [ { "code": "1,1,1TCE", "name": "1,1,1-Trichloroethane", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "1,1,2TCE", + "name": "1,1,2-Trichloroethane", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 295, + "id": 170, "abbreviation": "1,1,2,2TTCE", "nameKr": "테트라클로로에틸렌", "nameEn": "1,1,2,2-Tetrachloroethane", - "synonymsEn": "1,1,2,2-Tetrachloroethane / Cellon / 1,1,2,2-tce / S-TETRACHLOROETHANE / 1,1,2,2-Tetrachlorethan / ACETYLENE TETRACHLORIDE / R-130 / Westrol / Westron / (CHCl2)2 / Acetosol", - "synonymsKr": "1122테트라클로로에탄 / 1,1,2,2-테트라클로로에틸렌/ 1,1,2,2-테트라클로로에테인 / 퍼클로로에텐 / 1,1,2,2-테트라클로로에탄 / 1,1,2,2-테트라클로로에틸렌 / 에틸렌사염화물 / 여과액 / 테트라클로로에텐 / 퍼클렌 / 퍼클로로에틸렌 / 1,1,1,2-사염화에탄 / 1,1,2,2-테트라클로르에테인 / 1,1-디클로로-2,2-디클로로에탄 / sym-테트라클로로에테인 / S-테트라클로로에탄 / s-테트라클로로에테인 / 대칭구조-테트라클로로에탄 / 대팅구조MERTICAL 테트라클로로에탄 / 보노포름 / 셀론 / 아세틸렌 테트라염화물", + "synonymsKr": "퍼 클로르에틸렌 / 테 트라클로르에틸렌 / 카본 바이 클로 라이 드", + "synonymsEn": "1,1,2,2-Tetrachloroethane / Cellon / 1,1,2,2-tce / S-TETRACHLOROETHANE / 1,1,2,2-Tetrachlorethan / ACETYLENE TETRACHLORIDE / R-130 / Westrol / Westron / (CHCl2)2 / Acetosol / AI3-01860 / Ankilostin / Antisal 1 / Antisol 1 / Caswell no 827 / CZTEROCHLOROETYLEN (POLISH) / Didakene / Dow-Per / ENT 1,860 / EPA pesticide chemical code 078501 / ETHENE, TETRACHLORO- / ETHYLENE TETRACHLORIDE / Ethylene, tetrachloro- / Fedal-Un / NCI-C04580 / Nema / PCE / Per / Perawin / Perc / PERCHLOORETHYLEEN, PER (DUTCH) / Perchlor / PERCHLORAETHYLEN, PER (GERMAN) / PERCHLORETHYLENE / PERCHLORETHYLENE, PER (FRENCH) / PERCHLOROETHYLENE / Perclene / PERCLOROETILENE (ITALIAN) / Percosolv / Perk / Perklone / Persec / Tetlen / Tetracap / TETRACHLOORETHEEN (DUTCH) / TETRACHLORAETHEN (GERMAN) / TETRACHLORETHYLENE / TETRACHLOROETHENE / 1,1,2,2-TETRACHLOROETHYLENE / TETRACLOROETENE (ITALIAN) / Tetraguer / Tetraleno / Tetralex / Tetravec / Tetroguer / Tetropil / carbon bichloride / perclene / Perchlor Percosolve", "unNumber": "1897", - "casNumber": "79-34-5", - "transportMethod": "", - "sebc": "", - "usage": "드라이클리닝 용매, 금속 탈지 용매, 브레이크 세정제 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "casNumber": "127-18-4", + "transportMethod": "산적액체(Y류)", + "sebc": "E (Evaporator)", + "usage": "드라이클리닝 용매, 금속 탈지 용매,\n브레이크 세정제 등", + "state": "액체", + "color": "무색", + "odor": "달콤한 냄새", + "flashPoint": "비인", "autoIgnition": "", "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", + "density": "1.6277", + "solubility": "0.0015 g/L (25℃)", + "vaporPressure": "(물 17.5mnHg))", + "vaporDensity": "5.8", "explosionRange": "", "nfpa": { - "health": 0, + "health": 2, "fire": 0, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "160", + "idlh": "150 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "100m", + "marineResponse": "침강 (S)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "독성, 해상수거 불가", + "firstAid": "흡입노출 • 의료조치, 인공호흡, 산소공급 피부접촉 • 뜨거운 물질의 경우 찬물로 식힐 것, 긴급 의료조치, 즉시 20분 이상 흐르는 물에 씻을 것 안구접촉 • 몇 분간 물로 조심해서씻을 것. 콘택트렌즈 제거 경구섭취 • 의학조치,위세척 고려", + "fireFighting": "CO₂, 건조분말, 포말. 주수로 냉각.", + "spillResponse": "주변 해상 통제. 증기운 이동 억제.", + "exposure": "TWA 25 ppm, IDLH 150 ppm", "regulation": "" }, "ibcHazard": "", @@ -20509,202 +15625,66 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-B", + "emsFire": "F-A", + "emsSpill": "S-B", "emsFirstAid": "", "cargoCodes": [ { "code": "1,1,2,2TTCE", "name": "1,1,2,2-Tetrachloroethane", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 296, - "abbreviation": "1,1,2TCE", - "nameKr": "메틸클로로포름", - "nameEn": "1,1,2-Trichloroethane", - "synonymsEn": "1,1,1-Trichloroethane / cf2 / Trichloroethane / CH3CCl3 / TRICHLORETHANE / METHYLCHLOROFORM / 1,1,1-TCE / Chlorothene NU / 1,1,1-Trichlorethan / 1,1,1- threeethyl chloride / CF 2", - "synonymsKr": "112트리클로로에탄메틸클로로포름 1,1,1-트리클로로에탄 / 1,1,1-트리클로로에탄 / 1,1,1-트라이클로로에테인 / 메틸클로로포름 / 트리클로로에탄 / 메틸트리클로로메탄 / 메틸클로로포름 / 삼염화에탄 / 1,1,1-트리치로로에탄", - "unNumber": "2831", - "casNumber": "71-55-6", - "transportMethod": "", - "sebc": "", - "usage": "에스테르화 반응하는 에스테르 용매제", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "1,1,2TCE", - "name": "1,1,2-Trichloroethane", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 297, - "abbreviation": "1,1DCE", - "nameKr": "염화에틸렌", - "nameEn": "1,1-Dichloroethane", - "synonymsEn": "1,2-Dichloroethane / DCE / EDC / 1,2-DCE / ETHYLENE DICHLORIDE / ETHYLENE CHLORIDE / CH2ClCH2Cl / 1,2-Dichlorethane / 1,2-Dichlorethan / Ethane,1,2-dichloro- / ethylene dichloride (eDC)", - "synonymsKr": "11다이클로로에텐인 / 1,2-디클로로에렌 / 염화에틸렌 / 1,2-디클로로에탄(1,2-DICHLOROETHANE)1,2-비클로로에탄(1,2-BICHLOROETHANE)알파,베타-디클로로에탄(ALPHA,BETA-DICHLOROETHANE)SYM-디클로로에탄(SYM-DICHLOROETHANE)이염화글리콜 / 이염화에틸렌 / 이염화에탄 / 이염화에테인 / 1,2-이염화에탄 / 1,2-다이클로로에탄 / 다이클로로에탄(에틸렌다이클로라이드) / 에틸렌디클로라이드 / 1,2-디클로로에탄", - "unNumber": "1184", - "casNumber": "107-06-2", - "transportMethod": "", - "sebc": "", - "usage": "용제, 합성 원료, 가소제 등으로 활용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "F", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "1,1DCE", - "name": "1,1-Dichloroethane", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 298, + "id": 171, "abbreviation": "NAP", "nameKr": "나프탈렌", "nameEn": "NAPHTHALENE", - "synonymsEn": "NAPHTHALENE / NAPHTHALENE SCALES / ANTIMITE / MOTH ALLS / TAR CAMPHOR / NAPHTHALIN", - "synonymsKr": "타프 캠퍼 / 나프탈린 / 좀약 / 좀나프탈렌", - "unNumber": "91-20-3", - "casNumber": "1334", - "transportMethod": "", - "sebc": "", + "synonymsKr": "나프탈린 / USEPA/OPP 살충제코드 05580 / 나프텐 / 타르장뇌 / 모프몰스", + "synonymsEn": "NAPHTHALENE / NAPHTHALENE SCALES / ANTIMITE / MOTH ALLS / TAR CAMPHOR / NAPHTHALIN / Naphthaline / USEPA / OPP Pesticide code 055801 / Naftalen (POLISH) / Naphthalin / Naphthene / Tar camphor / Naphthalin / Mothballs / Moth flake balls / Mosom naphthalene flakes / Misspelling as napthalene / Naphthalene, crude", + "unNumber": "1334", + "casNumber": "91-20-3", + "transportMethod": "포장(4.1급), 산적액체(Y류)", + "sebc": "F (Floater)", "usage": "좀약, 탈취제, 방충제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "고체(80℃ 녹음", + "color": "흰색, 무색", + "odor": "같은 특유의 악취가 나는", + "flashPoint": "79 r", + "autoIgnition": "526℃", + "boilingPoint": "217.91℃", + "density": "1.15", + "solubility": "0.03g/L(25t)", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "4.42", + "explosionRange": "0.9~5.9%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/X", + "ergNumber": "133", + "idlh": "250 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "75m", + "responseDistanceSpillNight": "100m", + "marineResponse": "침강 (S)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성, 독성, 발암 의심, 해상수거 불가", + "firstAid": "흡입노출 • 신선한 곳으로 옮김, 인공호흡, 호흡곤란 시 산소투입 피부접촉 • 의복 제거, 다량의 물 또는 비누로 노출부위 씻을 것 안구접촉 • 콘택트렌즈 제거, 물 또는 식염수로 20~30분 이상 씻을 것 경구섭취 • 환자에게 물 또는 우유를 줄 것, 구토유도 하지 말 것. 의사치료 초동 대응방법 보호복 수 호홉구 보안경 보호장갑 우 기타장비 대응장비 3,4형식 (C급) 방독마스크(전면) O O 열회상카메라 1형식 (1B) 공기호홉기 아 이 설화各가배다 초기 이격거리(m) 75 방호거리(m) 100 해상유출시 ► 유출물질은 홉입하면 유해한 물질이고. 인화성 고체로 화재 위험성이 있으므로모든 출동세력 풍상에 위치, 최소 75m 이격거리 유지하고 주변선박 통제에 집중(홉연, 불꽃, 스파크. 화염 제거) - 출동 경비정(방제정) 최소 전면형 복합가스용 방독마스크를 포함한 3,4형식 보호복 착용(사고선 근접시 1B 착용), 증기흡입과 피부와 눈에 접촉올 피할 것 ’ 유출물질은 침강하므로 방제조치 불필요 • 화학방제함 유출물질 농도 탐지, 안전확보시 까지 지속적인 모니터링 화재 시대피거리(m) 800 + 화재 ■폭발시 • 유출", + "fireFighting": "분무주수/포말/CO₂/건조분말.", + "spillResponse": "고체 회수. 주변 해상 통제. 분진 흡입 방지.", + "exposure": "TWA 10 ppm, STEL 15 ppm, IDLH 250 ppm", "regulation": "" }, "ibcHazard": "", @@ -20713,27 +15693,27 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-F, S-F", + "emsFire": "F-F", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "NAP", "name": "NAPHTHALENE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 299, + "id": 172, "abbreviation": "4TTHN", "nameKr": "1234테트라하이드로나프탈렌", "nameEn": "1,2,3,4-Tetrahydronaphthalene", - "synonymsEn": "1,2,3,4-Tetrahydronaphthalene / TETRALIN / THN / TETRALINE / TETRAHYDRONAPHTHALENE / Naphthalene, 1,2,3,4-tetrahydro- / 1,2,3,4-tetrahydro-naphthalen / etralin / TETRANAP / tetralene / Tetralina", "synonymsKr": "테트라히드로나프탈렌 / 테트라인 / 테트라하이드로나트탈린 / 테트라히드로나프탈렌 / 테트랄린 / 1,2,3,4-테트라하이드로나프탈렌 / 5,6,7,8-테트라하이드로나프탈렌 / THN / 벤조싸이클로헥산 / 테트라냅 / 테트라린? / 테트라하이드로나프탈렌 / 1,2,3,4-테트라히드로나프탈렌", + "synonymsEn": "1,2,3,4-Tetrahydronaphthalene / TETRALIN / THN / TETRALINE / TETRAHYDRONAPHTHALENE / Naphthalene, 1,2,3,4-tetrahydro- / 1,2,3,4-tetrahydro-naphthalen / etralin / TETRANAP / tetralene / Tetralina", "unNumber": "3082", "casNumber": "119-64-2", "transportMethod": "", @@ -20789,42 +15769,42 @@ { "code": "4TTHN", "name": "1,2,3,4-Tetrahydronaphthalene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 300, + "id": 173, "abbreviation": "1,2DPPN", "nameKr": "1,2-디클로로프로판", "nameEn": "1,2-Dichloropropane", + "synonymsKr": "12다이클로로프로페인 / 1,2-디클로로프로판 / 1,2-디클로로프로판 / 이염화프로필렌 / 1,2-다이클로로프로판 / 1,2-다이클로로프로페인 / PDC / 다이클로로프로판 / 프로필렌 다이클로라이드", "synonymsEn": "1,2-Dichloropropane / Dichloropropane / PROPYLENE DICHLORIDE / 1,2-Dichlorpropan / 1,2-DCP / Dichloropropanes / R270da / ent15,406 / ENT 15,406 / NCI-C55141 / CH3CHClCH2Cl", - "synonymsKr": "12다이클로로프로페인 1,2-디클로로프로판 / 1,2-디클로로프로판 / 이염화프로필렌 / 1,2-다이클로로프로판 / 1,2-다이클로로프로페인 / PDC / 다이클로로프로판 / 프로필렌 다이클로라이드", "unNumber": "-", "casNumber": "78-87-5", "transportMethod": "", - "sebc": "", + "sebc": "D (Dissolver)", "usage": "세척제, 용매제로 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "state": "액체", + "color": "무색", + "odor": "자극적", + "flashPoint": "21℃", "autoIgnition": "", - "boilingPoint": "", + "boilingPoint": "96.4℃", "density": "", "solubility": "", "vaporPressure": "", "vaporDensity": "", - "explosionRange": "", + "explosionRange": "3.4~14.5%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 3, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "인화성/독성", "ergNumber": "", "idlh": "", "aegl2": "", @@ -20833,20 +15813,20 @@ "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "ppeClose": "보호구(안전장갑, 장화)", + "ppeFar": "방진마스크", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "인화성 높음, 흡입 독성, 피부/눈 자극, 발암성 의심", + "firstAid": "흡입: 신선한 공기 이동, 호흡곤란 시 산소공급, 인공호흡. 피부: 다량 물 5~20분 세척, 오염의류 제거. 안구: 15분 이상 물 세척. 경구: 구토 금지, 즉시 의료조치.", + "fireFighting": "분무주수, 내알코올 포말, CO₂.", + "spillResponse": "점화원 제거. 누출 차단. 흡수제(모래, 흙) 사용. 증기 억제.", "exposure": "", - "regulation": "" + "regulation": "화학물질관리법(CAS 78-87-5), 산업안전보건법, 폐기물관리법" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "R", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", "emsCode": "", @@ -20857,155 +15837,19 @@ { "code": "1,2DPPN", "name": "1,2-Dichloropropane", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 301, - "abbreviation": "1,2PPG", - "nameKr": "프로필렌 글리콜", - "nameEn": "1,2-Propylene glycol", - "synonymsEn": "Propylene glycol / PG / 1,2-PROPANEDIOL / MONO PROPYLENE GLYCOL / PROPANE-1,2-DIOL / 1,2-PROPYLENE GLYCOL / propylenglycol / Propyledne glycol / Aliphatic alcohol / Propylene glycol 57-55-6 / Propylene glycol usp", - "synonymsKr": "1,2-디히드록시프로판 / (RS)-1,2-프로판디올 / 1,2-(RS)-프로판디올 / 1,2-프로판디올 / 1,2-프로필렌글리콜 / 2,3-프로판디올 / 2-히드록시프로판올 / DL-1,2-프로판디올 / DL-프로필렌글리콜 / 메틸에틸글리콜 / 메틸에틸렌글리콜 / 모노프로필렌글리콜 / 알파-프로필렌글리콜 / 이소프로필렌글리콜 / 프로필렌글리콜 / 프로필렌글리콜(P.G)-공업용 / 프로필렌글리콜(P.G)-식첨용 / 프로필렌글리콜 / 프로필렌 글리콜 / 1,2-다이하이드록시프로판", - "unNumber": "-", - "casNumber": "57-55-6", - "transportMethod": "", - "sebc": "", - "usage": "용제, 보습제, 유화제, 냉각액, 방부제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "1,2PPG", - "name": "1,2-Propylene glycol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 302, - "abbreviation": "1,3BD", - "nameKr": "13부타디엔", - "nameEn": "1,3-butadiene", - "synonymsEn": "1,3-Butadiene / BUTADIENE / Butadien / 1,3-Butadien / Butadieen / PYRROLYLENE / 1,3-butadine / DIVINYL / BUDIENE / BIVINYL / ERYTHRENE", - "synonymsKr": "1.3부타디엔 / 뷰타다이엔 / 부타이엔 / 1.3-뷰타다이엔", - "unNumber": "1010", - "casNumber": "106-99-0", - "transportMethod": "", - "sebc": "", - "usage": "합성고무(특히 타이어의 주요원료)", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "1,3BD", - "name": "1,3-butadiene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 303, + "id": 174, "abbreviation": "1,3BG", "nameKr": "13부틸렌글라이콜", "nameEn": "1,3-Butylene glycol", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "", "casNumber": "", "transportMethod": "", @@ -21061,19 +15905,19 @@ { "code": "1,3BG", "name": "1,3-Butylene glycol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 304, + "id": 175, "abbreviation": "1,3DPPN", "nameKr": "13디클로로프로펜", "nameEn": "1,3-Dichloropropene", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "", "casNumber": "", "transportMethod": "", @@ -21116,9 +15960,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.12, 15.17, 15.19", "emsCode": "", @@ -21129,19 +15973,19 @@ { "code": "1,3DPPN", "name": "1,3-Dichloropropene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 305, + "id": 176, "abbreviation": "1,4BG", "nameKr": "14부틸렌글라이콜", "nameEn": "1,4-Butylene glycol", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "", "casNumber": "", "transportMethod": "", @@ -21197,155 +16041,19 @@ { "code": "1,4BG", "name": "1,4-Butylene glycol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 306, - "abbreviation": "150HPN", - "nameKr": "", - "nameEn": "150 SUS HPN", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "150HPN", - "name": "150 SUS HPN", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 307, - "abbreviation": "180SW", - "nameKr": "", - "nameEn": "180F Slack wax", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "180SW", - "name": "180F Slack wax", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 308, + "id": 177, "abbreviation": "1DNL", "nameKr": "1데카놀", "nameEn": "1-Decanol", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "", "casNumber": "1123-00-1", "transportMethod": "", @@ -21401,57 +16109,57 @@ { "code": "1DNL", "name": "1-Decanol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 309, + "id": 178, "abbreviation": "1DCN", "nameKr": "데센", "nameEn": "1-Decene", - "synonymsEn": "1-Decene / decene / Dec-1-ene / Decen / decylene / DECENE-1 / 1-DECENE / 1-C10H20 / n-decene / dialene10 / 1-n-Decene", "synonymsKr": "1데센 / 데센 / 1-데센 / 데센", + "synonymsEn": "1-Decene / decene / Dec-1-ene / Decen / decylene / DECENE-1 / 1-DECENE / 1-C10H20 / n-decene / dialene10 / 1-n-Decene", "unNumber": "", "casNumber": "872-05-9", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(3급), 산적액체(Z류)", + "sebc": "E (Evaporator)", "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "state": "액체", + "color": "무색", + "odor": "가솔린", + "flashPoint": "53℃", "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "boilingPoint": "170℃", + "density": "0.74", + "solubility": "0.011 (25℃)", + "vaporPressure": "1.85 mmHg (25℃)", + "vaporDensity": "4.85", + "explosionRange": "0.7~5.5%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "인화성액체", + "ergNumber": "128", "idlh": "", "aegl2": "", "erpg2": "", "responseDistanceFire": "", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "해상수거 곤란", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "인화성, 부식성, 해상수거 곤란", + "firstAid": "흡입: 신선한 공기. 피부/안구: 물로 세척. 경구: 의료조치.", + "fireFighting": "내알코올성 포말/분무주수. 직사주수 금지.", + "spillResponse": "점화원 제거. 주변 해상 통제.", "exposure": "", "regulation": "" }, @@ -21461,72 +16169,72 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { "code": "1DCN", "name": "1-Decene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 310, + "id": 179, "abbreviation": "1DDCN", "nameKr": "도데센", "nameEn": "1-Dodecene", + "synonymsKr": "아데센 12 / 알파-도데센 / 알파-도데실렌 / 테트라프로필렌 / 프로필렌 테트라머", "synonymsEn": "1-DODECENE / Dodec-1-ene / Adacene 12 / Linealene 12 / NSC 12016 / adacene12 / laurylene / Dodecene-1 / Neodene 12 / 1-DODECENE / α-Dodecylene", - "synonymsKr": "1도데센 / 도데센(1-) / 1-도데센 / 도데센(1-) / 도데센", - "unNumber": "", + "unNumber": "3295", "casNumber": "112-41-4", "transportMethod": "", "sebc": "", "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "액체", + "color": "무색", + "odor": "순하고 좋은냄새", + "flashPoint": "76‘C", + "autoIgnition": "255℃", + "boilingPoint": "213-215’C", + "density": "0,758", + "solubility": "불용", + "vaporPressure": "0.02mmHg(25t)", + "vaporDensity": "5.81", + "explosionRange": "8~5.4%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/X", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유 (F)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 토하게 하지 말 것, 신선한 곳으로 이동, 인공호흡, 산소공급 피부접촉 • 20분 이상 물로 씻을 것, 화상의 경우 다량의 찬물로 씻을 것, 의료조치 안구접촉 • 긴급 의료조치, 20분 이상 흐르는 물에 씻을 것 경구섭취 • 토하게 하지 말 것, 의료조치", "fireFighting": "", "spillResponse": "", "exposure": "", "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "No", + "ibcDetection": "O", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.19.6", "emsCode": "", @@ -21537,19 +16245,19 @@ { "code": "1DDCN", "name": "1-Dodecene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 311, - "abbreviation": "1HPTNL", - "nameKr": "헵탄올", - "nameEn": "1-Heptanol", + "id": 180, + "abbreviation": "HPTNL", + "nameKr": "n-햅탄올", + "nameEn": "Heptanol", + "synonymsKr": "n-헵탄올 / 1-헵탄올 / n-헵탄올 / n-헵틸알코올", "synonymsEn": "1-Heptanol / HEPTANOL / N-HEPTANOL / HEPTAN-1-OL / HEPTYL ALCOHOL / Enanthol / ALCOHOL C7 / 1-HeptanoI / n-Heptan-1-ol / Gentanol / n-C7H15OH", - "synonymsKr": "1헵탄올 / n-헵탄올 / 1-헵탄올 / n-헵탄올 / n-헵틸알코올", "unNumber": "", "casNumber": "111-70-6", "transportMethod": "", @@ -21605,19 +16313,25 @@ { "code": "1HPTNL", "name": "1-Heptanol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HPTNL", + "name": "Heptanol", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 312, + "id": 181, "abbreviation": "1HPTEN", "nameKr": "햅텐", "nameEn": "1-Heptene", - "synonymsEn": "", "synonymsKr": "햅텐", + "synonymsEn": "", "unNumber": "", "casNumber": "592-76-7", "transportMethod": "", @@ -21673,19 +16387,19 @@ { "code": "1HPTEN", "name": "1-Heptene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 313, - "abbreviation": "1HXNL", - "nameKr": "1헥산올", - "nameEn": "1-Hexanol", - "synonymsEn": "", - "synonymsKr": "1헥산올", + "id": 182, + "abbreviation": "NHXNL", + "nameKr": "n-헥사놀", + "nameEn": "n-Hexanol", + "synonymsKr": "헥사놀(1-) / N-헥산올 / 헥사놀(1-) / 헥산올 / 헥실알코올 / 아밀카빈올 / 카프로일알코올 / 헥산올 / 펜틸알코올 / 1-하이드록시헥 / 헥실알코올 / 1-헥산올", + "synonymsEn": "1-Hexanol / HEXANOL / N-HEXANOL / HEXYL ALCOHOL / HEXAN-1-OL / 1-Hexenol / ALCOHOL C6 / 1-Hexyl alcohol / N-HEXYL ALCOHOL / FEMA 2567 / AMYLCARBINOL", "unNumber": "", "casNumber": "111-27-3", "transportMethod": "", @@ -21741,19 +16455,25 @@ { "code": "1HXNL", "name": "1-Hexanol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NHXNL", + "name": "n-Hexanol", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 314, - "abbreviation": "1NPPN", - "nameKr": "나이트로프로판", - "nameEn": "1-Nitropropane", + "id": 183, + "abbreviation": "2NPPN", + "nameKr": "1-니트로프로판", + "nameEn": "2-Nitropropane", + "synonymsKr": "2나이트로프로판 / 1-니트로프로판 / 1-나이트로프로판 / 1-나이트로프로페인(1-니트로프로판) / 1-니트로프로판", "synonymsEn": "1-Nitropropane / 1-NP / ai3-02264 / n-C3H7NO2 / 1-Nitropro / 1-Nitropan / NiPar S-10 / 1-nitro-propan / 1-NITROPROPANE / N-Nitropropane / Propane,1-nitro-", - "synonymsKr": "나이트로프로판 / 1-니트로프로판 / 1-나이트로프로판 / 1-나이트로프로페인(1-니트로프로판) / 1-니트로프로판", "unNumber": "", "casNumber": "108-03-2", "transportMethod": "", @@ -21809,57 +16529,69 @@ { "code": "1NPPN", "name": "1-Nitropropane", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "2NPPN", + "name": "2-Nitropropane", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NPROPANE", + "name": "Nitropropane", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 315, + "id": 184, "abbreviation": "1NNN", "nameKr": "노넨", "nameEn": "1-Nonene", - "synonymsEn": "", "synonymsKr": "1노넨", + "synonymsEn": "", "unNumber": "-", "casNumber": "27215-95-8", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", "usage": "계면활성제, 윤활제, 공중합체, 노닐페놀 제조", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "state": "액체", + "color": "무색", + "odor": "가솔린", + "flashPoint": "26℃", "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "boilingPoint": "147℃", + "density": "0.726", + "solubility": "0.011 g/L (25℃)", + "vaporPressure": "3.5 mmHg", + "vaporDensity": "4.33", + "explosionRange": "0.7~5.9%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 3, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "인화성액체", + "ergNumber": "128", "idlh": "", "aegl2": "", "erpg2": "", "responseDistanceFire": "", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "해상수거 곤란", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "인화성, 부식성, 증발(E), 해상수거 불가", + "firstAid": "흡입: 신선한 공기. 피부/안구: 물로 세척. 경구: 의료조치.", + "fireFighting": "내알코올성 포말/분무주수/CO₂. 직사주수 금지.", + "spillResponse": "점화원 제거. 주변 해상 통제. 분무주수.", "exposure": "", "regulation": "" }, @@ -21869,95 +16601,27 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { "code": "1NNN", "name": "1-Nonene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 316, - "abbreviation": "1OTEN", - "nameKr": "1-옥텐", - "nameEn": "1-Octene", - "synonymsEn": "1-OCTENE / OCT-1-ENE / Octen / OCTEN-1 / Octylene / Neodene 8 / I-Octen / 1-C8H16 / 1-OCTENE / 1-0ctene / OCTENE-1", - "synonymsKr": "1-옥텐 / 1-옥틸렌 / 1-카프릴렌 / 알파옥텐 / 옥텐 / 옥틸렌 / 카프리렌 / N-1-옥텐 / 1-n-옥텐 / n-옥텐-1 / 알파-옥텐 / 알파-옥틸렌 / 옥트-1-엔 / 카프릴렌", - "unNumber": "1993 3295", - "casNumber": "111-66-0", - "transportMethod": "", - "sebc": "", - "usage": "플라스틱, 합성고무, 윤활유, 표면활성제 등 생산", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "1OTEN", - "name": "1-Octene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 317, + "id": 185, "abbreviation": "1PTEN", "nameKr": "1펜텐", "nameEn": "1-Pentene", - "synonymsEn": "1-Pentene / 1-C5H10 / AMYLENE / PENTENE / 1-Penten / petene-1 / 1-PENTENE / 1-AMYLENE / Pentene-1 / N-AMYLENE / l-pentene", "synonymsKr": "1-펜텐 / 프로필레틸린알파-n-아밀린", + "synonymsEn": "1-Pentene / 1-C5H10 / AMYLENE / PENTENE / 1-Penten / petene-1 / 1-PENTENE / 1-AMYLENE / Pentene-1 / N-AMYLENE / l-pentene", "unNumber": "", "casNumber": "109-67-1", "transportMethod": "", @@ -22013,87 +16677,167 @@ { "code": "1PTEN", "name": "1-Pentene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "2PTEN", + "name": "2-Pentene", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 318, + "id": 186, "abbreviation": "2EHA", "nameKr": "옥틸산", "nameEn": "2-Ethylhexanoic acid", + "synonymsKr": "2-뷰틸뷰타노익산 / 뷰틸에틸아세트산 / 2-에틸카르로산 / 에틸헥사노익산 / 옥타노익산", "synonymsEn": "2-Ethylhexanoic acid / Hexanoic acid, 2-ethyl- / Ethylhexanoic acid / 2-ETHYLCAPROIC ACID / 2-ethylhexanoic / 2-Ethyl-1-hexanoic acid / Ethylhexoic acid / CAPRYLIC ACID(SG) / 2-ETHYLCAPRONIC ACID / (RS)-2-Ethylhexansαure / 2-Ethylhexanoi", - "synonymsKr": "2에틸헥사노익산 / 옥틸산 / 2-에틸헥산산 / 2-에틸헥손산 / 옥틸산 / 2-에틸헥산산 / 2-에틸헥사노익애씨드 / 2-에틸헥사노익산 / 2-뷰틸부타노익산 / 2-에틸카프로익산 / 2-에틸헥산 산 / 2-에틸헥소익산 / 3-헵탄카복실산 / 뷰틸에틸아세틱산", "unNumber": "-", "casNumber": "149-57-5", "transportMethod": "", - "sebc": "", + "sebc": "D (Dissolver)", "usage": "가소제, 페인트 건조제, 살충제내의 기포제거제", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "액체", + "color": "무색", + "odor": "약한 염소냄새", + "flashPoint": "118。6", + "autoIgnition": "371。0", + "boilingPoint": "227℃", + "density": "0.9", + "solubility": "1.4 g/L (25℃)", + "vaporPressure": "(물 17.5imiHg)", + "vaporDensity": "5", + "explosionRange": "0.8~6%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Y", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "부유증발용해 (FED)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", + "msds": { + "hazard": "피부 유해성 (흡입 LC50 3,000 mg/l, 피부 LD50 1,140 mg/kg)", + "firstAid": "흡입노출 • 즉시 의료조치 물질특성 인체 유해성 화재 ' 침강 용해 증발 증기밀도 (위험성) (울=1) (울) (물증기압) (공기=1) O V O O 노。 (낮음) (낮욤) (낮을) “허 인화점 118흐 발화점 3711 끓는점 227王 수용해도 1.4g/L(25t:) 상온상태 액체 색상 무색 냄새 약한염소냄새 비중 0.9 증기압 4mmHg(2Cn;) 휘발성 낮음 점도 7.8cP 증기밀도 5 급성독성 , TWA(W) 5m/„f 경구(LD50) . 경피(LD50) 흡입(LC50) 노출기춘 이\"딩''\" STEL(15 분) 3.000 1,140 자크어으 노출한겨 자르어으 mg/kg Vg 자료없러 旧나\"분) 료러= 직접 위험농도 일반증상 삼킴, 흡입 i는 피부를 통해 흡수될 시 유해 홈입 경련, 염증, 기관지 부종. 화학적 페렴, 페부종 피부 피부탈지, 알레르기성 피부염. 피부를 통해 흅수 안구 눈자극및통증,심한눈손상, 경구 구역질, 구토 및 설사를 동반한 위장자극 용급조치 피부접촉 • 물로 씻어 낼 것, 의료조치. 뜨거운 물질의 경우 찬물로 식힐 것 안구접촉 • 몇 분간 조심해서 씻을 것, 콘", + "fireFighting": "수산화 가스 위험. 연소 시 이산화탄소, 물 사용. 포말.", + "spillResponse": "흡수제 사용. 환기 확보.", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "S/P", + "ibcShipType": "3", + "ibcTankType": "2G", + "ibcDetection": "R", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "emsCode": "F-A, S-H", + "emsFire": "F-A", + "emsSpill": "S-H", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "2EHA", + "name": "2-Ethylhexanoic acid", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 187, + "abbreviation": "IOA", + "nameKr": "이소옥틸 알코올", + "nameEn": "Isooctyl alcohol", + "synonymsKr": "옥틸린 / 옥틸 알코올 / 카릴 알코올 / 카릴릭 알코올", + "synonymsEn": "2-Ethylhexanol / 2-ETHYL-1-HEXANOL / OCTANOL / 2-Ethylhexan-1-ol / OCTYL ALCOHOL / ISOOCTYL ALCOHOL / 2EH / ISOOCTANOL / 1-hexanol,2-ethyl- / ALCOHOL C8 / 2-ETHYLHEXYL ALCOHOL", + "unNumber": "1986", + "casNumber": "111-87-5", + "transportMethod": "", + "sebc": "", + "usage": "향수류, 화장품류의 제조 까 아 'S 심한 눈 손상성/자극성(구분2) 생식세포 변이원성(구분2) 특정표적장기독성(1회노출) -구분3(호횹기계 자극) 흡인 유해성(구분2)", + "state": "오일류 액체", + "color": "무색, 투명", + "odor": "오렌지-장미 냄새", + "flashPoint": "", + "autoIgnition": "", + "boilingPoint": "", + "density": "0.83", + "solubility": "", + "vaporPressure": "(물 23.8mnHg)", + "vaporDensity": "", + "explosionRange": "0.2~30%", + "nfpa": { + "health": 1, + "fire": 2, + "reactivity": 0, + "special": "" + }, + "hazardClass": "유해액체물질/Y", + "ergNumber": "", + "idlh": "0 분)", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유 (F)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 산소공급, 인공호흡, 의료조치 피부접촉 • 20분간 흐르는 물에 씻을 것, 의료조치 안구접촉 • 몇 분간 물로 조심해서 씻어낼 것, 콘택트렌즈를 제거할 것, 의료조치 경구섭취 • 토하게 하지 말 것, 의료조치 초동대옹방법 대옹장바 해상유출시 + 화재 •폭발시 보호볶 호흡구 보안경 보호장갑 기타장바 3,4형식 (C급) 방독마스크(반면,전면) O O 열화상카메라 I 초기 이격거리(m) 50 방호거리(m) 300 ► 유출물질은 인체노출 시 눈. 호흡기 자극 등 유해성아 있으므로 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박통제 ► 출동 경비정(방제정) 사고선 접근 시 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용. 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 해상에 부유하므로 방제조치 찔요(오일펜스 설치 유출물질 확산방지, 유흡착재 등 이용 흡착회수) ► 화학방제함 유츌물질 농도 탐지, 안전확보 시까지 자속적인 모니터링 I 화재 시 대피거리(m) 而 ►유출물질은 연소시 유독가스 방출, 풍상에 위치, 최소 이격거리 유지하고 내알쿨포(소화포) 이용 화재진압 ► 열화상카메라 운용(결과전", "fireFighting": "", "spillResponse": "", "exposure": "", "regulation": "" }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "T", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", "emsCode": "", "emsFire": "", "emsSpill": "", "emsFirstAid": "", "cargoCodes": [ { - "code": "2EHA", - "name": "2-Ethylhexanoic acid", - "company": "", - "source": "화물적부도" + "code": "2EH", + "name": "2-Ethylhexanol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "IOA", + "name": "Isooctyl alcohol", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 319, + "id": 188, "abbreviation": "2EHXE", "nameKr": "2에틸헥사날", "nameEn": "2-Ethylhexenal", - "synonymsEn": "2-ETHYLHEXANAL / 2-Ethylcaproaldehyde / 2-ETHYLHEXAL / α-Ethylhexanal / 2-ETHYLHEXANAL / 2-ethyl-hexana / 3-Formylheptane / ETHYLHEXANAL, 2- / Ethylhexaldehyde / hexanal,2-ethyl- / 2-Ethylhexan-1-al", "synonymsKr": "2에틸헥사날 / 2에틸헥실알데히드 / 2에틸헥실알데히드 / 에틸헥스알데하이드 / 2-에틸헥스알데하이드 / 2-에틸헥산", + "synonymsEn": "2-ETHYLHEXANAL / 2-Ethylcaproaldehyde / 2-ETHYLHEXAL / α-Ethylhexanal / 2-ETHYLHEXANAL / 2-ethyl-hexana / 3-Formylheptane / ETHYLHEXANAL, 2- / Ethylhexaldehyde / hexanal,2-ethyl- / 2-Ethylhexan-1-al", "unNumber": "", "casNumber": "123-05-7", "transportMethod": "", @@ -22149,19 +16893,19 @@ { "code": "2EHXE", "name": "2-Ethylhexenal", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 320, + "id": 189, "abbreviation": "2EHACE", "nameKr": "에틸헥실아세테이트", "nameEn": "2-Ethylhexyl acetate", - "synonymsEn": "2-Ethylhexyl acetate / Octyl acetate / 2-ethylhexyl / Isooctyl acetate / Ethyl hexyl acetate / 2eh acetate / femanumber2806 / 2-Octylacetate / Lsoctyl Acetate / ethylhexylacetate / 2-EthylhexyAcetate", "synonymsKr": "에틸헥실아세테이트 / 2-에틸헥실아세테이트 / 2-에틸헥실아세트산 / 2-에틸헥실아세테이트 / 옥틸아세테이트 / 2-에틸헥실아세트산 / 에틸헥실아세테이트 / 2-에틸헥실 아세테이트 / 2-에틸-1-헥산올, 아세테이트 / 2-에틸-1-헥실 아세테이트 / 2-에틸헥사닐 아세트산 / 2-에틸헥실 아세트산 / 2-에틸헥실 에타노에이트 / 2-에틸헥실 에탄산염 / 베타-에틸헥실 아세테이트 / 베타-에틸헥실 에스터 / 아세트산 알파-에틸헥실 에스터 / 아세트산, 2-에틸헥실 에스터 / 아세트산,2-에틸헥실 에스터 / 옥틸 아세트산", + "synonymsEn": "2-Ethylhexyl acetate / Octyl acetate / 2-ethylhexyl / Isooctyl acetate / Ethyl hexyl acetate / 2eh acetate / femanumber2806 / 2-Octylacetate / Lsoctyl Acetate / ethylhexylacetate / 2-EthylhexyAcetate", "unNumber": "", "casNumber": "103-09-3", "transportMethod": "", @@ -22217,87 +16961,19 @@ { "code": "2EHACE", "name": "2-Ethylhexyl acetate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 321, - "abbreviation": "2EHACR", - "nameKr": "아크릴산 2-에틸헥실", - "nameEn": "2-Ethylhexyl acrylate", - "synonymsEn": "2-Ethylhexyl acrylate / 2-EHA / EHA / 2-ethyl / 2-ETHYLHEXYL ACRYLATE extrapure / Acrylic acid 2-ethylhexyl / 2-ETHYLHEXYL 2-PROPENOATE / OCTYL ACRYLATE / 2-Ethylhexyl propenoate / 2-Ethyl-1-hexyl acrylate / ACRYLIC ACID 2-ETHYLHEXYL ESTER", - "synonymsKr": "2에칠헥실아크릴레이트 / 아크릴산 2-에틸헥실 / 2-에틸-1-헥산올아크릴산 / 2-에틸-1-헥실아크릴산 / 2-에틸헥실아크릴산 / 2-에틸헥실2-프로펜산 / 2-에틸헥실아크릴레이트 / 2-프로펜산,2-에1-HEXANOL,2-ETHYLACRYLATE / 아크릴산2-에틸헥실 / 옥틸아크릴산 / 2-에틸헥실아크릴산(2EHA,2EHAM) / 2-에틸헥실아크릴산 / 에틸헥실아크릴레이트 / 2-에틸헥실 아크릴레이트 / 2-에틸헥실 2-프로펜산 / 2-에틸헥실 아크릴산 / 2-프로펜산 2-에틸헥실 에스터 / 아크릴산, 2-에틸헥실 에스터 / 옥틸 아크릴산", - "unNumber": "3077", - "casNumber": "103-11-7", - "transportMethod": "", - "sebc": "", - "usage": "폴리에틸렌 용기, 석유화학 제품, 가소제, 에멀션 안전제, 표면 활성제,세정제, 고무 및 합성 가소제 생산", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "T", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.13, 15.19.6, 16.6.1, 16.6.2", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "2EHACR", - "name": "2-Ethylhexyl acrylate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 322, + "id": 190, "abbreviation": "2HEACR", "nameKr": "하이드록시에틸 아크릴레이트", "nameEn": "2-Hydroxyethyl acrylate", - "synonymsEn": "2-Hydroxyethyl acrylate / HEA / Hydroxyethyl acrylate / hydroxyethylacrylate / 2-Hydroxyethylacrylat / 2-(Acryloyloxy)ethanol / beta-hydroxyethylacrylate / 2-Hydroxyethyl acrylate(2-HEA) / 2-Hydroxyethyl acrylate,Ethylene glycol monoacrylate / bisomer2hea / Bisomer 2HEA", "synonymsKr": "하이드록시에틸 아크릴레이트 / 아크릴산2-히드록시에틸에스테르 / 2-하이드록시에틸아크릴산 / 2-(아크릴옥시)에탄올 / 2-히드록시에틸아크릴산염 / 아크릴산2-히드록시에틸에스테르 / 하이드록시에틸아크릴산 / 2-하이드록시에틸아크릴산(2-HYDROXYETHYLACRYLATE) / 2-하이드록시에틸 아크릴산 / 2-(아크릴로일옥시)에탄올 / 2-하이드록시에틸-2-프로펜 산 / β-하이드록시아크릴 산 / 다이에틸렌 글리콜 모노아크릴 산 / 아크릴 산, 2-하이드록시에틸에스터 / 에탄다이올-1,2-모노아클릴 산 / 에틸렌 글리콜 모노아크릴 산 / 에틸렌 글리콜 아크릴 산 / 프로펜 산: 2-하이드록시에틸 에스터 / 하이드록시에틸 아크릴 산", + "synonymsEn": "2-Hydroxyethyl acrylate / HEA / Hydroxyethyl acrylate / hydroxyethylacrylate / 2-Hydroxyethylacrylat / 2-(Acryloyloxy)ethanol / beta-hydroxyethylacrylate / 2-Hydroxyethyl acrylate(2-HEA) / 2-Hydroxyethyl acrylate,Ethylene glycol monoacrylate / bisomer2hea / Bisomer 2HEA", "unNumber": "", "casNumber": "818-61-1", "transportMethod": "", @@ -22340,11 +17016,11 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "T", + "ibcDetection": "C", "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12, 15.13, 15.17, 15.19, 16.6.1, 16.6.2", + "ibcMinRequirement": "15.12, 15.13, 15.17, 15.19,\n16.6.1, 16.6.2", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -22353,87 +17029,87 @@ { "code": "2HEACR", "name": "2-Hydroxyethyl acrylate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 323, + "id": 191, "abbreviation": "MCH", "nameKr": "메틸시클로헥산", "nameEn": "METHYLCYCLOHEXANE", - "synonymsEn": "METHYLCYCLOHEXANE", - "synonymsKr": "사이클로헥산메탄 / 사이클로헥실메틸", + "synonymsKr": "사이클로헥산메탄 / 사이클로헥실메틸 / 사이클로헥산, 메틸- / 사이클로헥산메탄 / 헥사하이드로톨루엔 / SEXTONE B / 톨루엔 헥사하이드라이드 / 톨루엔, 헥사하이드로- / 사이클로헥실메틸", + "synonymsEn": "METHYLCYCLOHEXANE / Cyclohexane, methyl- / CYCLOHEXYLMETHANE / HEXAHYDROTOLUENE / METYLOCYKLOHEKSAN (POLISH) / SEXTONE B / TOLUENE HEXAHYDRIDE / Toluene, Hexahydro- / cyclohexylmethyl", "unNumber": "2296", "casNumber": "108-87-2", - "transportMethod": "", - "sebc": "", - "usage": "유기합성 용제", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", + "usage": "유기합성 용제 위험 만성 수생환경유해성(구분1)", + "state": "액체", + "color": "무색, 투명", + "odor": "벤젠 같은 냄새", + "flashPoint": "-4℃", + "autoIgnition": "258℃", + "boilingPoint": "101℃", + "density": "0.8", + "solubility": "0.014 g/L (25℃)", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "3.4", + "explosionRange": "1.6~15.1%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "128", + "idlh": "0 분〉", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발 (E)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성, 피부/호흡기 자극, 중추신경계", + "firstAid": "흡입노출 • 토하게 하지 말 것, 긴급 의료조치, 산소공급, 인공호흡 피부접촉 • 긴급 의료조치, 화상의 경우 찬물로 식힐 것, 비누와 물로 씻을 것 안구접촉 • 긴급 의료조치, 20분 이상 흐르는 물에 씻올 것 경구섭취 • 긴급 의료조치. 토하게 하지 말 것", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 오일펜스/흡착재 회수.", + "exposure": "IDLH 1,200 ppm", "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "F", + "ibcDetection": "R", "ibcFireFighting": "AC", "ibcMinRequirement": "15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { "code": "MCH", "name": "METHYLCYCLOHEXANE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 324, + "id": 192, "abbreviation": "2M5EP", "nameKr": "2메틸5에틸피리딘", "nameEn": "2-Methyl-5-ethyl pyridine", - "synonymsEn": "5-Ethyl-2-methylpyridine / 2-METHYL-5-ETHYLPYRIDINE / 5-ETHYL-2-PICOLINE / 5-Ethyl-2-Methylpyridne / Pyridine, 5-ethyl-2-methyl- / NSC 1984 / -2-picoL / FEMA 3546 / ALDEHYDINE / 2,5-Aldehydine / Aldehydkollidin", "synonymsKr": "2메틸5에틸피리딘 / 2-메틸-5-에틸피리딘 / 2-메틸-5-에틸피리딘 / 메틸에틸피리딘 / 메틸에틸피리딘", + "synonymsEn": "5-Ethyl-2-methylpyridine / 2-METHYL-5-ETHYLPYRIDINE / 5-ETHYL-2-PICOLINE / 5-Ethyl-2-Methylpyridne / Pyridine, 5-ethyl-2-methyl- / NSC 1984 / -2-picoL / FEMA 3546 / ALDEHYDINE / 2,5-Aldehydine / Aldehydkollidin", "unNumber": "", "casNumber": "104-90-5", "transportMethod": "", @@ -22476,9 +17152,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "T", + "ibcDetection": "C", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.12, 15.17, 15.19", "emsCode": "", @@ -22489,19 +17165,19 @@ { "code": "2M5EP", "name": "2-Methyl-5-ethyl pyridine", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 325, - "abbreviation": "2MPA", - "nameKr": "이소부틸알데히드", - "nameEn": "2-Methylpropanal", + "id": 193, + "abbreviation": "IBAL", + "nameKr": "이소부틸 아데히드", + "nameEn": "Isobutyl aldehyde", + "synonymsKr": "이소부틸알데히드 / 아이소뷰티르알데하이드 / 아이소뷰틸알데하이드 / 이소부틸알데히드 / 이소부탄알 / 2-메틸프로판알 / 2-메틸-1-프로판알 / 2-메틸프로피안알데하이드 / LC-메틸프로피안알데하이드 / 발린 알데하이드 / 이소부티랄데히드 / 이소-부티랄데히드 / 이소부티르산 알데하이드 / 이소뷰틸알데하이드 / 이소프로필포름알데하이드", "synonymsEn": "Isobutyraldehyde / 2-METHYLPROPANAL / methylpropanal / ISOBUTYLALDEHYDE / Isobutanal / isobutyral / sobutyraldehyde / Isobutyraldehyd / 2-methyl-propana / Propanal,2-methyl- / ISOBUTYRIC ALDEHYDE", - "synonymsKr": "이소부틸알데하이드 / 이소부틸알데히드 / 아이소뷰티르알데하이드 / 아이소뷰틸알데하이드 / 이소부틸알데히드 / 이소부탄알 / 2-메틸프로판알 / 2-메틸-1-프로판알 / 2-메틸프로피안알데하이드 / LC-메틸프로피안알데하이드 / 발린 알데하이드 / 이소부티랄데히드 / 이소-부티랄데히드 / 이소부티르산 알데하이드 / 이소뷰틸알데하이드 / 이소프로필포름알데하이드", "unNumber": "", "casNumber": "78-84-2", "transportMethod": "", @@ -22557,19 +17233,25 @@ { "code": "2MPA", "name": "2-Methylpropanal", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "IBAL", + "name": "Isobutyl aldehyde", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 326, - "abbreviation": "2MPDN", - "nameKr": "2메틸피리딘", - "nameEn": "2-Methylpyridine", - "synonymsEn": "", - "synonymsKr": "2메틸피리딘", + "id": 194, + "abbreviation": "APCLN", + "nameKr": "알파피콜린", + "nameEn": "Alpha-Picoline", + "synonymsKr": "α-피콜린 / 2-메틸피리딘 / 2-피콜린 / α-피콜린", + "synonymsEn": "2-Picoline / 2-METHYLPYRIDINE / α-picoline / o-Picoline / a-Picoline / 2-Methylpyidine / pyridine,2-methyl- / ALPHAP / NSC-3409 / ai3-2409 / aPicolin", "unNumber": "", "casNumber": "109-06-8", "transportMethod": "", @@ -22611,12 +17293,12 @@ "exposure": "", "regulation": "" }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "F", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12.3.2, 15.19", + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -22625,331 +17307,65 @@ { "code": "2MPDN", "name": "2-Methylpyridine", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 327, - "abbreviation": "2NPPN", - "nameKr": "1-니트로프로판", - "nameEn": "2-Nitropropane", - "synonymsEn": "1-Nitropropane / 1-NP / ai3-02264 / n-C3H7NO2 / 1-Nitropro / 1-Nitropan / NiPar S-10 / 1-nitro-propan / 1-NITROPROPANE / N-Nitropropane / Propane,1-nitro-", - "synonymsKr": "2나이트로프로판 / 1-니트로프로판 / 1-나이트로프로판 / 1-나이트로프로페인(1-니트로프로판) / 1-니트로프로판", - "unNumber": "", - "casNumber": "108-03-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "2NPPN", - "name": "2-Nitropropane", - "company": "", - "source": "화물적부도" + "code": "APCLN", + "name": "Alpha-Picoline", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 328, - "abbreviation": "2PTEN", - "nameKr": "2펜텐", - "nameEn": "2-Pentene", - "synonymsEn": "2-Pentene / 2-C5H10 / AMYLENE / PENTENE / 2-Penten / petene-2 / 2-PENTENE / 2-AMYLENE / Pentene-2 / N-AMYLENE / l-pentene", - "synonymsKr": "2펜텐 / 2-펜텐 / 2-펜텐 / 프로필레틸린알파-n-아밀린", - "unNumber": "", - "casNumber": "109-67-1", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "2PTEN", - "name": "2-Pentene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 329, - "abbreviation": "500HPN", - "nameKr": "", - "nameEn": "500 SUS HPN", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "500HPN", - "name": "500 SUS HPN", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 330, - "abbreviation": "AC45C", - "nameKr": "", - "nameEn": "AC-45-C", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "AC45C", - "name": "AC-45-C", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 331, + "id": 195, "abbreviation": "AALD", "nameKr": "아세트알데히드", "nameEn": "Acetaldehyde", - "synonymsEn": "Acetaldehyde / Ethanal / CH3CHO / METHANONE / FORMALDEHYDE SOLUTION / Acetaldehyd / acetaldehyde solution / FORMOL / FORMIC ALDEHYDE / METHYL ALDEHYDE / ACETALDEHYDE, ACS", - "synonymsKr": "아세트알데하이드 / 아세트알데히드 / 알데히드 / 에탄알 / 초산알데히드 / 아세트알데하이드 / 아세트알데히드 / 에틸알데히드 / 아세트산알데히드", - "unNumber": "", + "synonymsKr": "아세트알데하이드 / 아세트알데히드 / 알데히드 / 에탄알 / 초산알데히드 / 아세트알데하이드 / 아세트알데히드 / 에틸알데히드 / 아세트산알데히드 / 아세틱 알데하이드 / 살충제 코드 : 202300 / 에탄알 / 에틸 알데하이드 / 아세테하이드 / 다이에틸아세탈 / 1, 1-다이에티옥시 에테인", + "synonymsEn": "Acetaldehyde / Ethanal / CH3CHO / METHANONE / FORMALDEHYDE SOLUTION / Acetaldehyd / acetaldehyde solution / FORMOL / FORMIC ALDEHYDE / METHYL ALDEHYDE / ACETALDEHYDE, ACS / Acetic aldehyde / Acetaldehyd (German) / Aldehyde acetique (French) / Aldeide acetica (Italian) / Pesticide Code: 202300 / Ethanal / Ethyl aldehyde / Octowy aldehyd (Polish) / Acetaldehido (Spanish) / Acetehyde / Diethylacetal / 1, 1-Diethyoxy ethane", + "unNumber": "1089", "casNumber": "75-07-0", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "D (Dissolver)", "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "액체(20.56℃ 기체)", + "color": "무색, 투명", + "odor": "톡 쏘는 냄새", + "flashPoint": "-3*", + "autoIgnition": "185℃", + "boilingPoint": "20.8℃", + "density": "0.78", + "solubility": "완전 혼화", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "1.5", + "explosionRange": "4~60%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 2, + "fire": 4, + "reactivity": 2, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Z", + "ergNumber": "129P", + "idlh": "2,000 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발용해 (ED)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "고인화성, 발암성 의심, 호흡기/피부/안구 자극", + "firstAid": "흡입노출 • 즉시 의료조치. 산소공급, 인공호흡 물질특성 인체 유해성 화재 침강 용해 증발 증기밀도 (위험성) (물=1) 〈» (룰중기압) (공기=1) 0 yo O 노 O (높음) 八 (높용) (높음) =러 인화점 -38’C 발화점 185仁 끓는점 20.2’C 수용해도 1,000g/L(25’C) 상온상태 (20.엃:'기체) 색상 무색•투명 냄새 톡 쏘는냄새 비중 0.78 증기압 902mmHg(25t) 휘발성 높음 첨도 0.2456cP(15t) 증기밀도 1.5 급성독성 TWA(8 시간) 50ix>m 경구(LD50) 경피 (LD50) 홈입 (LC50) 노ft 기준 아* 이티::변 150Ppm 660 3.540 증기24 노초한계 mg/kg mg/kg 찌/2/4시간 |[)LH(30본) 夕 직접위험농도 ’ 일반증상 메스꺼움, 구토, 두통및 의식불명을일으킴 긍이 마취효과, 중추신경계 기능저하, 현기증, 질식 \"님 폐부종.호흡기 자극 피부 알레르기 반응, 염증, 화상, 홍반, 부어오름 안구 심각한 안구염증, 화상, 각막손상. 결막염 겨구 메스꺼움. 구토 및 설사를 동반한 위장내 염증 구 중추신경계 장애, 의식불명. 사망 피부접촉 • 물로 씻어 낼 것, 긴급 의료조치, 화", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제. 증기운 이동 억제.", + "exposure": "TWA 25 ppm, IDLH 2,000 ppm", + "regulation": "유해화학물질관리법" }, "ibcHazard": "", "ibcShipType": "", @@ -22957,95 +17373,27 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "AALD", "name": "Acetaldehyde", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 332, - "abbreviation": "ACTN", - "nameKr": "아세톤", - "nameEn": "Acetone", - "synonymsEn": "Acetone / propan-2-one / aceton / 2-Propanone / (CH3)2CO / ACETONE ALCOHOL / Propan-1-one / Propanon / 2-Propanon / Dimethylketal / GRAMS DECOLORIZER", - "synonymsKr": "아세톤 / 아세톤 / 디메틸포름알데히드 / 베타-케토프로판 / 프로파논엔 / 2-프로파논 / 디메틸케톤 / 디메틸케톤,2-프로파논 / 메틸케톤 / 피로아세트에테르 / 다이메틸 케톤 / 다이메틸포름알데하이드 / 메틸 케톤 / 피로아세트 에테르", - "unNumber": "", - "casNumber": "67-64-1", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "ACTN", - "name": "Acetone", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 333, + "id": 196, "abbreviation": "ACH", "nameKr": "아세톤 사이노히드린", "nameEn": "Acetone cyanohydrine", - "synonymsEn": "Acetone cyanohydrin / 2-Hydroxy-2-methylpropanenitrile / Acetone Cyanohydrine / 2-Cyano-2-propanol / 2-HYDROXY-2-METHYLPROPIONITRILE / usafrh-8 / USAF rh-8 / Acetoncianidrina / Acetoncyanhydrin / Acetonkyanhydrin / AKOS BBS-00004270", "synonymsKr": "아세톤시아노히드린 / 아세톤사이아노하이드린 / 2-히드록시-2-메틸-프로판니트릴2-메틸-락토니트릴 / 아세톤시아노하드린 / 아세톤시아노히드린 / 아세톤시아노히드린 / 아세톤 사이아노하이드린 / 2-메틸락토나이트릴 / 2-메틸아세토나이트릴 / 2-사이아노-2-프로판올 / 2-사이아노-2-하이드록시프로페인 / 2-사이아노프로판-2-올 / 2-하이드록시-2-메틸프로판나이트릴 / 2-하이드록시-2-메틸프로페인나이트릴 / 2-하이드록시-2-메틸프로피오나이트릴 / 2-하이드록시이소부티로나이트릴 / 락토나이트릴, 2-메틸- / 아세톤 시아노히드린 / 알파-하이드록시아이소뷰티로나이트릴 / 알파-하이드록시이소부티로나이트릴 / 이소프로필사이아노 히드린", + "synonymsEn": "Acetone cyanohydrin / 2-Hydroxy-2-methylpropanenitrile / Acetone Cyanohydrine / 2-Cyano-2-propanol / 2-HYDROXY-2-METHYLPROPIONITRILE / usafrh-8 / USAF rh-8 / Acetoncianidrina / Acetoncyanhydrin / Acetonkyanhydrin / AKOS BBS-00004270", "unNumber": "", "casNumber": "75-86-5", "transportMethod": "", @@ -23101,359 +17449,87 @@ { "code": "ACH", "name": "Acetone cyanohydrine", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 334, - "abbreviation": "ANL", - "nameKr": "아세토나이트릴", - "nameEn": "Acetonitrile", - "synonymsEn": "Acetonitrile / ACN / MeCN / CH3CN / AN / Acetonitril / MGDA / anhydrous Acetonitrile / ETHANENITRILE / Cyanomethan / MOBILE PHASE ACETONITRILE", - "synonymsKr": "아세토나이트릴 / 아세토니트릴 / 메탄카르보니트릴 / 에탄니트릴 / 메틸시아나이드 / 시아노메탄 / 아세토나이트릴 / 에틸니트릴 / 나이트로니트릴 / 메틸 시아나이드 / 에탄나이트릴", - "unNumber": "1093", - "casNumber": "75-05-8", - "transportMethod": "", - "sebc": "", - "usage": "용매, 화학 반응제로 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "FT", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "ANL", - "name": "Acetonitrile", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 335, + "id": 197, "abbreviation": "ACRA", "nameKr": "아크릴산", "nameEn": "Acrylic acid", - "synonymsEn": "Acrylic acid / Acrylate / 2-PROPENOIC ACID / Glacial acrylic acid / PROPENOIC ACID / CH2=CHCOOH / Propensαure / Acroleic acid / prop-2-enoicacid / acrylated MonoMers / 2-Propenoic acid (I)", - "synonymsKr": "아크릴산 / 아크릴산 / 2-프로펜산 / 2-프로펜산,아크롤레익산 / 비닐포름산 / 아크롤릭산 / 에틸렌카르복실산 / 프로펜산ACROLEICACID / 아크릭산 / 아크롤릭산 / 에틸렌카르복실산 / 비닐포름산 / 2-프로펜산 / 프로펜산 / 아크릴릭애씨드", + "synonymsKr": "아크릴산 / 아크릴산 / 2-프로펜산 / 2-프로펜산,아크롤레익산 / 비닐포름산 / 아크롤릭산 / 에틸렌카르복실산 / 프로펜산ACROLEICACID / 아크릭산 / 아크롤릭산 / 에틸렌카르복실산 / 비닐포름산 / 2-프로펜산 / 프로펜산 / 아크릴릭애씨드 / 아크롤산 / 아크릴산, 결정 / 카스웰 넘버 009A / 에틸렌카복실산 / 프로펜산 / 프로페노산 / 2-프로페노산 / 비닐폼산 / 제한적 아크릴산 단량체 / 스테노메릭 아크릴산", + "synonymsEn": "Acrylic acid / Acrylate / 2-PROPENOIC ACID / Glacial acrylic acid / PROPENOIC ACID / CH2=CHCOOH / Propensαure / Acroleic acid / prop-2-enoicacid / acrylated MonoMers / 2-Propenoic acid (I) / Acide acrylique (french) / Acido acrilio (spanish) / Acroleic acid / Acrylic acid, glacial / AI3-15717 / Caswell NO. 009A / Ethylenecarboxylic acid / Kyselina akrylova (czech) / Propene acid / Propenoic acid / 2-Propenoic acid / Vinylformic acid / AA / Acrylic acid monomer inhibited / Stenomeric acrylate", "unNumber": "2218", "casNumber": "79-10-7", - "transportMethod": "", - "sebc": "", - "usage": "고무, 플라스틱, 산촉매, 응집제", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(8급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "유해액체물질/Y 무색의 매캐한 냄새가 나는 액체로서 주로 고무, 플라스틱, 응집제 등에 사용됨. 해상유출 시에는 용해되므로 방제조 치는 불필요하나, 피부화상, 눈 손상 등 인체노출 시 매우 유해한 물질이므로 사고대응 시 보안경, 방독마스크, 화학", + "state": "액체", + "color": "무색", + "odor": "매캐한 냄새", + "flashPoint": "5O’C", + "autoIgnition": "438“C", + "boilingPoint": "142‘仁", + "density": "1.1", + "solubility": "용해", + "vaporPressure": "4mmHg(2W", + "vaporDensity": "2.5", + "explosionRange": "2.4~8%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 3, + "fire": 2, + "reactivity": 2, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "132", "idlh": "", - "aegl2": "", + "aegl2": "46 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "인화성, 부식성, 호흡기/피부/안구 심각한 손상, 중합성", + "firstAid": "흡입노출 • 즉시 의료조치 피부접촉 • 즉시 의료조치, 화상의 경우 다량의 찬물로 씻을 것, 물에 씻을 것 안구접촉 • 긴급 의료조치, 콘택트렌즈 제거 경구섭취 • 구강대구강 인공호흡 하지 말 것, 긴급 의료조치. 입올 씻어낼 것 초동매응방법 대응장비 보호복 호홉구 3.4 형식 (C급) 방독마스고(반면. 전면) 1형식 (1B) 공기호홉기 보안경 보호장갑 O O 기타장비 보주장호 열화상카메라 1 초기 이격거리(m) 50 방호거리 (m) 50 1 해상유출시 ► 유출물질은 피부부식, 눈 손상 등 인체노출 시 매우 유해한 물질이므로 모튼 출동세력 풍상에 위치, 최소 50m 이격거리 유지. 주변선박 통제 ► 인화성액체로 화재위험성이 있으므로 흠연. 불꽃, 스파크 등 모든 점화원 제거 ► 츨동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용(사고선 근접 시 1B급 착용), 증기홉입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 용해되므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 1 화재 시대피거리(m) 800 1 ►유출물질은 연소시 유독가스 방출, 풍상에 위치, 최소 이격거리 유", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 내알코올 포말.", + "spillResponse": "모든 점화원(흡연, 불꽃, 스파크) 제거. 주변 해상 통제. 분무주수로 증기운 이동 억제.", + "exposure": "TWA 2 ppm, AEGL-2 46 ppm", + "regulation": "유해화학물질관리법" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "AC", - "ibcMinRequirement": "15.11.2, 15.11.3, 15.11.4, 15.11.6, 15.11.7, 15.11.8, 15.12.3, 15.12.4, 15.13, 15.17, 15.19, 16.2.9, 16.6.1", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "ibcMinRequirement": "15.11.2, 15.11.3, 15.11.4,\n15.11.6, 15.11.7, 15.11.8,\n15.12.3, 15.12.4, 15.13,\n15.17, 15.19, 16.2.9, 16.6.1", + "emsCode": "F-E, S-C", + "emsFire": "F-E", + "emsSpill": "S-C", "emsFirstAid": "", "cargoCodes": [ { "code": "ACRA", "name": "Acrylic acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 336, - "abbreviation": "AL150Z", - "nameKr": "", - "nameEn": "AL 150Z", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "AL150Z", - "name": "AL 150Z", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 337, - "abbreviation": "AL304", - "nameKr": "", - "nameEn": "AL 304", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "AL304", - "name": "AL 304", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 338, - "abbreviation": "AL304B", - "nameKr": "", - "nameEn": "AL 304B", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "AL304B", - "name": "AL 304B", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 339, - "abbreviation": "ALBEV", - "nameKr": "술 종류", - "nameEn": "Alcoholic beverages( i.e. rum, wine)", - "synonymsEn": "Benzyl alcohol / BnOH / PHENYLMETHANOL / BENZENEMETHANOL / benjiachun / Benzylalkohol / PHENYLCARBINOL / Benzyl alcoholl / Natural benzyl alcohol / FEMA 2137 / benzalalcohol", + "id": 198, + "abbreviation": "BZLA", + "nameKr": "벤젠 알코올", + "nameEn": "Benzyl alcohol", "synonymsKr": "벤질 알코올 / 벤질알코올 / (하이드록시메틸)벤젠 / 벤젠메탄올 / 알BENZENEMETHANOL / 알파-하이드록시톨루엔 / 페닐메틸알코올 / 페닐카빈올 / 벤젠카빈올 / 벤질알콜 / 벤질알코올 / 알파-톨루엔올 / 페닐메탄올 / 페닐메틸 알코올", + "synonymsEn": "Benzyl alcohol / BnOH / PHENYLMETHANOL / BENZENEMETHANOL / benjiachun / Benzylalkohol / PHENYLCARBINOL / Benzyl alcoholl / Natural benzyl alcohol / FEMA 2137 / benzalalcohol", "unNumber": "", "casNumber": "100-51-6", "transportMethod": "", @@ -23495,12 +17571,12 @@ "exposure": "", "regulation": "" }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", + "ibcHazard": "S/P", + "ibcShipType": "3", + "ibcTankType": "2G", + "ibcDetection": "R", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -23509,57 +17585,63 @@ { "code": "ALBEV", "name": "Alcoholic beverages( i.e. rum, wine)", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "BZLA", + "name": "Benzyl alcohol", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 340, - "abbreviation": "AFA", - "nameKr": "세틸알코올", - "nameEn": "Alfol alcohol", + "id": 199, + "abbreviation": "AFAC10", + "nameKr": "세테아릴 알코올", + "nameEn": "Alfol alcohol C10", + "synonymsKr": "1-옥타데칸올", "synonymsEn": "1-Octadecanol / STEARYL ALCOHOL / Ceteareth-20 / OCTADECANOL / Octadecan-1-ol / Stenol / stearyl / STEARYLIC ALCOHOL / Stearol / n-Octadecanol / OCTADECYL ALCOHOL", - "synonymsKr": "스테아릴 알코올 / 1-히드록시옥타데칸 / N-옥타데실알코올 / N-옥타데칸올 / 옥타데실알코올 / 옥타데칸올 / 1-옥타데칸올 / 스테아릴알코올 / 스테아릴알콜 / 스테아릴알코올 / 1-하이드록시옥타에칸 / 옥사데실 알코올", "unNumber": "1986", "casNumber": "112-92-5", - "transportMethod": "", - "sebc": "", - "usage": "화장품 크림, 윤활제, 향수 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "F (Floater)", + "usage": "화장품 크림, 윤활제. 향수", + "state": "고체", + "color": "무색에서 횐색", + "odor": "약간 특이한 냄새", + "flashPoint": "183℃", + "autoIgnition": "450r", + "boilingPoint": "351℃", + "density": "0.8140(60t)", + "solubility": "거의 불용", "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "vaporDensity": "9.5", + "explosionRange": "1~8%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "131", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", + "responseDistanceFire": "자료없음", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "부유 (F)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "피부/흡입 자극 (경미)", + "firstAid": "흡입노출 • 신선한 곳으로 이동. 호흡하기 쉬운 자세로 쉬게 할 것 피부접촉 . 다량의 물과 비누로 씻어낼 것 안구접촉 • 몇 분간 물로 조심해서 씻을 것, 콘택트렌즈 제거 경구섭취 • 긴급 의료조치 초동 마응방법 1 보호복 호홉구 보안경 보호장갑 기타장비 대응장비 5.6형식 박지마스크 o : (일회용방제복) 己己바_크 . O 열화상카메라 1 초기 이격거리(m) 자료없음 방호거리 (m) 자료없음 1 해상유출시 ► 유출물잘은 자극. 두통. 구토 등을 유발 할 수 있으므로 모든 출동세력 풍상에 위치, 최소 이격거리 유지 ► 출동 경비정(방제정) 방진마스크를 포함한 5,6형식 보호의 착용. 증기흡입과 피부와 눈에 접촉을 피할 것 > 상온에서 굳는 물질로 해상유출시 부유하므로 방제조차 필요 (뜰채 등을 이용하여 해상에 굳은 물질을 회수해야 함) 1 화재시대피거리 (m) 자료없음 1 ►유출물질은 연소시 유독가스 방출. 풍상에 위치, 최소 이격거리 유지하고 내알쿨포 이용 화재진압 ► 열화상카메라 운용(결과전파), 소화포 이용 사고선 냉각조치 할 것 ► 직수분사 금지(화재를 번지게 할 수 있음) ► 안전이 확보되면, 화학방제함 또는 예인선 동원", + "fireFighting": "분무주수/포말/CO₂.", + "spillResponse": "흡착재 회수. 주변 통제.", "exposure": "", "regulation": "" }, @@ -23569,163 +17651,39 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "AFA", "name": "Alfol alcohol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 341, - "abbreviation": "AFAC10", - "nameKr": "세테아릴 알코올", - "nameEn": "Alfol alcohol C10", - "synonymsEn": "1-Octadecanol / STEARYL ALCOHOL / Ceteareth-20 / OCTADECANOL / Octadecan-1-ol / Stenol / stearyl / STEARYLIC ALCOHOL / Stearol / n-Octadecanol / OCTADECYL ALCOHOL", - "synonymsKr": "스테아릴 알코올 / 1-히드록시옥타데칸 / N-옥타데실알코올 / N-옥타데칸올 / 옥타데실알코올 / 옥타데칸올 / 1-옥타데칸올 / 스테아릴알코올 / 스테아릴알콜 / 스테아릴알코올 / 1-하이드록시옥타에칸 / 옥사데실 알코올", - "unNumber": "1986", - "casNumber": "112-92-5", - "transportMethod": "", - "sebc": "", - "usage": "화장품 크림, 윤활제, 향수 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "AFAC10", "name": "Alfol alcohol C10", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 342, - "abbreviation": "AFBLD610", - "nameKr": "고급알코올", - "nameEn": "Alfol Blend 610", - "synonymsEn": "1-Octadecanol / STEARYL ALCOHOL / Ceteareth-20 / OCTADECANOL / Octadecan-1-ol / Stenol / stearyl / STEARYLIC ALCOHOL / Stearol / n-Octadecanol / OCTADECYL ALCOHOL", - "synonymsKr": "스테아릴 알코올 / 1-히드록시옥타데칸 / N-옥타데실알코올 / N-옥타데칸올 / 옥타데실알코올 / 옥타데칸올 / 1-옥타데칸올 / 스테아릴알코올 / 스테아릴알콜 / 스테아릴알코올 / 1-하이드록시옥타에칸 / 옥사데실 알코올", - "unNumber": "1986", - "casNumber": "112-92-5", - "transportMethod": "", - "sebc": "", - "usage": "화장품 크림, 윤활제, 향수 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "AFBLD610", "name": "Alfol Blend 610", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 343, + "id": 200, "abbreviation": "AKN6/9", "nameKr": "알케인", "nameEn": "Alkanes (C6-C9)", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "", "casNumber": "68475-57-0", "transportMethod": "", @@ -23768,9 +17726,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.17, 15.19.6", "emsCode": "", @@ -23781,87 +17739,19 @@ { "code": "AKN6/9", "name": "Alkanes (C6-C9)", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 344, - "abbreviation": "AMOXPOL", - "nameKr": "", - "nameEn": "Alkeny Mod ,Oxyalkylene polymer", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "AMOXPOL", - "name": "Alkeny Mod ,Oxyalkylene polymer", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 345, + "id": 201, "abbreviation": "APPGE", "nameKr": "알킬페놀폴리글리콜에테르", "nameEn": "Alkyl phenol polyglycol ether", - "synonymsEn": "Alkylphenol polyglycol ether", "synonymsKr": "알킬페놀폴리글리콜에테르 / 알킬페놀폴리글리콜에테르", + "synonymsEn": "Alkylphenol polyglycol ether", "unNumber": "", "casNumber": "9007-37-8", "transportMethod": "", @@ -23917,19 +17807,19 @@ { "code": "APPGE", "name": "Alkyl phenol polyglycol ether", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 346, + "id": 202, "abbreviation": "ACL", "nameKr": "알릴클로라이드", "nameEn": "Allyl chloride", - "synonymsEn": "Allyl chloride / 3-CHLOROPROPENE / Chloropropene / 3-CHLORO-1-PROPENE / CH2=CHCH2Cl / Barchlor / 3-Chloroprene / Allile / NCI-C04615 / Allylchlor / Allylchloide", "synonymsKr": "염화알릴 / 2-프로펜일염화물 / 3-클로로프로펜 / 알릴염화물 / 알릴클로라이드 / 염화알릴 / 염화알릴 / 알릴클로라이드(3-클로로프로펜) / 에스터의유리알릴알코올농도가0.1%를초과하는알릴에스터류 / 아릴 클로라이드 / 염화아릴 / 1-클로로-2-프로펜", + "synonymsEn": "Allyl chloride / 3-CHLOROPROPENE / Chloropropene / 3-CHLORO-1-PROPENE / CH2=CHCH2Cl / Barchlor / 3-Chloroprene / Allile / NCI-C04615 / Allylchlor / Allylchloide", "unNumber": "", "casNumber": "107-05-1", "transportMethod": "", @@ -23972,9 +17862,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.17, 15.19", "emsCode": "", @@ -23985,19 +17875,19 @@ { "code": "ACL", "name": "Allyl chloride", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 347, + "id": 203, "abbreviation": "ALMOND", "nameKr": "아몬드오일", "nameEn": "Almond oil", - "synonymsEn": "Sweet almond oil / stavitini / stavitine / ALMOND OIL / Oils,almond / Prunus dulcus / AMYGDALAE OLEUM / Almond Oil pure / oilofsweetalmond / SWEET ALMOND OIL / RefinedAlmondOil", "synonymsKr": "스위트아몬드오일 / 스위트아몬드오일", + "synonymsEn": "Sweet almond oil / stavitini / stavitine / ALMOND OIL / Oils,almond / Prunus dulcus / AMYGDALAE OLEUM / Almond Oil pure / oilofsweetalmond / SWEET ALMOND OIL / RefinedAlmondOil", "unNumber": "", "casNumber": "8007-69-0", "transportMethod": "", @@ -24053,127 +17943,59 @@ { "code": "ALMOND", "name": "Almond oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 348, - "abbreviation": "ALP79", - "nameKr": "", - "nameEn": "Alphanol-79", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "ALP79", - "name": "Alphanol-79", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 349, + "id": 204, "abbreviation": "AOLE12", "nameKr": "알파올레핀", "nameEn": "Alpha-Oleffin C12", - "synonymsEn": "Alpha olefins CBNumberCB41104015", "synonymsKr": "알파올레핀", + "synonymsEn": "Alpha olefins / CBNumberCB41104015", "unNumber": "", "casNumber": "69898-00-6", - "transportMethod": "", - "sebc": "", + "transportMethod": "산적액체", + "sebc": "F (Floater)", "usage": "", - "state": "", - "color": "", - "odor": "", + "state": "액체", + "color": "무색", + "odor": "경미한 석유", "flashPoint": "", "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", + "boilingPoint": ">120℃", + "density": "0.77~0.79", + "solubility": "불용", "vaporPressure": "", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "해양오염물질, 흡입 유해", + "ergNumber": "128", "idlh": "", "aegl2": "", "erpg2": "", "responseDistanceFire": "", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "해상부유, 흡착재 회수", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "피부/흡입 자극, 수생환경 유해", + "firstAid": "흡입: 신선한 공기. 피부/안구: 물 세척. 경구: 의료조치.", + "fireFighting": "포말/분무주수/CO₂.", + "spillResponse": "오일펜스/흡착재 회수.", "exposure": "", - "regulation": "" + "regulation": "CAS 69429-97-6 (C14~C18 알파-알켄)" }, "ibcHazard": "", "ibcShipType": "", @@ -24181,299 +18003,45 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "AOLE12", "name": "Alpha-Oleffin C12", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 350, - "abbreviation": "AOLE1214", - "nameKr": "알파올레핀", - "nameEn": "Alpha-Oleffin C12-C14", - "synonymsEn": "Alpha olefins CBNumberCB41104015", - "synonymsKr": "알파올레핀", - "unNumber": "", - "casNumber": "69898-00-6", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "AOLE1214", "name": "Alpha-Oleffin C12-C14", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 351, - "abbreviation": "AOLE8", - "nameKr": "알파올레핀", - "nameEn": "Alpha-Oleffin C8", - "synonymsEn": "Alpha olefins CBNumberCB41104015", - "synonymsKr": "알파올레핀", - "unNumber": "", - "casNumber": "69898-00-6", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "AOLE8", "name": "Alpha-Oleffin C8", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 352, - "abbreviation": "AO8/10", - "nameKr": "알파올레핀", - "nameEn": "Alpha-Oleffin C8-C10", - "synonymsEn": "Alpha olefins CBNumberCB41104015", - "synonymsKr": "알파올레핀", - "unNumber": "", - "casNumber": "69898-00-6", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "AO8/10", "name": "Alpha-Oleffin C8-C10", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 353, - "abbreviation": "APCLN", - "nameKr": "알파피콜린", - "nameEn": "Alpha-Picoline", - "synonymsEn": "2-Picoline / 2-METHYLPYRIDINE / α-picoline / o-Picoline / a-Picoline / 2-Methylpyidine / pyridine,2-methyl- / ALPHAP / NSC-3409 / ai3-2409 / aPicolin", - "synonymsKr": "α-피콜린 / 2-메틸피리딘 / 2-피콜린 / α-피콜린", - "unNumber": "", - "casNumber": "109-06-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "APCLN", - "name": "Alpha-Picoline", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 354, + "id": 205, "abbreviation": "AEEA", "nameKr": "아미노에틸에탄올아민", "nameEn": "Aminoethylethanolamine", - "synonymsEn": "2-(2-Aminoethylamino)ethanol / AEEA / AMINOETHYLETHANOLAMINE / 2-((2-Aminoethyl)amino)ethan-1-ol / N-(2-HYDROXYETHYL)ETHYLENEDIAMINE / AMINOETHYLETHANOLAMIN / N-(2-AMINOETHYL)ETHANOLAMINE / aminoethyl / N-AMINOETHYL ETHANOLAMINE / (2-Hydroxyethyl)ethylenediamine / N-(2-Hydroxyethyl)ethylenediamine,97%", "synonymsKr": "아미노에틸 에탄올아민 / N-2-하이(2-AMINOETHYL)ETHANOLAMINE / (2-아미노에틸)에탄올아민 / 2-(2-아미노에틸아미노)에탄올 / 2-(2-하이드록시에틸아미노)에틸아민 / N-(2-아미노에틸)에탄올아민 / 아미노에틸에탄올아민 / 아미노에틸에탄올아민(AEEA) / 아미노에틸 에탄올아민 / N-(2-하이드록시에틸)에틸렌다이아민 / 모노에탄올에틸렌다이아민", + "synonymsEn": "2-(2-Aminoethylamino)ethanol / AEEA / AMINOETHYLETHANOLAMINE / 2-((2-Aminoethyl)amino)ethan-1-ol / N-(2-HYDROXYETHYL)ETHYLENEDIAMINE / AMINOETHYLETHANOLAMIN / N-(2-AMINOETHYL)ETHANOLAMINE / aminoethyl / N-AMINOETHYL ETHANOLAMINE / (2-Hydroxyethyl)ethylenediamine / N-(2-Hydroxyethyl)ethylenediamine,97%", "unNumber": "", "casNumber": "111-41-1", "transportMethod": "", @@ -24515,12 +18083,12 @@ "exposure": "", "regulation": "" }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", + "ibcHazard": "S/P", + "ibcShipType": "3", + "ibcTankType": "2G", + "ibcDetection": "C", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -24529,21 +18097,21 @@ { "code": "AEEA", "name": "Aminoethylethanolamine", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 355, - "abbreviation": "AMIX", - "nameKr": "", - "nameEn": "Ammix", - "synonymsEn": "", - "synonymsKr": "", + "id": 206, + "abbreviation": "AAQ", + "nameKr": "암모니아수", + "nameEn": "Ammonia aqueous.Ammonia water.", + "synonymsKr": "암모니아수 / XIDE((NH4)(OH)))암모늄수산화물((NH4)(OH)) / 안수 / 암모니아용액 / 수산화암모늄수 / 수화암모니아 / 암모니아액체 / 암모니아수 / 암모니아수15% / 암모니아수9% / 하이드록시암모늄 / 수산화암모늄25% / 암모니아용액 / 수산화 암모늄 / 수산화 암모늄 ((NH4)(OH)) / 수산화암모늄 / 아자늄 하이드록사이드 / 암모늄 하이드레이트 / 암모니아, 수용액 / 진한 암모니아 용액 / 암모늄하이드록사이드", + "synonymsEn": "Ammonium hydroxide / AQUEOUS AMMONIA / AMMONIA SOLUTION / AMMONIA WATER / Ammonium hydroxide solution / Concentrated AMMoniuM Hydroxide / Ammonium hydroxide solution, 25% NH3, 99.99% trace metals basis / AQUA AMMONIA / Ammonium solution / Ammonium hydroxide solution, 28.0-30.0% NH3, ACS / Ammonium water", "unNumber": "", - "casNumber": "", + "casNumber": "1336-21-6", "transportMethod": "", "sebc": "", "usage": "", @@ -24595,21 +18163,21 @@ "emsFirstAid": "", "cargoCodes": [ { - "code": "AMIX", - "name": "Ammix", - "company": "", - "source": "화물적부도" + "code": "AAQ", + "name": "Ammonia aqueous.Ammonia water.", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 356, + "id": 207, "abbreviation": "APP", "nameKr": "암모늄 폴리인산염", "nameEn": "Ammonium polyphosphate", - "synonymsEn": "Ammonium polyphosphate / APP / polyphosphoric acids ammonium salts / APP-0 / APP-1 / APP-3 / APP Ⅰ / ICP55 / XAP-01 / FR-APP / NPHPL1", "synonymsKr": "암모늄 폴리인산염 / 암모늄폴리인산염 / 암모늄폴리인산염(AMMONIUMPOLYPHOSPHATE)", + "synonymsEn": "Ammonium polyphosphate / APP / polyphosphoric acids ammonium salts / APP-0 / APP-1 / APP-3 / APP Ⅰ / ICP55 / XAP-01 / FR-APP / NPHPL1", "unNumber": "", "casNumber": "68333-79-9", "transportMethod": "", @@ -24665,87 +18233,93 @@ { "code": "APP", "name": "Ammonium polyphosphate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 357, - "abbreviation": "AMLA", - "nameKr": "아밀알코올", - "nameEn": "Amyl alcohol", + "id": 208, + "abbreviation": "NAAL", + "nameKr": "노멀-아밀알코올", + "nameEn": "n-Amyl alcohol", + "synonymsKr": "아밀알코올/I—뗀탄올/폔티놀/폔탄올/N-펜탄올/폔틸알코올", "synonymsEn": "1-Pentanol / AMYL ALCOHOL / PENTAN-1-OL / N-PENTANOL / FUSEL OIL / N-AMYL ALCOHOL / Amylol / PENTYL ALCOHOL / N-PENTYL ALCOHOL / 1-Pentano1 / Pentanol-1", - "synonymsKr": "1-펜타놀 / 1-펜타놀 / N-아밀알코올 / 아밀알코올 / N-펜틸알코올 / N-아밀알코올 / 아밀알코올 / 아밀올 / 펜틸알코올 / 1-펜탄올 / N-부틸카빈올 / 일차아밀알 / N-아밀알코올 / N-펜틸 알코올 / 1-펜틸 알코올 / n-아밀 알코올 / n-펜탄올 / 아밀 알코올 / 펜탄-1-올 / 펜탄올 / 펜틸 알코올", "unNumber": "1105", "casNumber": "71-41-0", - "transportMethod": "", - "sebc": "", - "usage": "제약제조 원료, 합성 조미료, 윤활유 첨가제", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Z류)", + "sebc": "D (Dissolver)", + "usage": "제약제조 원료, 합성 초미료. 윤활유 첨가제 0 끼 소 험 해 류 위 유 부 인화성 엑채(구분3) 급성독성-경피 (구분4) 피부부식성/자극성 (구분2) 심한 눈 손상성/자극성(구분2) 흡인 유해성(구분2)", + "state": "액체", + "color": "무색, 투명", + "odor": "달콤한 냄새", + "flashPoint": "33℃", + "autoIgnition": "300℃", + "boilingPoint": "138℃", + "density": "0.81", + "solubility": "22 g/L (25℃)", + "vaporPressure": "2.2 mmHg", + "vaporDensity": "3", + "explosionRange": "1.1~10%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 3, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Z", + "ergNumber": "129", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "35m", + "marineResponse": "부유증발용해 (FED)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "인화성, 해상수거 곤란, 기화 증발", + "firstAid": "흡입노출 - 신선한 곳으로 아동, 즉시 의료조치, 산소공급, 인공호흡, 토하게 하지 말 것 피부접촉 . 긴급 의료조치, 비누와 물로 씻을 것 안구접촉 - 몇 분간 물로 씻을 것, 콘택트렌즈 제거, 의료초치 경구섭취 • 즉시 의료조치, 토하게 하지 말 것", + "fireFighting": "내알코올성 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제.", "exposure": "", "regulation": "" }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "ibcHazard": "S/P", + "ibcShipType": "2", + "ibcTankType": "2G", + "ibcDetection": "C", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.17, 15.19", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "AMLA", "name": "Amyl alcohol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NAAL", + "name": "n-Amyl alcohol", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 358, + "id": 209, "abbreviation": "ACVO", "nameKr": "오메가오일", "nameEn": "Anchovy oil", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "", "casNumber": "", "transportMethod": "", @@ -24801,155 +18375,87 @@ { "code": "ACVO", "name": "Anchovy oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 359, + "id": 210, "abbreviation": "ANLN", "nameKr": "아닐린", "nameEn": "Aniline", - "synonymsEn": "Aniline / ANILINE OIL / BENZENAMINE / PHENYLAMINE / Anilin / arylamine / BENZENEAMINE / Aminophen / benzamine / amino-benzen / aniline aniline", - "synonymsKr": "아닐린 / 아닐린 / 벤젠아민 / 아니빔BENZAMINE / 아닐린오일 / 아미노펜 / 청색오일 / 페닐아민 / 아미노벤젠 / 아닐린,그염류및그할로겐화유도체및설폰화유도체 / 유카인 / 아닐린 오일", + "synonymsKr": "아닐린 / 아닐린 / 벤젠아민 / 아니빔BENZAMINE / 아닐린오일 / 아미노펜 / 청색오일 / 페닐아민 / 아미노벤젠 / 아닐린,그염류및그할로겐화유도체및설폰화유도체 / 유카인 / 아닐린 오일 / 아미노벤젠 / 아미노펜 / 아닐린 오일 / 아릴아민 / 벤젠아민 / 벤젠, 아미노- / 사이아놀 / 페닐아민", + "synonymsEn": "Aniline / ANILINE OIL / BENZENAMINE / PHENYLAMINE / Anilin / arylamine / BENZENEAMINE / Aminophen / benzamine / amino-benzen / aniline aniline / AI3-03053 / AMINOBENZENE / AMINOPHEN / ANILINA (ITALIAN, POLISH) / ANILIN (CZECH) / Aniline oil / Anyvim / Arylamine / BENZENAMINE / BENZENE, AMINO- / Benzidam / Blue oil / Caswell No 051C / CI Oxidation Base 1 / CI 76000 / Cyanol / EPA Pesticide Chemical Code 251400 / HUILE D'ANILINE (FRENCH) / Krystallin / Kyanol / NCI C03736 / PHENYLAMINE / Ph-NH2", "unNumber": "", "casNumber": "62-53-3", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(6.1급), 산적액체(Y류)", + "sebc": "FD (Float-Dissolver)", "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "오일류 액체", + "color": "무색(노출시갈색)", + "odor": "자극적", + "flashPoint": "7O’C", + "autoIgnition": "615℃", + "boilingPoint": "184.rc", + "density": "1.02", + "solubility": "36g/L(25’C)", + "vaporPressure": "0.49mmHg(25'C)", + "vaporDensity": "3.2", + "explosionRange": "1.3~11%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 3, + "fire": 2, + "reactivity": 1, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "153", + "idlh": "0 분)", + "aegl2": "12 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "부유요해 (FD)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "독성, 발암성 의심, 혈액독성(메트헤모글로빈), 피부 흡수", + "firstAid": "흡입노출 • 즉시 의료조치 피부접촉 • 피부를 물로 씻을 것. 화상의 경우 다량의 찬물로 씻을 것 소지 안구접촉 • 몇 분간 물로 씻을 것, 콘택트렌즈 제거 경구섭취 ■ 입을 씻어낼 것, 구강대구강법 인공호흡 하지 말 것, 즉시 의료기관 진찰 초동대옹방법 대응장비 보호볶 호홉구 보안경 보호장갑 기타장비 3,4형식(C급) ■■ . '방독마스크(반면. 전면) 心 ① 옄화삭카메라 1형식 (1B) 공기호홈기 아 얼화상카베아 1 초기 이격거리 (m) 50 방호거리 (m) 50 | 해상유출치 ►유출물질은 수생생물에 유독한 물질로 증기흡입 시 유해하며. 반복노출 시 중대한 독성울 일으킬 수 있는 물질로, 모든 출동세력 풍상에 위치. 최소 50m 이격거리 유지, 주변선박 통제 ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용(사고선 근접 시 1B급 착용). 증기홉입과 피부와 눈에 접촉올 피할 것 ► 유출물질온 부유하면서 용해되므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지. 안전홬보 시까지 지속적인 모니터링 1 화재 시대피거리(m) 800 1 + 화재 •폭발사 ►유출물질은 연소시 유독가스 방출, 풍", + "fireFighting": "분무주수/포말/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제. 흡착재 회수.", + "exposure": "TWA 2 ppm, AEGL-2 12 ppm, IDLH 100 ppm", + "regulation": "유해화학물질관리법" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "T", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.17, 15.19", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-B", + "emsFire": "F-A", + "emsSpill": "S-B", "emsFirstAid": "", "cargoCodes": [ { "code": "ANLN", "name": "Aniline", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 360, - "abbreviation": "ANOL", - "nameKr": "", - "nameEn": "Anol", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "ANOL", - "name": "Anol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 361, + "id": 211, "abbreviation": "ANOLON", "nameKr": "아놀론", "nameEn": "Anolon", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "", "casNumber": "", "transportMethod": "", @@ -25005,155 +18511,19 @@ { "code": "ANOLON", "name": "Anolon", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 362, - "abbreviation": "ANOND", - "nameKr": "", - "nameEn": "Anon D", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "ANOND", - "name": "Anon D", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 363, - "abbreviation": "ANON/ANL", - "nameKr": "", - "nameEn": "Anon-Anool mixture", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "ANON/ANL", - "name": "Anon-Anool mixture", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 364, + "id": 212, "abbreviation": "CORE100", "nameKr": "BASE OIL", "nameEn": "APE CORE 100", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "", "casNumber": "", "transportMethod": "", @@ -25209,291 +18579,43 @@ { "code": "CORE100", "name": "APE CORE 100", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 365, - "abbreviation": "CORE150", - "nameKr": "BASE OIL", - "nameEn": "APE CORE 150", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "CORE150", "name": "APE CORE 150", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 366, - "abbreviation": "CORE2500", - "nameKr": "BASE OIL", - "nameEn": "APE CORE 2500", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "CORE2500", "name": "APE CORE 2500", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 367, - "abbreviation": "CORE600", - "nameKr": "BASE OIL", - "nameEn": "APE CORE 600", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "CORE600", "name": "APE CORE 600", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 368, - "abbreviation": "APJUC", - "nameKr": "", - "nameEn": "Apple juice concentrate", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "APJUC", - "name": "Apple juice concentrate", - "company": "", - "source": "화물적부도" + "code": "BON60", + "name": "Light neutral 60 base oil", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 369, + "id": 213, "abbreviation": "APRKO", "nameKr": "아프리코트커넬 오일(행인유 / 각종 비료, 의약용)", "nameEn": "Apricot kernel oil", - "synonymsEn": "APRICOT KERNEL OIL / FEMA 2150 / PERSIC OIL / Oils,apricot / PERSICOILREFINED / APRICOT KERNEL OIL / Apricot Oil (Organic) / Persic Oil/Apricot Kernel Oil / TIANFU-CHEM APRICOT KERNEL OIL / Prunusarmeniacakerneloil,refined / APRICOT(PRUNUSARMENIACA)KERNELOIL", "synonymsKr": "살구씨오일 / 살구씨오일", + "synonymsEn": "APRICOT KERNEL OIL / FEMA 2150 / PERSIC OIL / Oils,apricot / PERSICOILREFINED / APRICOT KERNEL OIL / Apricot Oil (Organic) / Persic Oil / Apricot Kernel Oil / TIANFU-CHEM APRICOT KERNEL OIL / Prunusarmeniacakerneloil,refined / APRICOT(PRUNUSARMENIACA)KERNELOIL", "unNumber": "", "casNumber": "72869-69-3", "transportMethod": "", @@ -25549,19 +18671,19 @@ { "code": "APRKO", "name": "Apricot kernel oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 370, + "id": 214, "abbreviation": "ARCACID", "nameKr": "아라키드산(윤활재, 합성 수지, 왁스용)", "nameEn": "Arachidic acid", - "synonymsEn": "Arachidic acid / EICOSANOIC ACID / ARACHIC ACID / C20 / CAPRIC / ICOSANOIC ACID / arachidic / Icosansure / Eicosansαure / N-EICOSANOIC ACID / NSC 93983", "synonymsKr": "에이코사노 산 / 에이코사노산 / 에이코사노산 / 아라키딕애씨드 / 아라크산 / 아라키딘산 / 1-에이코산산", + "synonymsEn": "Arachidic acid / EICOSANOIC ACID / ARACHIC ACID / C20 / CAPRIC / ICOSANOIC ACID / arachidic / Icosansure / Eicosansαure / N-EICOSANOIC ACID / NSC 93983", "unNumber": "", "casNumber": "506-30-9", "transportMethod": "", @@ -25617,19 +18739,19 @@ { "code": "ARCACID", "name": "Arachidic acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 371, + "id": 215, "abbreviation": "POLF3000", "nameKr": "아르콜 폴리올", "nameEn": "Arcol F3000 Polyol", - "synonymsEn": "Poly(propylene glycol) / ppg / PPG-3 / PPG-17 / PPG-7 / ppg-15 / PPG-12 / PPG-16 / PPG-20 / PPG-26 / PPG-34", "synonymsKr": "마콜 P 1200 / 마콜P1200 / 폴리프로필렌글리콜 / 폴리프로필렌글리콜 / 피피지-12 / 피피지-13 / 피피지-15 / 피피지-16 / 피피지-17 / 피피지-51 / 피피지-20 / 피피지-26 / 피피지-3 / 피피지-30 / 피피지-33 / 피피지-34 / 피피지-52 / 피피지-69 / 피피지-7 / 피피지-9 / 폴리프로필렌 글라이콜", + "synonymsEn": "Poly(propylene glycol) / ppg / PPG-3 / PPG-17 / PPG-7 / ppg-15 / PPG-12 / PPG-16 / PPG-20 / PPG-26 / PPG-34", "unNumber": "", "casNumber": "25322-69-4", "transportMethod": "", @@ -25685,155 +18807,31 @@ { "code": "POLF3000", "name": "Arcol F3000 Polyol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 372, - "abbreviation": "POLHS100", - "nameKr": "아르콜 폴리올", - "nameEn": "Arcol HS-100 Polyol", - "synonymsEn": "Poly(propylene glycol) / ppg / PPG-3 / PPG-17 / PPG-7 / ppg-15 / PPG-12 / PPG-16 / PPG-20 / PPG-26 / PPG-34", - "synonymsKr": "마콜 P 1200 / 마콜P1200 / 폴리프로필렌글리콜 / 폴리프로필렌글리콜 / 피피지-12 / 피피지-13 / 피피지-15 / 피피지-16 / 피피지-17 / 피피지-51 / 피피지-20 / 피피지-26 / 피피지-3 / 피피지-30 / 피피지-33 / 피피지-34 / 피피지-52 / 피피지-69 / 피피지-7 / 피피지-9 / 폴리프로필렌 글라이콜", - "unNumber": "", - "casNumber": "25322-69-4", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "POLHS100", "name": "Arcol HS-100 Polyol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 373, - "abbreviation": "POL1905", - "nameKr": "아르콜 폴리올", - "nameEn": "ARCOL Polyol 1905", - "synonymsEn": "Poly(propylene glycol) / ppg / PPG-3 / PPG-17 / PPG-7 / ppg-15 / PPG-12 / PPG-16 / PPG-20 / PPG-26 / PPG-34", - "synonymsKr": "마콜 P 1200 / 마콜P1200 / 폴리프로필렌글리콜 / 폴리프로필렌글리콜 / 피피지-12 / 피피지-13 / 피피지-15 / 피피지-16 / 피피지-17 / 피피지-51 / 피피지-20 / 피피지-26 / 피피지-3 / 피피지-30 / 피피지-33 / 피피지-34 / 피피지-52 / 피피지-69 / 피피지-7 / 피피지-9 / 폴리프로필렌 글라이콜", - "unNumber": "", - "casNumber": "25322-69-4", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "POL1905", "name": "ARCOL Polyol 1905", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 374, + "id": 216, "abbreviation": "ARDPM", "nameKr": "디프로필렌 글리콜 모노메틸 에테르(제품명)", "nameEn": "ARCOSOLV DPM", - "synonymsEn": "Dipropylene glycol monomethyl ether / DPM / dpgme / (2-methoxymethylethoxy)propanol / DI(PROPYLENE GLYCOL) METHYL ETHER / arcosolv / GLYCOL ETHER DPM / Methoxypropoxypropanol / Dipropylene glycol monomethyl / (2-methoxymethylethoxy)-propano / 3-(3-Methoxypropoxy)-1-propanol", "synonymsKr": "디프로필렌 글리콜 메틸 에테르 / 디프로필렌글리콜메틸에테르 / 다이프로필렌글리콜메틸에테르 / 디프로필렌글리콜메틸에테르 / 다이프로필렌 글리콜 모노메틸 에테르 / (2-메톡시메티에톡시)프로판올 / PPG-2 메틸 에테르 / 디프로필렌 글리콜 모노메틸 에테르", + "synonymsEn": "Dipropylene glycol monomethyl ether / DPM / dpgme / (2-methoxymethylethoxy)propanol / DI(PROPYLENE GLYCOL) METHYL ETHER / arcosolv / GLYCOL ETHER DPM / Methoxypropoxypropanol / Dipropylene glycol monomethyl / (2-methoxymethylethoxy)-propano / 3-(3-Methoxypropoxy)-1-propanol", "unNumber": "", "casNumber": "34590-94-8", "transportMethod": "", @@ -25889,58 +18887,64 @@ { "code": "ARDPM", "name": "ARCOSOLV DPM", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DPGME", + "name": "Dipropyrene glycol monomethyl ether", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 375, - "abbreviation": "ARPM", - "nameKr": "1-메톡시-2-프로판올", - "nameEn": "ARCOSOLV PM soluvent", + "id": 217, + "abbreviation": "DOWNLPME", + "nameKr": "플로필렌 글리콜 메틸 에테르(상표명)", + "nameEn": "Dowanol PM-E", + "synonymsKr": "1-매톡시-2-하이드록시프로페인 / 프로필텐 크라이콜의 메톡시 에테르 /1-메톡시프로판올", "synonymsEn": "1-Methoxy-2-propanol / PM / PGME / Methoxypropanol / 2-Propanol, 1-methoxy- / PROPYLENE GLYCOL METHYL ETHER / 1-METHOXYPROPAN-2-OL / 203-539-1 / Dowanol pm / GLYCOL ETHER PM / METHOXYISOPROPANOL", - "synonymsKr": "프로필렌글리콜 모노메틸에테르 / 프로필렌글리콜모노메틸에테르 / 프로필렌글리콜모노메틸에테르 / 프로필렌글리콜메틸에테르 / 메톡시아이소프로판올 / 프로필렌글리콜모노메틸에테르 / 1-메톡시-2-하이드록시프로페인 / 1-메톡시-2-프로판올 / 글리콜 에테르 / 메톡시프로판-1,2-디올 / 알파-프로필렌 글리콜 모노메틸 에테르 / 프로필렌 글리콜 메틸 에테르 / 프로필렌 글리콜 모노메틸 에테르 / 프로필렌 글리콜, 1 메틸 에테르 / 프로필렌 글리콜의 메톡시에테르", - "unNumber": "", + "unNumber": "3092", "casNumber": "107-98-2", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(3급), 산적액체(Z류)", + "sebc": "D (Dissolver)", "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "액체", + "color": "무색, 투명", + "odor": "달콤한 에테르냄새", + "flashPoint": "38℃", + "autoIgnition": "287℃", + "boilingPoint": "i2(rc", + "density": "0.92", + "solubility": "용해", + "vaporPressure": "12mmHg(25t)", + "vaporDensity": "3.1", + "explosionRange": "1.9~13.1%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 3, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "유해액체물질/Z", + "ergNumber": "129", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "발화점", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성, 해상수거 불가", + "firstAid": "흡입노출 피부접촉 안구접촉 경구섭취 • 긴급 의료조치, 산소공급, 인공호흡 • 긴급 의료조치. 비누와 물로 씻을 것, 화상의 경우 다량의 찬물로 씻을 것 • 긴급 의료조치, 20문 이상 흐르는 물에 씻을 것 •긴급의료초치 •", + "fireFighting": "내알코올성 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제. 분무주수.", + "exposure": "TWA 100 ppm, STEL 150 ppm", "regulation": "" }, "ibcHazard": "", @@ -25949,95 +18953,33 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "ARPM", "name": "ARCOSOLV PM soluvent", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 376, - "abbreviation": "ASLH", - "nameKr": "", - "nameEn": "Aromasol H", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "ASLH", - "name": "Aromasol H", - "company": "", - "source": "화물적부도" + "code": "DOWNLPME", + "name": "Dowanol PM-E", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 377, + "id": 218, "abbreviation": "AROMA", "nameKr": "천연 에센셜 오일", "nameEn": "Aromatic oil", - "synonymsEn": "White camphor oil", "synonymsKr": "캠포 기름", + "synonymsEn": "White camphor oil", "unNumber": "", "casNumber": "8008-51-3", "transportMethod": "", @@ -26093,123 +19035,61 @@ { "code": "AROMA", "name": "Aromatic oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 378, - "abbreviation": "AVGAS", - "nameKr": "항공 휘발유", - "nameEn": "Avation gasoline", - "synonymsEn": "GASOLINE ADDITIVES MIXTURE NO 2 / OLEFINS / benzyna / benzinebr-1 / benzinebr-2 / herbicidees / gasolinebr-1 / nefras150/200 / whitegasoline / Gasoline No.90 / Gasoline No.70", - "synonymsKr": "가솔린 / 가솔린 / 가솔린(GASOLINE)", - "unNumber": "", - "casNumber": "86290-81-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "AVGAS", - "name": "Avation gasoline", - "company": "", - "source": "화물적부도" + "code": "CPH", + "name": "Camphor oil", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 379, - "abbreviation": "AVKER", - "nameKr": "항공 등유", - "nameEn": "Avation kerosene", - "synonymsEn": "·Isopar E G B H K V C generichydrocarbon heavy synthetic hydrocarbons C10-C13 n-alkanes isoalkanes cyclics <2% aromatics hydrotreated light steam cracked naphtha residuum petroleum isoparaffinic hydrocarbons low boiling hydrogen treated naphthaalkanes C11-13-iso- naphtha petroleum hydrotreated", - "synonymsKr": "히드로처리된 중 나프타 / 수소처리된중질나프타(석유) / 히드로처리된중나프타 / 수소처리된중질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDHEAVY) / C10-11아이소파라핀 / C10-12알케인/사이클로알케인 / C10-13아이소파라핀 / C11-12아이소파라핀 / C11-13아이소파라핀", - "unNumber": "", + "id": 219, + "abbreviation": "ISOPARG", + "nameKr": "히드로처리된 중 나프타(휘발성 및 인화성 있는 액체용매)", + "nameEn": "Isopar G", + "synonymsKr": "수소 처리된 중질 나프타(석유)", + "synonymsEn": "ISOPARAFFIN L, SYNTHESIS GRADE / ISOPARAFFIN L / Naphtha, hydrotreated heavy. / Hydrotreatedheavynaphtha(petroleum) / Naphtha,petroleum,hydrotreatedheavy / naphtha(petroleum),hydrotreatedheavy / Naphtha (petroleum), hydrotreated heavy Low boiling point hydrogen treated naphtha / ISOL H / ISSANE / IPOPAR G / SK-ISOL H", + "unNumber": "3295", "casNumber": "64742-48-9", "transportMethod": "", "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", + "usage": "산업용 용제, 페인트, 방향제", + "state": "액체", + "color": "무색, 투명", + "odor": "무취", + "flashPoint": "7℃", + "autoIgnition": "395℃", + "boilingPoint": "115-1401:", + "density": "0.742(15.6’C)", + "solubility": "불용", + "vaporPressure": "17.77mmHg(20t)", + "vaporDensity": "4.1", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "해양환경관리법/기름", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유증발 (FE)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 - 의료조치, 토하게 하지 말 것, 신선한 곳= 이동, 산소공급. 인공호흡 피부접촉 • 화상의 경우 차가운 물로 씻을 것, 비누와 물로 씻을 것 안구접촉 - 긴급 의료조치, 20분 이상 흐르는 물에 씻을 것 경구섭취 • 긴급 의료조치, 토하게 하지 말 것 초동 대응방법 보호복 호홉구 보안경 보호장갑 기타장비 대 3,4형식 (C급) 방독마스크(반면, 전면) O O 열화상카메라 I 초기 이격거리 (m) 50 방호거리(m) 300 ► 유출물질은 고인화성 물질로 증기의 야동에 의한 폭발 가능성이 높으며, 눈 자극올 일으킬 수 있으므로 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지. 주변선박 통제 (홉연. 물꽃, 스파크 등 모든 점화원 제거) 해상유출시 ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용, 증기흡입과 피부와 눈에 접촉올 피할 것 ► 유출물질은 부유하면서 증발하므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 I 화재 시 대피거리 (m) TO ►유출물질은 연소시 유독가스 방출, 풍상에 위치, 최소 이격거리 유지하고 내알콜포 이용 화재진", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -26229,19 +19109,61 @@ { "code": "AVKER", "name": "Avation kerosene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EXSD30", + "name": "EXXSOL D30", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EXSD40", + "name": "EXXSOL D40", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ISOPARG", + "name": "Isopar G", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ISOPARH", + "name": "Isopar H", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ISOPARL", + "name": "Isopar L", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ISOPARM", + "name": "Isopar M", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "KERO", + "name": "Kerosene", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 380, + "id": 220, "abbreviation": "AVO", "nameKr": "아보카도 오일", "nameEn": "Avocado oil", - "synonymsEn": "AVOCADO OIL / lipovala / VOCADO OIL / AVOCADO OIL / AVOCADOOILS / Oils, avocado / AVOCADO OLEUM / Oele, Avocado / AVOCADO-SEEDOIL / alligatorpearoil / REFINEDAVOCADOOIL", "synonymsKr": "아보카도오일 / 아보카도오일 / 아보카도오일글리세레스-8에스터", + "synonymsEn": "AVOCADO OIL / lipovala / VOCADO OIL / AVOCADO OIL / AVOCADOOILS / Oils, avocado / AVOCADO OLEUM / Oele, Avocado / AVOCADO-SEEDOIL / alligatorpearoil / REFINEDAVOCADOOIL", "unNumber": "", "casNumber": "8024-32-6", "transportMethod": "", @@ -26297,19 +19219,19 @@ { "code": "AVO", "name": "Avocado oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 381, + "id": 221, "abbreviation": "BBS", "nameKr": "바바수 오일", "nameEn": "Babassu oil", - "synonymsEn": "Oils, babassu / Oils, babassu / Oele, Babassu- / ORBIGNYA OLEIFERA SEED OIL / Fats and Glyceridic oils, babassu", "synonymsKr": "바바수씨오일 / 바바수씨오일 / 오일,바바수", + "synonymsEn": "Oils, babassu / Oils, babassu / Oele, Babassu- / ORBIGNYA OLEIFERA SEED OIL / Fats and Glyceridic oils, babassu", "unNumber": "", "casNumber": "91078-92-1", "transportMethod": "", @@ -26365,126 +19287,58 @@ { "code": "BBS", "name": "Babassu oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 382, - "abbreviation": "BN", - "nameKr": "벤젠", - "nameEn": "BENZENE", - "synonymsEn": "Benzene / Benzen / BENZOL / Benzene, OMniSolv(R) / Annulene / Pure benzene / PHENE / Benzeen / Benzol,HPLC Grade / anhydrous benzene / Benzene, PestiSolv®", - "synonymsKr": "벤젠 / 벤젠 / 벤졸렌 / 석탄나프타 / 시클로헥사트리엔 / 아눌렌 / 콜타르나프타 / 탄소오일 / 페닐수화 / 펜 / 피로벤졸 / 벤졸 / 싸이클로헥사트라이엔 / 페닐 하이드리드", - "unNumber": "", - "casNumber": "71-43-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "BN", - "name": "BENZENE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 383, + "id": 222, "abbreviation": "NP", "nameKr": "노말 파라핀", "nameEn": "NOMAL PARAFFINS", + "synonymsKr": "노말파라핀(석유)", "synonymsEn": "NOMAL PARAFFINS C5-20", - "synonymsKr": "노말 파라핀C-5-20", "unNumber": "1268", - "casNumber": "64771-72-2", - "transportMethod": "", - "sebc": "", - "usage": "윤활유, 접착제, 세정제, 열에너지 저장 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", + "casNumber": "64771-72-8", + "transportMethod": "산적액체(Y류)", + "sebc": "F (Floater)", + "usage": "세척제, 소독제, 용제", + "state": "액체", + "color": "무색 ~흰색", + "odor": "자료없음", + "flashPoint": ">66℃", + "autoIgnition": "200℃", "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", + "density": "0.75(15℃)", + "solubility": "<1 mg/L (20℃)", + "vaporPressure": "<0.75 mmHg (20℃)", + "vaporDensity": "7.3", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Y", "ergNumber": "", - "idlh": "", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유 (F)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "부유성 석유 혼합물, 피부/흡입 자극", + "firstAid": "흡입노출 • 신선한 곳으로 이동, 긴급 의료조치, 산소공급, 인공호흡 피부접촉 • 긴급 의료조치, 20분 이상 흐르는 물에 씻을 것 으급조치 ° 안구접촉 • 긴급 의료조치,20분 이상 흐르는 물에씻을 것 경구섭취 •간급의료조치 _ !", + "fireFighting": "포말/분무주수/CO₂.", + "spillResponse": "오일펜스/흡착재로 회수.", + "exposure": "TWA 0.8 mg/㎥", "regulation": "" }, "ibcHazard": "", @@ -26493,67 +19347,67 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { "code": "NP", "name": "NOMAL PARAFFINS", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 384, + "id": 223, "abbreviation": "BNL", "nameKr": "파라핀 오일", "nameEn": "Banole oil", + "synonymsKr": "아데프신 기름 / 케리로션, 무거운 액체 바셀린 / 무거운 미네랄 기름 / 바셀린", "synonymsEn": "PARAFFIN / LIQUID PARAFFIN / OIL / PARAFFIN LIQUID / NUJOL / White Oil 4060 / LIGHT WHITE OIL / LIQUID PETROLATUM / PARAFFIN OIL LIGHT / MINERAL OIL, LIGHT / WK-I", - "synonymsKr": "파라핀유 / 탈취등유 / 탈취등유(비수용성) / 탈취등유(DEODORIZEDKEROSENE) / 탄화수소 오일류", "unNumber": "1270", "casNumber": "8012-95-1", - "transportMethod": "", - "sebc": "", - "usage": "세제, 화장품 등 원료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", + "transportMethod": "포장(9급), 산적액체(Y류)", + "sebc": "F (Floater)", + "usage": "세제, 소독제, 화장품. 단열재, 가소제 심한 눈 손상/자극성(구분2) V。 홉인유해성(구분1) 위험 물칠특성", + "state": "점성액체", + "color": "무색. 투명한색", + "odor": "무취", + "flashPoint": "1931℃", + "autoIgnition": "260~371.11℃", + "boilingPoint": "360℃", + "density": "0.82-0.89", + "solubility": "불용", + "vaporPressure": "(물 17.5nmHg)", + "vaporDensity": ">2", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Y", "ergNumber": "", - "idlh": "", + "idlh": "3", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "부유 (F)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "심한 눈 손상/자극성, 흡인 유해성", + "firstAid": "흡입노출 • 신선한 곳으로 옮김 피부접촉 • 다량의 물과 비누로 15분 이상 씻을 것 안구접촉 • 다량의 물로 씻을 것 경구섭취 • 의식이 있다면 환자에게 물 또는 우유를 줄 것", + "fireFighting": "분무주수/포말/CO₂.", + "spillResponse": "오일펜스/흡착재 회수.", + "exposure": "TWA 5 mg/㎥, STEL 10 mg/㎥, IDLH 2,500 mg/㎥", + "regulation": "CAS 8012-95-1" }, "ibcHazard": "", "ibcShipType": "", @@ -26561,41 +19415,47 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "BNL", "name": "Banole oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PFN", + "name": "Liquid parrafin", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 385, + "id": 224, "abbreviation": "BO60N", "nameKr": "BASE OIL", "nameEn": "Base oil 60N", - "synonymsEn": "Distillates (petroleum), hydrotreated middle / Exxsol D130 / Exxsol / Exxsol D95 / Exxsol D145 / Solvesso130 / Hydroseal G3H / C12-20 alkane / Hydroseal G400H / Hydroseal G240H / Hydroseal G232H", "synonymsKr": "수소처리된 중간 정제유 (석유) / 수소처리된중간정제유(석유) / 히드로처리된중간증류액 / 수소처리된중간정제유(석유)(DISTILLATES(PETROLEUM),HYDROTREATEDMIDDLE) / C12-20아이소파라핀 / C13-14알케인 / C13-15알케인 / 석유증류물,수소화처리중질 / 석유증류물,수소화처리중질,정제과정이완전히알려지고발암물질을함유하지않음을보여줄수있으면예외 / 증류액(석유),수소처리중간", + "synonymsEn": "Distillates (petroleum), hydrotreated middle / Exxsol D130 / Exxsol / Exxsol D95 / Exxsol D145 / Solvesso130 / Hydroseal G3H / C12-20 alkane / Hydroseal G400H / Hydroseal G240H / Hydroseal G232H", "unNumber": "", "casNumber": "64742-46-7", "transportMethod": "", "sebc": "", "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", + "state": "액체", + "color": "무색", + "odor": "탄화수소 냄새", + "flashPoint": "WC", + "autoIgnition": "자료없음", "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "density": "0,813", + "solubility": "1g/L(20'’C)", + "vaporPressure": "(물 55.3mmHg)", "vaporDensity": "", "explosionRange": "", "nfpa": { @@ -26604,15 +19464,15 @@ "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "해양환경관리법/기름", "ergNumber": "", - "idlh": "", + "idlh": "0 是)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", + "responseDistanceFire": "위험도", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유 (F)", "ppeClose": "", "ppeFar": "", "msds": { @@ -26637,87 +19497,19 @@ { "code": "BO60N", "name": "Base oil 60N", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 386, - "abbreviation": "BNUT", - "nameKr": "", - "nameEn": "Beechnut oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "BNUT", - "name": "Beechnut oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 387, + "id": 225, "abbreviation": "BWAX", "nameKr": "버즈왁스", "nameEn": "Beeswax", - "synonymsEn": "bee's wax / BEESWAX / WAX / CERA ALBA / WHITE BEESWAX / WHITE WAX / YELLOW BEESWAX / YELLOW WAX / Chinese wax / BEES WAX, NF / BEESWAX, YELLOW", "synonymsKr": "밀납(왁스) / BEES왁스 / 밀납 / 밀왁스 / 백왁스,황왁스,벌왁스 / 세라알바 / 밀납(왁스)", + "synonymsEn": "bee's wax / BEESWAX / WAX / CERA ALBA / WHITE BEESWAX / WHITE WAX / YELLOW BEESWAX / YELLOW WAX / Chinese wax / BEES WAX, NF / BEESWAX, YELLOW", "unNumber": "", "casNumber": "8012-89-3", "transportMethod": "", @@ -26773,87 +19565,19 @@ { "code": "BWAX", "name": "Beeswax", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 388, - "abbreviation": "BTMOL", - "nameKr": "비트당밀", - "nameEn": "Beet molasses", - "synonymsEn": "Molasses / tangmi / Molasses / Cane syrup / CANEMOLASSES / beet molasses / Molasses, beet / Einecs 270-698-1 / Beet sugar molasses / Molasses ISO 9001:2015 REACH", - "synonymsKr": "당밀 / 당밀 / molasses / 당밀", - "unNumber": "", - "casNumber": "68476-78-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "BTMOL", - "name": "Beet molasses", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 389, + "id": 226, "abbreviation": "BEHACID", "nameKr": "베헤닉산", "nameEn": "Behenic acid", - "synonymsEn": "Docosanoic acid / BEHENIC ACID / C22 / behenic / docosanoic / B95 / EXL5 / NAA22S / NAA222S / CHacid B / B95(acid)", "synonymsKr": "도코사노 산 / 도코사노산 / 도코사노산 / 베헤닉애씨드 / 1-도코사노 산 / n- 도코사노 산 / 도코사노 산 / 도코소 산 / 베헨 산", + "synonymsEn": "Docosanoic acid / BEHENIC ACID / C22 / behenic / docosanoic / B95 / EXL5 / NAA22S / NAA222S / CHacid B / B95(acid)", "unNumber": "", "casNumber": "112-85-6", "transportMethod": "", @@ -26909,155 +19633,19 @@ { "code": "BEHACID", "name": "Behenic acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 390, - "abbreviation": "BZN", - "nameKr": "벤젠", - "nameEn": "Benzene", - "synonymsEn": "Benzene / Benzen / BENZOL / Benzene, OMniSolv(R) / Annulene / Pure benzene / PHENE / Benzeen / Benzol,HPLC Grade / anhydrous benzene / Benzene, PestiSolv®", - "synonymsKr": "벤젠 / 벤젠 / 벤졸렌 / 석탄나프타 / 시클로헥사트리엔 / 아눌렌 / 콜타르나프타 / 탄소오일 / 페닐수화 / 펜 / 피로벤졸 / 벤졸 / 싸이클로헥사트라이엔 / 페닐 하이드리드", - "unNumber": "", - "casNumber": "71-43-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "BZN", - "name": "Benzene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 391, - "abbreviation": "BZLA", - "nameKr": "벤젠 알코올", - "nameEn": "Benzyl alcohol", - "synonymsEn": "Benzyl alcohol / BnOH / PHENYLMETHANOL / BENZENEMETHANOL / benjiachun / Benzylalkohol / PHENYLCARBINOL / Benzyl alcoholl / Natural benzyl alcohol / FEMA 2137 / benzalalcohol", - "synonymsKr": "벤질 알코올 / 벤질알코올 / (하이드록시메틸)벤젠 / 벤젠메탄올 / 알BENZENEMETHANOL / 알파-하이드록시톨루엔 / 페닐메틸알코올 / 페닐카빈올 / 벤젠카빈올 / 벤질알콜 / 벤질알코올 / 알파-톨루엔올 / 페닐메탄올 / 페닐메틸 알코올", - "unNumber": "", - "casNumber": "100-51-6", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "T", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "BZLA", - "name": "Benzyl alcohol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 392, + "id": 227, "abbreviation": "BLMLSS", "nameKr": "블랙스트램 몰래시", "nameEn": "Blackstrap molasses", - "synonymsEn": "Molasses, blackstrap / / SOYMOLASSES / CORNMOLASSES / WOODMOLASSES / SOYBEANMOLASSES / Einecs 232-487-2 / Blackstrap molasses / Molasses, blackstrap", "synonymsKr": "블랙스트램 몰래시", + "synonymsEn": "Molasses, blackstrap / SOYMOLASSES / CORNMOLASSES / WOODMOLASSES / SOYBEANMOLASSES / Einecs 232-487-2 / Blackstrap molasses / Molasses, blackstrap", "unNumber": "", "casNumber": "8052-35-5", "transportMethod": "", @@ -27113,19 +19701,19 @@ { "code": "BLMLSS", "name": "Blackstrap molasses", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 393, + "id": 228, "abbreviation": "BSAFF", "nameKr": "해바라기씨 오일 혼합물", "nameEn": "Blend safflowerseed oil", - "synonymsEn": "SUNFLOWER SEED OIL / SUNFLOWER OIL / HELIANTHUS ANNUUS (SUNFLOWER) SEED OIL / Helianthus annuus oil / Organic Sunflower Oil / SUNFLOWER (HELIANTHUS ANNUUS) OIL / Gina / Haioru 75B / Florasun 90 / Sonnenblumenoel / Gina (glyceride)", "synonymsKr": "해바라기씨 오일 혼합물", + "synonymsEn": "SUNFLOWER SEED OIL / SUNFLOWER OIL / HELIANTHUS ANNUUS (SUNFLOWER) SEED OIL / Helianthus annuus oil / Organic Sunflower Oil / SUNFLOWER (HELIANTHUS ANNUUS) OIL / Gina / Haioru 75B / Florasun 90 / Sonnenblumenoel / Gina (glyceride)", "unNumber": "", "casNumber": "8001-21-6", "transportMethod": "", @@ -27181,21 +19769,51 @@ { "code": "BSAFF", "name": "Blend safflowerseed oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CSAFF", + "name": "Crude safflowerseed oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CSUN", + "name": "Crude sunflowerseed oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NUSUN", + "name": "NU Sunflower", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "OLSAFF", + "name": "Oleric saflower", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RSUN", + "name": "Refined Sunflowerseed oil", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 394, + "id": 229, "abbreviation": "BFLD", "nameKr": "브레이크액", "nameEn": "Brake fluid", - "synonymsEn": "TRIETHYLENE GLYCOL MONOBUTYL ETHER / BUTYL TRIGLYCOL / ethe / Butoxytriglycol / BUTYL TRIGLYCOL ETHER / dowanoltbat / poly-solvtb / triethylene glycol butyl ester / 2-[2-(2-BUTOXYETHOXY)ETHOXY]ETHANOL / BTG / TriEGBE", "synonymsKr": "트리에틸렌 글리콜 모노뷰틸 에테르 / 트리에틸렌글리콜모노뷰틸에테르 / 트리에틸렌글리콜모노뷰틸에테르 / 3,6,9-트라이옥사트라이데칸-1-올 / 부톡시트라이글리콜 / 부톡시트라이에틸렌 글리콜 / 뷰틸 260 / 뷰틸 트라이에톡솔 / 뷰틸트라이글리콜 / 트라이글리콜 모노뷰틸 에테르 / 트라이에틸렌 글리콜 모노뷰틸 에테르 / 트라이에틸렌 글리콜 뷰틸 에테르 / 폴리-솔브 TB / 부톡시트리에틸렌글리콜", + "synonymsEn": "TRIETHYLENE GLYCOL MONOBUTYL ETHER / BUTYL TRIGLYCOL / ethe / Butoxytriglycol / BUTYL TRIGLYCOL ETHER / dowanoltbat / poly-solvtb / triethylene glycol butyl ester / 2-[2-(2-BUTOXYETHOXY)ETHOXY]ETHANOL / BTG / TriEGBE", "unNumber": "", - "casNumber": "143-22-6 8052-32-6", + "casNumber": "143-22-6\n8052-32-6", "transportMethod": "", "sebc": "", "usage": "", @@ -27249,19 +19867,19 @@ { "code": "BFLD", "name": "Brake fluid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 395, + "id": 230, "abbreviation": "BFDOT3", "nameKr": "브레이크액", "nameEn": "Brake fluid DOT3", - "synonymsEn": "TRIETHYLENE GLYCOL MONOBUTYL ETHER / BUTYL TRIGLYCOL / ethe / Butoxytriglycol / BUTYL TRIGLYCOL ETHER / dowanoltbat / poly-solvtb / triethylene glycol butyl ester / 2-[2-(2-BUTOXYETHOXY)ETHOXY]ETHANOL / BTG / TriEGBE", "synonymsKr": "트리에틸렌 글리콜 모노뷰틸 에테르 / 트리에틸렌글리콜모노뷰틸에테르 / 트리에틸렌글리콜모노뷰틸에테르 / 3,6,9-트라이옥사트라이데칸-1-올 / 부톡시트라이글리콜 / 부톡시트라이에틸렌 글리콜 / 뷰틸 260 / 뷰틸 트라이에톡솔 / 뷰틸트라이글리콜 / 트라이글리콜 모노뷰틸 에테르 / 트라이에틸렌 글리콜 모노뷰틸 에테르 / 트라이에틸렌 글리콜 뷰틸 에테르 / 폴리-솔브 TB / 부톡시트리에틸렌글리콜", + "synonymsEn": "TRIETHYLENE GLYCOL MONOBUTYL ETHER / BUTYL TRIGLYCOL / ethe / Butoxytriglycol / BUTYL TRIGLYCOL ETHER / dowanoltbat / poly-solvtb / triethylene glycol butyl ester / 2-[2-(2-BUTOXYETHOXY)ETHOXY]ETHANOL / BTG / TriEGBE", "unNumber": "", "casNumber": "143-22-6", "transportMethod": "", @@ -27317,223 +19935,19 @@ { "code": "BFDOT3", "name": "Brake fluid DOT3", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 396, - "abbreviation": "BS150N", - "nameKr": "브라이트 스톡(고점도 윤활유 조합재료)", - "nameEn": "Brightstock 150N", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 디메칠설폭사이드(DMSO)로추출한성분을3%초과하여함유하고있는석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 유압유체", - "unNumber": "", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "BS150N", - "name": "Brightstock 150N", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 397, - "abbreviation": "BS500N", - "nameKr": "브라이트 스톡(고점도 윤활유 조합재료)", - "nameEn": "Brightstock 500N", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 디메칠설폭사이드(DMSO)로추출한성분을3%초과하여함유하고있는석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 유압유체", - "unNumber": "", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "BS500N", - "name": "Brightstock 500N", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 398, - "abbreviation": "BACE", - "nameKr": "초산 부틸", - "nameEn": "Butyl acetate", - "synonymsEn": "Butyl acetate / N-BUTYL ACETATE / ACETIC ACID BUTYL ESTER / Acetic acid butyl / Butylacetat / Butyl ethanoate / Butyle / butylacetates / Butile / BUTYLE ACETATE / 1-Butyl acetate", - "synonymsKr": "아세트산부틸 / 아세트산부틸 / n-부틸아세트산 / n-뷰틸아세트산 / 부틸에탄산 / 뷰틸아세트산 / 초산부틸 / 초산n-부틸 / 부틸아세테이트 / 부틸아세테이트(B.A) / 부틸아세트산 / 초산부틸 / N-뷰틸 아세테이트 / 뷰틸 아세테이트 / 뷰틸 에타노에이트 / 아세트산 n-뷰틸 에스터 / 1-부틸아세테이트", - "unNumber": "", - "casNumber": "123-86-4", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "BACE", - "name": "Butyl acetate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 399, - "abbreviation": "BMA", - "nameKr": "부틸 메타크릴산염", - "nameEn": "Butyl methacrylate", - "synonymsEn": "Butyl methacrylate / bma / N-BUTYL METHACRYLATE / n-BMA / 2-Propenoic acid, 2-methyl-, butyl ester / 2-Methyl-2-propenoic acid butyl ester / butilmetacrilato / Butil metacrilato / Butylmethacrylaat / BUTYL METHACRYLATE / 1-BUTYLMETHACRYLATE", + "id": 231, + "abbreviation": "NBMA", + "nameKr": "n-뷰틸 메타크릴레이트", + "nameEn": "n-Butyl methacrylate", "synonymsKr": "N-뷰틸 메타크릴레이트 / N-뷰틸메타크릴레이트 / N-부틸알파-메타크릴산 / 메타크릴METHACRYLICACID,BUTYLESTER / 부틸2-메타크릴산 / 부틸-2-메틸-2-프로펜산 / N-부틸메타크릴산 / 메타아크릴산뷰틸 / 메타크릴산n-부틸 / 메트아크릴산,부틸에스테르 / 부틸메타크릴레이트 / N-뷰틸 메타크릴레이트", + "synonymsEn": "Butyl methacrylate / bma / N-BUTYL METHACRYLATE / n-BMA / 2-Propenoic acid, 2-methyl-, butyl ester / 2-Methyl-2-propenoic acid butyl ester / butilmetacrilato / Butil metacrilato / Butylmethacrylaat / BUTYL METHACRYLATE / 1-BUTYLMETHACRYLATE", "unNumber": "", "casNumber": "97-88-1", "transportMethod": "", @@ -27575,12 +19989,12 @@ "exposure": "", "regulation": "" }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "F", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.13, 15.19.6, 16.6.1, 16.6.2", + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -27589,223 +20003,31 @@ { "code": "BMA", "name": "Butyl methacrylate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 400, - "abbreviation": "BMRIST", - "nameKr": "부틸 미리스트산염", - "nameEn": "Butyl myristate", - "synonymsEn": "Butyl methacrylate / bma / N-BUTYL METHACRYLATE / n-BMA / 2-Propenoic acid, 2-methyl-, butyl ester / 2-Methyl-2-propenoic acid butyl ester / butilmetacrilato / Butil metacrilato / Butylmethacrylaat / BUTYL METHACRYLATE / 1-BUTYLMETHACRYLATE", - "synonymsKr": "N-뷰틸 메타크릴레이트 / N-뷰틸메타크릴레이트 / N-부틸알파-메타크릴산 / 메타크릴METHACRYLICACID,BUTYLESTER / 부틸2-메타크릴산 / 부틸-2-메틸-2-프로펜산 / N-부틸메타크릴산 / 메타아크릴산뷰틸 / 메타크릴산n-부틸 / 메트아크릴산,부틸에스테르 / 부틸메타크릴레이트 / N-뷰틸 메타크릴레이트", - "unNumber": "", - "casNumber": "97-88-1", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "BMRIST", "name": "Butyl myristate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 401, - "abbreviation": "BOL", - "nameKr": "2-부톡시에탄올", - "nameEn": "Butyl oxitol", - "synonymsEn": "2-Butoxyethanol / BUTYL GLYCOL / Ethanol, 2-butoxy- / BUTYL CELLOSOLVE / ETHYLENE GLYCOL MONOBUTYL ETHER / BUTOXYETHANOL / BUTYL OXITOL / ETHYLENE GLYCOL BUTYL ETHER / egbe / GLYCOL ETHER EB / 2-be", - "synonymsKr": "에틸렌글리콜모노부틸에테르 / 부틸-β-히드록시에틸에테르 / 2-부톡시에탄올 / 모노부틸글리콜 / 부틸셀로솔브 / 부틸옥시톨 / 뷰틸셀로솔브 / 에틸렌글리콜모노부틸에테르 / 부톡시에탄올 / 에틸렌 글리콜 모노-N-뷰틸 에테르", - "unNumber": "2810", - "casNumber": "111-76-2", - "transportMethod": "", - "sebc": "", - "usage": "페인트, 잉크, 세정제, 화장품, 농약 등 다양한 산업 및 일상생활에서 용매, 세정제, 가소제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "BOL", - "name": "Butyl oxitol", - "company": "", - "source": "화물적부도" + "code": "NBMA", + "name": "n-Butyl methacrylate", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 402, - "abbreviation": "BDG", - "nameKr": "부틸클리콜", - "nameEn": "Butyldiglycol", - "synonymsEn": "Diethylene glycol monobutyl ether / DIETHYLENE GLYCOL MONOBUTYL ETHER / DB / BUTYL CARBITOL / BUTYLDIGLYCOL / 2-(2-BUTOXYETHOXY)ETHANOL / Ethanol, 2-(2-butoxyethoxy)- / DIETHYLENE GLYCOL BUTYL ETHER / DGBE / Butoxyethoxyethanol / DIETHYLENE GLYCOL MONO-N-BUTYL ETHER", - "synonymsKr": "부틸글리콜 / 다이에틸렌글라이콜모노-N-뷰틸에테르 / 2-(2-부톡시에톡시)에탄올 / 부톡시디에틸렌글리콜 / 부틸옥시BUTOXYDIGLYCOL / 부틸카르비톨 / 다이에틸렌글리콜모노뷰틸에테르 / 디에틸렌글리콜모노부틸에테르 / 부틸글리콜 / 뷰틸캐비톨 / 부틸카비톨 / 다이에틸렌글리콜모노뷰틸에테르 / 부톡시다이글라이콜 / 다이에틸렌 글라이콜 모노-N-뷰틸 에테르", - "unNumber": "2810", - "casNumber": "112-34-5", - "transportMethod": "", - "sebc": "", - "usage": "용매, 보습제, 유화제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "BDG", - "name": "Butyldiglycol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 403, + "id": 232, "abbreviation": "BTRACID", "nameKr": "닉산 / 부티르산", "nameEn": "Butyric acid", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "107-92-6", "transportMethod": "", @@ -27848,11 +20070,11 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "No", + "ibcDetection": "O", "ibcFireFighting": "AC", - "ibcMinRequirement": "15.11.2, 15.11.3, 15.11.4, 15.11.6, 15.11.7, 15.11.8, 15.19.6", + "ibcMinRequirement": "15.11.2, 15.11.3, 15.11.4,\n15.11.6, 15.11.7, 15.11.8,\n15.19.6", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -27861,19 +20083,25 @@ { "code": "BTRACID", "name": "Butyric acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NBRA", + "name": "n-Butyric acid", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 404, + "id": 233, "abbreviation": "B.LACTN", "nameKr": "부티로락톤", "nameEn": "Butyrolactone", - "synonymsEn": "Gamma Butyrolactone / GBL / BUTYROLACTONE / GAMMA-BUTYROLACTONE / Dihydrofuran-2(3H)-one / γ-Butyrolactone / G-BUTYROLACTONE / Dihydro-2(3H)-furanone / 1,4-BUTYROLACTONE / 4-HYDROXYBUTANOIC ACID LACTONE / Y-BUTYROLACTONE", "synonymsKr": "뷰티로락톤 / γ-부틸올락톤 / 뷰틸로락톤 / 뷰티로락톤 / 감마부티로락톤 / 감마-부티로락톤 / 부티로락톤", + "synonymsEn": "Gamma Butyrolactone / GBL / BUTYROLACTONE / GAMMA-BUTYROLACTONE / Dihydrofuran-2(3H)-one / γ-Butyrolactone / G-BUTYROLACTONE / Dihydro-2(3H)-furanone / 1,4-BUTYROLACTONE / 4-HYDROXYBUTANOIC ACID LACTONE / Y-BUTYROLACTONE", "unNumber": "", "casNumber": "96-48-0", "transportMethod": "", @@ -27929,359 +20157,19 @@ { "code": "B.LACTN", "name": "Butyrolactone", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 405, - "abbreviation": "C10", - "nameKr": "", - "nameEn": "C10", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "C10", - "name": "C10", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 406, - "abbreviation": "C6CUT", - "nameKr": "", - "nameEn": "C6 CUT", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "C6CUT", - "name": "C6 CUT", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 407, - "abbreviation": "C6/7GAS", - "nameKr": "", - "nameEn": "C6/C7 Gasoline", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "C6/7GAS", - "name": "C6/C7 Gasoline", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 408, - "abbreviation": "C7/8MIX", - "nameKr": "", - "nameEn": "C7-C8 mixture", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "C7/8MIX", - "name": "C7-C8 mixture", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 409, - "abbreviation": "C9/11ACL", - "nameKr": "", - "nameEn": "C9-C11 alcohol", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "C9/11ACL", - "name": "C9-C11 alcohol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 410, + "id": 234, "abbreviation": "CAAN", "nameKr": "질산암모늄칼슘", "nameEn": "Calcium ammonium nitrate", - "synonymsEn": "Calcium nitrate / CA(NO3)2 / Calcium nitrate anhydrous / synfat1006 / nitrocalcite / limesaltpeter / Calciumnitrat / norgesaltpeter / norwaysaltpeter / CALCIUM NITRATE / calciumsaltpeter", "synonymsKr": "질산 칼슘 / 질산칼슘 / 질산석회 / 칼슘디질산염 / 노르웨이염종이 / 석회질산 / 칼슘질산(1:2) / 질산칼슘 / 칼슘 질산염", + "synonymsEn": "Calcium nitrate / CA(NO3)2 / Calcium nitrate anhydrous / synfat1006 / nitrocalcite / limesaltpeter / Calciumnitrat / norgesaltpeter / norwaysaltpeter / CALCIUM NITRATE / calciumsaltpeter", "unNumber": "", "casNumber": "10124-37-5", "transportMethod": "", @@ -28337,21 +20225,21 @@ { "code": "CAAN", "name": "Calcium ammonium nitrate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 411, + "id": 235, "abbreviation": "CBRMD", "nameKr": "브로민화 칼슘", "nameEn": "Calcium bromide", - "synonymsEn": "Calcium bromide / CaBr2 / Brocal / C13189 / Dibromocalcium / CALCIUM BROMIDE / calciumdibromide / CALCIUM BROMIDE 52% / Calcium bromide,98% / CALCIUM (II) BROMIDE / calciumbromide(cabr2)", "synonymsKr": "브롬화칼슘 / 브롬화칼슘", + "synonymsEn": "Calcium bromide / CaBr2 / Brocal / C13189 / Dibromocalcium / CALCIUM BROMIDE / calciumdibromide / CALCIUM BROMIDE 52% / Calcium bromide,98% / CALCIUM (II) BROMIDE / calciumbromide(cabr2)", "unNumber": "", - "casNumber": "7789-41-5 22208-73-7", + "casNumber": "7789-41-5\n22208-73-7", "transportMethod": "", "sebc": "", "usage": "", @@ -28405,19 +20293,19 @@ { "code": "CBRMD", "name": "Calcium bromide", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 412, + "id": 236, "abbreviation": "CCLL", "nameKr": "칼슘 염화물", "nameEn": "Calcium chlorine liqueur", - "synonymsEn": "Calcium chloride / CaCl2 / Anhydrous calcium chloride / CalciuM Cloride / Calcium chloride fused / Calciumchlorid / CALCIUM CHLORIDE POWDER / CALCIUM CHLORIDE FLAKES / Calcium chloride pellets / Calcium chloride,aqueous solution / CALCIUM CHLORIDE POWDER ANHYDROUS", "synonymsKr": "염화칼슘 / 염화석회 / 우르아민MC / 칼슘이염화물CALCOSAN / 칼코산 / 염화칼슘 / 염화칼슘(건조용) / 클로로칼슘 / 클로로칼슘 / 염화석회 / 칼코산 / 우르아민MC / 칼슘이염화물 / 염화칼슘(CALCIUMCHLORIDE) / 칼슘클로라이드 / 염화 칼슘 / 이염화 칼슘", + "synonymsEn": "Calcium chloride / CaCl2 / Anhydrous calcium chloride / CalciuM Cloride / Calcium chloride fused / Calciumchlorid / CALCIUM CHLORIDE POWDER / CALCIUM CHLORIDE FLAKES / Calcium chloride pellets / Calcium chloride,aqueous solution / CALCIUM CHLORIDE POWDER ANHYDROUS", "unNumber": "", "casNumber": "10043-52-4", "transportMethod": "", @@ -28473,19 +20361,19 @@ { "code": "CCLL", "name": "Calcium chlorine liqueur", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 413, + "id": 237, "abbreviation": "CNR", "nameKr": "질산칼슘", "nameEn": "Calcium nitrate", - "synonymsEn": "Calcium nitrate tetrahydrate / CALCIUM NITRATE, TETRAHYDRATE BIO-REFINED / CA NITRATE / Lime nitrate / dusicnanvapenaty / ACS reagent, 99% / CalciumNitrateA.R. / CalciumNitrate,>98% / CALCIUM NITRATE XTL / CALCIUM NITRATE 4H2O / CALCIUM NITRATE, ACS", "synonymsKr": "칼슘 질산, 테트라수화물 / 노르웨이염종이 / 석회질산 / 칼슘디질산염 / 칼슘질산(1:2)LIMENITRATE / 질산석회 / 칼슘질산,테트라수화물 / 칼슘질산,테트라수화물(CALCIUMNITRATE,TETRAHYDRATE)", + "synonymsEn": "Calcium nitrate tetrahydrate / CALCIUM NITRATE, TETRAHYDRATE BIO-REFINED / CA NITRATE / Lime nitrate / dusicnanvapenaty / ACS reagent, 99% / CalciumNitrateA.R. / CalciumNitrate,>98% / CALCIUM NITRATE XTL / CALCIUM NITRATE 4H2O / CALCIUM NITRATE, ACS", "unNumber": "", "casNumber": "13477-34-4", "transportMethod": "", @@ -28541,87 +20429,19 @@ { "code": "CNR", "name": "Calcium nitrate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 414, - "abbreviation": "CNPACID", - "nameKr": "", - "nameEn": "Calium nitrophosphoric acid", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CNPACID", - "name": "Calium nitrophosphoric acid", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 415, + "id": 238, "abbreviation": "LIG", "nameKr": "칼슘 리그노술폰산염", "nameEn": "Calsium lignosulphonate", - "synonymsEn": "LIGNOSULFONIC ACID, CALCIUM SALT / CELLULOSE SULPHITE / alciuM lignosulfonate / calium lignosulfonate / CALCIUM LIGNOSULFONATE / LIGNOSULFONIC ACID, CA / calciumligninsulphonate / Calcium lignosulphonate / calcium lignosulohonate / Calcium Ligninsulfonate / calcium lignin salfonate", "synonymsKr": "칼슘 리그노설포네이트 / 칼슘리그노설포네이트 / 리그닌술폰산칼슘 / 칼슘리그노설포네이트 / 리그노설폰산, 칼슘 염 / 리그닌 칼슘 설포네이트 / 리그닌설폰산, 칼슘 염 / 설폰화 리그닌 칼슘 염 / 칼슘 리그노설포네이트", + "synonymsEn": "LIGNOSULFONIC ACID, CALCIUM SALT / CELLULOSE SULPHITE / alciuM lignosulfonate / calium lignosulfonate / CALCIUM LIGNOSULFONATE / LIGNOSULFONIC ACID, CA / calciumligninsulphonate / Calcium lignosulphonate / calcium lignosulohonate / Calcium Ligninsulfonate / calcium lignin salfonate", "unNumber": "", "casNumber": "8061-52-7", "transportMethod": "", @@ -28677,19 +20497,19 @@ { "code": "LIG", "name": "Calsium lignosulphonate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 416, + "id": 239, "abbreviation": "CASUFF", "nameKr": "칼슘 장쇄 알킬아릴 설포네이트", "nameEn": "Calsium long chain alkaryl suffonate", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "722503-69-7", "transportMethod": "", @@ -28745,127 +20565,59 @@ { "code": "CASUFF", "name": "Calsium long chain alkaryl suffonate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 417, - "abbreviation": "CPH", - "nameKr": "캠퍼 오일", - "nameEn": "Camphor oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "1", - "casNumber": "8008-51-3", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CPH", - "name": "Camphor oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 418, - "abbreviation": "DRSO", - "nameKr": "캐네디언 탈유", - "nameEn": "Canadian degummed rape seed oil", + "id": 240, + "abbreviation": "RBDRSO", + "nameKr": "정제, 탈색, 탈취 공정을 거친 유채 오일", + "nameEn": "RBD Rapeseed oil", + "synonymsKr": "유채기름, 채종유, 카놀라유, 코다시드 오일", "synonymsEn": "RAPESEED OIL / Rapeoil / Rapsoel / AKOREX L / rapedoil / COLZAOIL / RAPESEED OIL / rapessed oil / USRAPESEEDOIL / LIPEX CANOLA-U / NEWRAPESEEDOIL", - "synonymsKr": "RAPE종자 기름 / RAPE종자기름 / 유채기름 / 유채기름 / 유채씨오일 / 카놀라오일", "unNumber": "", "casNumber": "8002-13-9", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", + "transportMethod": "산적액체(Y류)", + "sebc": "F (Floater)", + "usage": "화재 (위험성) O (낮음) 인화점 끓는점 상온상태 냄새 증기압 점도 자료없음 - 식용(백교유, 사라다유), 식쭉가공용, 경화유. 담금질유, 감마용 만성 수생환경 유해성 : 구분2 물칠톡성", + "state": "액체", + "color": "노란색에서 갈색", + "odor": "노란", + "flashPoint": "WC", + "autoIgnition": "447℃", "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "density": "0.906", + "solubility": "불용", + "vaporPressure": "(물 23.8mHg)", "vaporDensity": "", "explosionRange": "", "nfpa": { "health": 0, - "fire": 0, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "지속성 부유(F), 해상수거 필요", "ergNumber": "", - "idlh": "", + "idlh": "0 뷴)", "aegl2": "", "erpg2": "", "responseDistanceFire": "", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "희발성", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "식용유, 연소 시 매운 연기 및 독성의 일산화탄소 가스 방출", + "firstAid": "흡입노출 - 신선한 곳으로 옮김, 인공호흡, 호흡곤란 시 산소투입 피부접촉 . 20분 이상 흐흐는 물에 눈을 씻을 것, 오염된 옷과 신발 제거 안구접촉 • 20분 이상 흐로는 물에 눈을 씻을 것 경구섭취 • 의식이 없으면 아무것도 먹이지 말 것, 의료조치 초동 대응방법 대응장비 보호복 5,6 형식 (일회용방제복) 호흡구 보안경 방진마스크 O 보호장갑 0 기타장비 열화상카메라 1 초기 이격거리(m) 자료없음 방호거리 (m) 자료없음 1 ► 유출물질은 물에 녹지 않고 부유, 오일펜스 설치 확산방지 해상유츨시 ►오일펜스 설치, 뜰채, 유흡착재 등 이용 유출물질 회수조치 ■ X- 유출물질은 미끄러우므로 방제작업 시 안전주의 ► 출동 경비정(방제정) 방진마스크를 포함한 5,6형식 보호의 착용, 증기홉입과 피부와 눈에 접촉을 피할 것 I 화재 시대피거리(m) 자료없호 + ►유출물질은 연소시 유독가스 방출, 풍상에 위치, 내알콜포 이용 화재진압 화재•포발시 ► 열화상카메라 운용(결과전파), 소화포 이용 사고선 냉각조치 할 것 ►직수분사 금지(화재를 번지게 할수 있음) ► 안전이 확보되면, 화학방제함 또는 예인선 동원 긴급예인 조치 285", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 내알코올 포말.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 부유(F)되어 내화학흡착재 등 이용 흡착제거.", "exposure": "", - "regulation": "" + "regulation": "CAS 8002-13-9" }, "ibcHazard": "", "ibcShipType": "", @@ -28873,27 +20625,69 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "DRSO", "name": "Canadian degummed rape seed oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CHERSO", + "name": "Crude high erucic rapeseed oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CRSO", + "name": "Crude rapeseed oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "FRRSO", + "name": "Fully refined rapeseed oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HEARSO", + "name": "HEA Rapeseed oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RSAO", + "name": "Rapeseed acid oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RBDRSO", + "name": "RBD Rapeseed oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RRSO", + "name": "Refined Rapeseed oil", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 419, + "id": 241, "abbreviation": "CANWAX", "nameKr": "칸데릴라 왁스", "nameEn": "Candelilla wax", - "synonymsEn": "CANDELILLA WAX / E 902 / MD 21 / SP 75 / FR 100 / NC 1630 / FEMA 3479 / MK 2 (wax) / CANDELLILAWAX / Candelila Wax / Candeliila wax", "synonymsKr": "칸데릴라 왁스 / 칸데릴라왁스 / 칸데릴라왁스", + "synonymsEn": "CANDELILLA WAX / E 902 / MD 21 / SP 75 / FR 100 / NC 1630 / FEMA 3479 / MK 2 (wax) / CANDELLILAWAX / Candelila Wax / Candeliila wax", "unNumber": "", "casNumber": "8006-44-8", "transportMethod": "", @@ -28949,19 +20743,19 @@ { "code": "CANWAX", "name": "Candelilla wax", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 420, + "id": 242, "abbreviation": "CPRA", "nameKr": "카프릭산", "nameEn": "Capric acid", - "synonymsEn": "Decanoic acid / N-DECANOIC ACID / CAPRIC ACID / Decoic acid / C10:0 / acid c-10 / n-decoicacid / Caprynic acid / CAPRINIC ACID / caprate (10:0) / 1-decanoic acid", "synonymsKr": "카프린산 / 데칸산 / 카프린산 / 카프릭산 / 카프르산 / 카프릭애씨드 / 1-노난카르복실산", + "synonymsEn": "Decanoic acid / N-DECANOIC ACID / CAPRIC ACID / Decoic acid / C10:0 / acid c-10 / n-decoicacid / Caprynic acid / CAPRINIC ACID / caprate (10:0) / 1-decanoic acid", "unNumber": "", "casNumber": "334-48-5", "transportMethod": "", @@ -29017,19 +20811,19 @@ { "code": "CPRA", "name": "Capric acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 421, + "id": 243, "abbreviation": "CLM", "nameKr": "카프로락탐", "nameEn": "Caprolactam", - "synonymsEn": "Caprolactam / EPSILON-CAPROLACTAM / CPL / ε-Caprolactam / E-CAPROLACTAM / PA 6 / Akulon / Capron / Stilon / Alkamid / enimine", "synonymsKr": "카프로락탐 / 카프로락탐 / 아미노카프로익 락탐 / 아제판-2-온 / 엡실론-카프로락탐 / 헥사하이드로-2H-아제핀-2-온 / 6-카프로락탐", + "synonymsEn": "Caprolactam / EPSILON-CAPROLACTAM / CPL / ε-Caprolactam / E-CAPROLACTAM / PA 6 / Akulon / Capron / Stilon / Alkamid / enimine", "unNumber": "", "casNumber": "105-60-2", "transportMethod": "", @@ -29085,19 +20879,19 @@ { "code": "CLM", "name": "Caprolactam", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 422, + "id": 244, "abbreviation": "CPLA", "nameKr": "카프릴산", "nameEn": "Caprylic acid", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "124-07-2", "transportMethod": "", @@ -29153,359 +20947,19 @@ { "code": "CPLA", "name": "Caprylic acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 423, - "abbreviation": "SC5601", - "nameKr": "", - "nameEn": "Caradol SC56-01", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SC5601", - "name": "Caradol SC56-01", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 424, - "abbreviation": "SC5602", - "nameKr": "", - "nameEn": "Caradol SC56-02", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SC5602", - "name": "Caradol SC56-02", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 425, - "abbreviation": "SC5616", - "nameKr": "", - "nameEn": "Caradol SC56-16", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SC5616", - "name": "Caradol SC56-16", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 426, - "abbreviation": "SP4303", - "nameKr": "", - "nameEn": "Caradol SP43-03", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SP4303", - "name": "Caradol SP43-03", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 427, - "abbreviation": "CRDL", - "nameKr": "", - "nameEn": "Caradols", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CRDL", - "name": "Caradols", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 428, + "id": 245, "abbreviation": "CBLC", "nameKr": "카르볼산 기름", "nameEn": "Carbolic oil", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "8002-07-1", "transportMethod": "", @@ -29548,9 +21002,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.12, 15.17, 15.19, 16.2.9", "emsCode": "", @@ -29561,19 +21015,19 @@ { "code": "CBLC", "name": "Carbolic oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 429, + "id": 246, "abbreviation": "CDS", "nameKr": "이황화탄소", "nameEn": "Carbon disulfide", - "synonymsEn": "Carbon disulfide / CS2 / CARBON DISULPHIDE / CARBON DISULFID / Carbon sulfide / Carbon sulfide (CS2) / CARBON DISULFIDE 100MG NEAT / CLSTN2 / Weeviltox / NCI-C04591 / 99.9% (GC)", "synonymsKr": "이황화탄소 / 이황화탄소 / 디티오탄소무수물 / 설포탄소무수물 / 이유화탄소CARBONBISULFIDE / 탄소황화합물 / 탄소디황화합물 / 탄소비황화합물 / 탄소이황화합물 / 셀룰로오스나트륨글리콜산염 / 나트륨카르복시메틸셀룰로오스 / 카르복시메틸셀루로오스나트륨 / 카르복 / 카본다이설파이드 / 이황화 탄소", + "synonymsEn": "Carbon disulfide / CS2 / CARBON DISULPHIDE / CARBON DISULFID / Carbon sulfide / Carbon sulfide (CS2) / CARBON DISULFIDE 100MG NEAT / CLSTN2 / Weeviltox / NCI-C04591 / 99.9% (GC)", "unNumber": "", "casNumber": "75-15-0", "transportMethod": "", @@ -29629,19 +21083,19 @@ { "code": "CDS", "name": "Carbon disulfide", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 430, + "id": 247, "abbreviation": "CTC", "nameKr": "사염화탄소", "nameEn": "Carbon tetrachloride", - "synonymsEn": "Carbon tetrachloride / CCl4 / TETRACHLOROMETHANE / PERCHLOROMETHANE / Tetrachlormethan / R-10 / CFC-10 / MAGNACIDE / r10 / CCm0 / R 10", "synonymsKr": "사염화탄소 / 사염화탄소 / 사클로로메탄,사염화메탄,테크라클로로메탄,퍼클로로메탄 / 카본테트라클로라이드 / 카본 테트라클로라이드 / 사염화 탄소", + "synonymsEn": "Carbon tetrachloride / CCl4 / TETRACHLOROMETHANE / PERCHLOROMETHANE / Tetrachlormethan / R-10 / CFC-10 / MAGNACIDE / r10 / CCm0 / R 10", "unNumber": "", "casNumber": "56-23-5", "transportMethod": "", @@ -29697,87 +21151,19 @@ { "code": "CTC", "name": "Carbon tetrachloride", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 431, - "abbreviation": "CARDURAE", - "nameKr": "", - "nameEn": "Cardura E", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CARDURAE", - "name": "Cardura E", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 432, + "id": 248, "abbreviation": "CRNTION", "nameKr": "카네이션 오일", "nameEn": "Carnation oil 12A", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "8021-43-0", "transportMethod": "", @@ -29833,19 +21219,19 @@ { "code": "CRNTION", "name": "Carnation oil 12A", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 433, + "id": 249, "abbreviation": "CNBWAX", "nameKr": "카르나우바 왁스", "nameEn": "Carnauba wax", - "synonymsEn": "Carnauba wax / CARNAUBA / carnubawax / CARNAUBA WAX YELLOW / Copernicia Cerifera Cera / COPERNICIA CERIFERA (CARNAUBA) WAX / carnuba / BRAZIL WAX / Caruba Wax / Carnaba Wax / Canauba", "synonymsKr": "카르나바 왁스 / 카나우바왁스 / 카르나바왁스 / 카르나바랍 / 카나우바왁스(CARNAUBAWAX)", + "synonymsEn": "Carnauba wax / CARNAUBA / carnubawax / CARNAUBA WAX YELLOW / Copernicia Cerifera Cera / COPERNICIA CERIFERA (CARNAUBA) WAX / carnuba / BRAZIL WAX / Caruba Wax / Carnaba Wax / Canauba", "unNumber": "", "casNumber": "8015-86-9", "transportMethod": "", @@ -29901,19 +21287,19 @@ { "code": "CNBWAX", "name": "Carnauba wax", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 434, + "id": 250, "abbreviation": "CSTR", "nameKr": "캐시터 오일", "nameEn": "Castor oil", - "synonymsEn": "Castor oil / RICINUS COMMUNIS (CASTOR) SEED OIL / Castor / DEHYDRATED CASTOR OIL / Polyoxyl 35 / neoloid / tor oil / Venelex / cosmetol / crystalo / goldbond", "synonymsKr": "피마자유 / AAUSP캐스터유 / 리시너스오일(RICINUSOIL)피마자오일(OILOFPALMACHRISTI)탕안오일(TANGANTANGANOIL)네오로이드(NEOLOID)코스메톨(COSMETOL)CRYSTALO / 파마자기름 / 피마자유 / 파마자기름(CASTOROIL) / 피마자오일 / 피마자씨오일 / 비버 오일", + "synonymsEn": "Castor oil / RICINUS COMMUNIS (CASTOR) SEED OIL / Castor / DEHYDRATED CASTOR OIL / Polyoxyl 35 / neoloid / tor oil / Venelex / cosmetol / crystalo / goldbond", "unNumber": "", "casNumber": "8001-79-4", "transportMethod": "", @@ -29956,11 +21342,11 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2(k)TYPE", + "ibcShipType": "2(k)", "ibcTankType": "2G", - "ibcDetection": "No", + "ibcDetection": "O", "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7,\n16.2.9", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -29969,87 +21355,19 @@ { "code": "CSTR", "name": "Castor oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 435, - "abbreviation": "CPTSH", - "nameKr": "", - "nameEn": "Caustic potash solution", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CPTSH", - "name": "Caustic potash solution", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 436, - "abbreviation": "CELLACT", - "nameKr": "셀로솔브 아세테이트", - "nameEn": "Cellsolve acetate", - "synonymsEn": "Ethylene glycol monoethyl ether acetate / EEA / ETHYL GLYCOL ACETATE / CELLOSOLVE ACETATE / 2-ETHOXYETHYL ACETATE / Ethoxyethyl acetate / ETHYL CELLOSOLVE ACETATE / Glycol monoethyl ether acetate / CSAC / egeea / ethoxyacetate", + "id": 251, + "abbreviation": "EGMEEA", + "nameKr": "에틸렌 글리콜 모노에틸 에테르 아세테이트", + "nameEn": "Ethylene glycol monoethyl ether acetate", "synonymsKr": "에틸셀로솔브아세테이트 / 에틸렌글리콜모노에틸에테르아세테이트 / 2-에톡시에탄올아세트산 / 2-에톡시에틸아세테이트 / 아세트산2-에톡시에탄올 / 에틸글리콜아세테이트 / 에틸셀로솔브아세테이트 / 에톡시에탄올아세테이트 / 에틸렌 글리콜 모노에틸 에테르 아세테이트", + "synonymsEn": "Ethylene glycol monoethyl ether acetate / EEA / ETHYL GLYCOL ACETATE / CELLOSOLVE ACETATE / 2-ETHOXYETHYL ACETATE / Ethoxyethyl acetate / ETHYL CELLOSOLVE ACETATE / Glycol monoethyl ether acetate / CSAC / egeea / ethoxyacetate", "unNumber": "", "casNumber": "111-15-9", "transportMethod": "", @@ -30105,19 +21423,25 @@ { "code": "CELLACT", "name": "Cellsolve acetate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EGMEEA", + "name": "Ethylene glycol monoethyl ether acetate", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 437, + "id": 252, "abbreviation": "CELACOL", "nameKr": "세틸 알코올", "nameEn": "Celyl alcohol", - "synonymsEn": "1-Hexadecanol / CETYL ALCOHOL / HEXADECANOL / HEXADECAN-1-OL / Ethol / CETANOL / Lipocol C / n-Hexadecanol / Cetylic alcohol / Cetylol / Cetyl alcohol NF", "synonymsKr": "세틸 알코올 / 세틸알코올 / 세틸알코올 / 1-낙사데카놀 / 1-세타놀 / 1-세탄올 / 1-헥사데카놀 / 1-헥사데칸올 / 1-헥사데킬 알코올 / n-1-헥사데칸올 / n-세틸 알코올 / n-헥사데칸올 / 세타놀 / 세탈 / 세티놀 / 세틸 알코올 / 알코올, C16-C19 / 팔미트 알코올 / 팔미틱 알코올 / 팔미틸 알코올 / 헥사데실 알코올", + "synonymsEn": "1-Hexadecanol / CETYL ALCOHOL / HEXADECANOL / HEXADECAN-1-OL / Ethol / CETANOL / Lipocol C / n-Hexadecanol / Cetylic alcohol / Cetylol / Cetyl alcohol NF", "unNumber": "", "casNumber": "36653-82-4", "transportMethod": "", @@ -30173,19 +21497,19 @@ { "code": "CELACOL", "name": "Celyl alcohol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 438, + "id": 253, "abbreviation": "CELSTEA", "nameKr": "세틸스테아레이트 / 스테아르산팔미틸에스테르", "nameEn": "Celyl stearate", - "synonymsEn": "CETYL STEARATE / Wickenol 121 / Schercemol CS / CETYL STEARATE / Hexadecylstearat / n-Hexadecyl stearate / Hexadecyl octadecanoate / stearicacidpalmitylester / Stearic acid, hexadecyl ester / octadecanoicacidhexadecylester / Octadecanoicacid,hexadecylester", "synonymsKr": "세틸스테아레이트 / 세틸스테아레이트 / 스테아르산팔미틸에스테르", + "synonymsEn": "CETYL STEARATE / Wickenol 121 / Schercemol CS / CETYL STEARATE / Hexadecylstearat / n-Hexadecyl stearate / Hexadecyl octadecanoate / stearicacidpalmitylester / Stearic acid, hexadecyl ester / octadecanoicacidhexadecylester / Octadecanoicacid,hexadecylester", "unNumber": "", "casNumber": "1190-63-2", "transportMethod": "", @@ -30241,359 +21565,19 @@ { "code": "CELSTEA", "name": "Celyl stearate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 439, - "abbreviation": "CLS", - "nameKr": "", - "nameEn": "Cereclors", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CLS", - "name": "Cereclors", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 440, - "abbreviation": "CSLR", - "nameKr": "", - "nameEn": "China clay slurry", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CSLR", - "name": "China clay slurry", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 441, - "abbreviation": "CLBZN", - "nameKr": "", - "nameEn": "Chlorobenzene", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "FT", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CLBZN", - "name": "Chlorobenzene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 442, - "abbreviation": "CLETE", - "nameKr": "클로로벤젠", - "nameEn": "Chloroethene", - "synonymsEn": "Chlorobenzene / MONOCHLOROBENZENE / Chlorobenzen / Chlorbenzol / Chlorbenzene / CHLOROBENZOL / PHENYL CHLORIDE / cp27 / NSC 8433 / U.N.", - "synonymsKr": "클로로벤젠 / 클로로벤젠 / 모노클로로벤졸 / 벤젠,클로로 / 테트로신SP / 모노클로로벤젠 / 벤젠염화물 / 페닐염화물 / 벤젠 염화물 / 벤젠, 클로로 / 테트로신 SP / 페닐 염화물", - "unNumber": "", - "casNumber": "108-90-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CLETE", - "name": "Chloroethene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 443, - "abbreviation": "CFM", - "nameKr": "메탄트리염화물", - "nameEn": "Chloroform", - "synonymsEn": "Chloroform / CHCl3 / TRICHLOROMETHANE / TCM / Fisher Chemical / Chloroform 5g [67-66-3] / r20 / Chloroforme / Trichlormethan / METHYLIDYNE TRICHLORIDE / Residual Solvent Class 2 - Chloroform", - "synonymsKr": "클로로포름 / 클로로포름 / R20(냉각제) / 메탄트리염화물(METHANETRICHLORIDE)메틸트리염화물 / 메테닐트리염화물 / 클로로폼 / 트리클로로메탄 / 트리클로로메탄,클로로포롬 / 트리클로로포름 / 프레온20 / 메테닐트리클로라이드 / 삼염화메탄", - "unNumber": "1888", - "casNumber": "67-66-3", - "transportMethod": "", - "sebc": "", - "usage": "살충제, 곰팡이 제거제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CFM", - "name": "Chloroform", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 444, + "id": 254, "abbreviation": "CPRE", "nameKr": "클로로프렌", "nameEn": "Chloroprene", - "synonymsEn": "2-chloro-1,3-butadiene / CHLOROPRENE / beta-Chloroprene / 2-Chlorobuta-1,3-diene / 1,3-Butadiene, 2-chloro- / CHLOROPENE / Baypren M1 / Chloropren / Cloroprene / Neoprene AH / Baypren 110", "synonymsKr": "클로로프렌 / 클로로프렌 / 베타-클로로프렌 / 클로로프렌(2-클로로부타-1,3-다이엔) / 2-클로로-1,3-부타디엔 / 2-클로로프렌", + "synonymsEn": "2-chloro-1,3-butadiene / CHLOROPRENE / beta-Chloroprene / 2-Chlorobuta-1,3-diene / 1,3-Butadiene, 2-chloro- / CHLOROPENE / Baypren M1 / Chloropren / Cloroprene / Neoprene AH / Baypren 110", "unNumber": "", "casNumber": "126-99-8", "transportMethod": "", @@ -30649,59 +21633,59 @@ { "code": "CPRE", "name": "Chloroprene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 445, + "id": 255, "abbreviation": "CSA", "nameKr": "클로로설폰산", "nameEn": "Chlorosulfonic acid", - "synonymsEn": "Chlorosulfonic acid / chlorosulphonic acid / chlorosulphuric acid / chlorosulfonic / acidechlorosulfonique / Chlorsulfonsure / AKOS BBS-00004309 / CHLOROSULFONIC ACID / Sulfric chlorohydrin / Sulfurochloridicacid / Chloridosulfuric acid", "synonymsKr": "클로로술폰산 / 클로로설폰산 / 클로로술폰산 / 모노클로로황산 / 염화설폰산 / 황산클로로히드린 / 황클로로히드린", + "synonymsEn": "Chlorosulfonic acid / chlorosulphonic acid / chlorosulphuric acid / chlorosulfonic / acidechlorosulfonique / Chlorsulfonsure / AKOS BBS-00004309 / CHLOROSULFONIC ACID / Sulfric chlorohydrin / Sulfurochloridicacid / Chloridosulfuric acid", "unNumber": "", "casNumber": "7790-94-5", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(8급), 산적액체(X류)", + "sebc": "D (Dissolver)", "usage": "", - "state": "", - "color": "", - "odor": "", + "state": "액체", + "color": "무색~노란색", + "odor": "자극성", "flashPoint": "", "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", + "boilingPoint": "151℃", + "density": "1.76", + "solubility": "1,000 g/L (발열반응)", + "vaporPressure": "0.08 mmHg (25℃)", + "vaporDensity": "4.02", "explosionRange": "", "nfpa": { - "health": 0, + "health": 3, "fire": 0, - "reactivity": 0, - "special": "" + "reactivity": 2, + "special": "W" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "독성, 부식성, 수분 반응성", + "ergNumber": "137", "idlh": "", "aegl2": "", "erpg2": "", "responseDistanceFire": "", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "해수와 격렬 반응, 염산/황산 생성", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "맹독성, 부식성, 수분과 격렬 반응, 피부/안구 심각한 손상", + "firstAid": "흡입: 신선한 공기, 산소공급. 피부: 즉시 다량 물 세척. 안구: 15분 이상 물 세척. 경구: 구토유발 금지, 즉시 의료조치.", + "fireFighting": "건조 분말/CO₂. 물 직접 접촉 금지.", + "spillResponse": "물과 격리. 건조 흡수제. 증기운 이동 억제.", "exposure": "", - "regulation": "" + "regulation": "유해화학물질관리법" }, "ibcHazard": "", "ibcShipType": "", @@ -30709,163 +21693,27 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-B", + "emsFire": "F-A", + "emsSpill": "S-B", "emsFirstAid": "", "cargoCodes": [ { "code": "CSA", "name": "Chlorosulfonic acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 446, - "abbreviation": "CWG", - "nameKr": "", - "nameEn": "Choice white grease", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CWG", - "name": "Choice white grease", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 447, - "abbreviation": "CCL", - "nameKr": "", - "nameEn": "Choline chloride", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CCL", - "name": "Choline chloride", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 448, + "id": 256, "abbreviation": "CDE", "nameKr": "1,2-디클로로에틸렌", "nameEn": "cis-Dichloroethylene", - "synonymsEn": "CIS-1,2-DICHLOROETHYLENE / CIS-1,2-DICHLOROETHENE / cis-Dichloroethene / cis-Dichloroethylene / cis-DCE / cisdichloroethylene / 1,2-cis-Dichloroethene / cis-1,2-Dichlorethylen / cis-1,2-dichlorethylene / 1,2-cis-Dichloroethylene / (Z)-1,2-Dichloroethylene", "synonymsKr": "시스-1,2-디클로로에틸렌 / CIS-1,2-다이클로로에틸렌 / 시스-1,2-디클로로에틸렌 / cis-다이클로로에틸렌 / cis-1,2-디클로로에틸렌", + "synonymsEn": "CIS-1,2-DICHLOROETHYLENE / CIS-1,2-DICHLOROETHENE / cis-Dichloroethene / cis-Dichloroethylene / cis-DCE / cisdichloroethylene / 1,2-cis-Dichloroethene / cis-1,2-Dichlorethylen / cis-1,2-dichlorethylene / 1,2-cis-Dichloroethylene / (Z)-1,2-Dichloroethylene", "unNumber": "", "casNumber": "156-59-2", "transportMethod": "", @@ -30921,19 +21769,19 @@ { "code": "CDE", "name": "cis-Dichloroethylene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 449, + "id": 257, "abbreviation": "CTRACID", "nameKr": "구연산", "nameEn": "Citric acid", - "synonymsEn": "Citric acid / Citric acid anhydrous / Anhydrous citric acid / BETZ 6251 / acid citric / citric acid solution / Citric acid Anhydrate / Citro / CheMfill / Citric acid anhydrou / Citric acid (anhydrous) CRS", "synonymsKr": "시트르산 / 시트르산 / 무수물구연산 / 베타-히드록시트리카르발릴산 / 2-히드록시-1,2,3-프로판트리카르복실산 / 시트르산,HPCEGRADE / 시트르산,무수(무수구연산) / 구연산 / 시트릭애씨드 / 무수구연산 / 시트르산(CITRICACID)", + "synonymsEn": "Citric acid / Citric acid anhydrous / Anhydrous citric acid / BETZ 6251 / acid citric / citric acid solution / Citric acid Anhydrate / Citro / CheMfill / Citric acid anhydrou / Citric acid (anhydrous) CRS", "unNumber": "", "casNumber": "77-92-9", "transportMethod": "", @@ -30989,127 +21837,59 @@ { "code": "CTRACID", "name": "Citric acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 450, - "abbreviation": "CK9", - "nameKr": "", - "nameEn": "CK9 acid", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CK9", - "name": "CK9 acid", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 451, + "id": 258, "abbreviation": "CTP", "nameKr": "콜타르 피치", "nameEn": "Coal Tar Pitch", - "synonymsEn": "·coal tar pitch, volatiles ·volatiles, coal tar pitch ·Pitch, coal tar, high-temp. ·Coal tar pitch volatiles (benzene soluble fraction)", - "synonymsKr": "·콜타르피치, 휘발성 ·휘발성, 콜타르피치 ·피치, 콜타르, 고온 ·휘발성 콜타르피치 (벤젠 가용성 부분)", + "synonymsKr": "Hard Pitch. 휘발성 꼴타르피치", + "synonymsEn": "Coal tar / COAL TAR / 4-tridecenyl acetate", "unNumber": "1999", "casNumber": "65996-93-2", - "transportMethod": "", - "sebc": "", - "usage": "방부도료, 도로 및 지붕 포장, 페인트 원료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", + "transportMethod": "포장(3급), 산적액체(X류)", + "sebc": "S (Sinker)", + "usage": "알루미늄 제련용 바인더", + "state": "액체 또는 고체", + "color": "흑색 또는 흑갈색", + "odor": "독특한 냄새", + "flashPoint": ">2ocrc", + "autoIgnition": "360℃", "boilingPoint": "", - "density": "", - "solubility": "", + "density": "1.3", + "solubility": "불용", "vaporPressure": "", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/X", + "ergNumber": "128", + "idlh": "80 mg/㎥", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "• 인화점이 비교적 높고 증기압이 작아 화재 및 폭발위험성은 적음", + "responseDistanceSpillDay": "최소반경 50m", + "responseDistanceSpillNight": "풍하 방향으로 최소 50m", + "marineResponse": "침강 (S)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "발암성(PAH), 피부 감작성", + "firstAid": "흡입노출 • 오염되지 않은 지역으로 이동, 호흡하지 않을 경우 인공호흡. 의사진료 _ … 피부접촉 • 오염된 옷을 벗고 비누 및 물로 15분 이상 씻을 것 , 의사진료 흐“조지 안구접촉 • 긴급 의료조치, 20분 이상 흐르는 물에 씻을 것 경구섭취 • 즉시 의료조치 보호복 호홈구 보안경 보호장갑 기타장비 수 3.4형식(C급) 방독마스크(반면.전면) O O ' 열화상카메라 I 초기 이격거리(m) 도6 방호거러(m) 50 ► 유출물질은 급성독성 물질로 흡입하면 유해한 물질이므로. 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지. 주변선박통제 해상유츨시 > 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3.4형식 보호의 착용, 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 침강하므로 방제조치 불팔요 > 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 I 화재 시 대피거리(m) 而 ► 유출물질은 연소시 유독가스 방출, 풍상에 위치. 최소 이격거리 유지하고 내알쿨포 이용 화재진압 ► 열화상카메라 운용(결과전파), 소화포 이용 사고선 냉각조치 할 것 ► 직수분사 금지(화재를 번지게 할 수 있", + "fireFighting": "포말/분무주수/CO₂.", + "spillResponse": "고체 회수. 주변 통제.", + "exposure": "TWA 0.2 mg/㎥, IDLH 80 mg/㎥", + "regulation": "유해화학물질관리법" }, "ibcHazard": "", "ibcShipType": "", @@ -31117,67 +21897,67 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "CTP", "name": "Coal Tar Pitch", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 452, + "id": 259, "abbreviation": "CONDENSATE", "nameKr": "컨덴세이트", "nameEn": "Condensate", - "synonymsEn": "·Crude naphtha, raw naphtha, naphtha, full range C4-11", "synonymsKr": "나프타 전 범위 / 원유", + "synonymsEn": "Condensate / Crude naphtha, raw naphtha, naphtha, full range C4-11", "unNumber": "1268", "casNumber": "64741-42-0", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(3급), 산적액체", + "sebc": "E (Evaporator)", "usage": "석유화학 공업원료 및 솔벤트, 연료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "state": "액체", + "color": "투명", + "odor": "독특한 냄새", + "flashPoint": "-18℃ 이하", + "autoIgnition": "자료없음", + "boilingPoint": "0.1~250℃", + "density": "0.75~0.773(16t)", + "solubility": "<0.1%", + "vaporPressure": "100 mmHg (20℃)", "vaporDensity": "", - "explosionRange": "", + "explosionRange": "1.1~7.6%", "nfpa": { - "health": 0, - "fire": 0, + "health": 3, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "해양환경관리법/기쁨", + "ergNumber": "128", + "idlh": "3O 분)", + "aegl2": "2,000 mg/kg", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발©", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "고인화성, 발암성, 생식독성, 흡인성 유해", + "firstAid": "흡입노출 ' • 산소공급.인공호흡.의료조치 피부접촉 • 비누와 물로 씻을 것, 화상의 경우 찬물로 식힐 것, 의료조치 읏급조치 안구접촉 • 몇 분간 조심해서씻을 것.콘택트렌즈 제거 경구섭취 • 즉시의료조치 초동 대응방법 대응장비 보호복 호흡구 보안경 보호장갑 기타장비 3.4형식 (C굽) 방독마스크(반면,전면) O O 열화상카메라 초기 이격거리(m) 50 방호거리(m) 300 해상유출시 ► 유출물질은 극인화성 물질로 증기의 이동에 의한 폭발 가능성이 높으며,유전적인 결함을 유발할 수 있고 암을 일 으킬 수 있는 물질이므로 모든 출동세력 풍상에 위치. 최소 50m 이격거리 유지, 주변선박 통제 (홉연. 불꽃, 스파크 등 모든 점화원 제거) ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용, 증기홉입과 피부와 눈에 접촉을 피할 것 > 유출물질은 증발하므로 방제조치 불필요 > 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 화재시대피거리 (m) 800 + 화재 •폭발시 ► 유출물질윤 연소시 유독가스 방출, 풍상에 위치, 최소 이격거리 유지하고 내알콜포 이용 화재진압 느 열화상카메라 운용(결과전", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 오일펜스/흡착재 회수.", "exposure": "", - "regulation": "" + "regulation": "CAS 64741-42-0" }, "ibcHazard": "", "ibcShipType": "", @@ -31185,67 +21965,67 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { "code": "CONDENSATE", "name": "Condensate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 453, + "id": 260, "abbreviation": "CTN", "nameKr": "석탄 벤젠 나프타", "nameEn": "Coal tar naphtha", + "synonymsKr": "나프타 / 나프타 용제 / 러버 솔벤트 / 벤진/석유 나프타 / 석유 에테르 NFPA 코드(0~4단계) 건강 :1 화재 : 4 반응 :0", "synonymsEn": "PETROLEUM ETHER / BENZIN / PETROL / varsol / LIGROIN / HEXANES / BENZINE / NAPHTHA / canadol / LIGROINE / amscoh-j", - "synonymsKr": "석유벤진 / 나프타 / 나프타,석유 / 나프타,m솔벤트 / 러버솔벤트 / 벤진 / 석유나프타 / 석유벤진 / 러버솔벤트", - "unNumber": "", + "unNumber": "1268", "casNumber": "8030-30-6", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "FE (Float-Evaporator)", + "usage": "도료용 용제. 염료 중간체, 인화성 액제(귀문1 흠이 유해서(구부1) 급성독성-경구(구분4) 읍느 \" \"引누느 ) __ r", + "state": "기체", + "color": "무색", + "odor": "가솔린 냄새", + "flashPoint": "<-18℃", "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "boilingPoint": "-20~220℃", + "density": "0.6", + "solubility": "<0.1 g/L (25℃)", + "vaporPressure": "(물 23.8mmHg)", "vaporDensity": "", - "explosionRange": "", + "explosionRange": "0.75~5.773(16℃)", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "해양환경관리법/기롬", + "ergNumber": "128", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발 (E)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "고인화성, 생식/발암 유해성, 피부/흡입 자극", + "firstAid": "흡입노출 • 토하게 하지 말 것, 인공호흡, 산소공급 피뚜접촉 - 피부를 물과 비누로 씻을 것, 화상의 경우 찬물로 씻을 것 안구접촉 - 20분 이상 흐르는 물에 씻을 것 경구섭취 • 토하게 하지 말 것, 즉시 의丄기관 진찰", + "fireFighting": "내알코올 포말/분무주수/CO₂/건조분말. 직사주수 금지.", + "spillResponse": "점화원 제거. 오일펜스/흡착재로 회수. 증기운 이동 억제. 안전 확보 시까지 지속 모니터링.", + "exposure": "TWA 300 mg/㎥", + "regulation": "위험물안전관리법(제4류 제1석유류)" }, "ibcHazard": "", "ibcShipType": "", @@ -31253,163 +22033,27 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { "code": "CTN", "name": "Coal tar naphtha", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 454, - "abbreviation": "CTCNO", - "nameKr": "코코넛 오일", - "nameEn": "Cochin type coconut oil", - "synonymsEn": "Coconut oil / COCOS NUCIFERA (COCONUT) OIL / Virgin Coconut oil / coconutbutter / Kokosnuoel / Coconut Oil – RBD / Koline / Copra. / oils,copra / Coconut oil / oils,coconut", - "synonymsKr": "야자유 / 야자유 / 코코넛버터 / 코코넛오일 / 코코넛야자씨버터 / 코코넛야자오일 / 코코넛오일(COCONUTOIL) / 코코넛 오일", - "unNumber": "", - "casNumber": "8001-31-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CTCNO", - "name": "Cochin type coconut oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 455, - "abbreviation": "CME", - "nameKr": "", - "nameEn": "Coco methyl esters", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CME", - "name": "Coco methyl esters", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 456, + "id": 261, "abbreviation": "COCOA", "nameKr": "코코아 버터", "nameEn": "Cocoa butter", - "synonymsEn": "COCOA BUTTER / Cocoaoil / COCOAFAT / COCO BUTTER / cacao butter / Cocaobeanoil / COCOA BUTTER / Cocoaabsolute / THEOBROMA OIL / Cocoa bean oil / Cocoabeanextract", "synonymsKr": "코코아 염화물 / 코코아염화물 / 코코아염화물(COCOABUTTER) / 카카오씨버터 / 하이드롤라이즈드카카오씨버터 / 코코아버터", + "synonymsEn": "COCOA BUTTER / Cocoaoil / COCOAFAT / COCO BUTTER / cacao butter / Cocaobeanoil / COCOA BUTTER / Cocoaabsolute / THEOBROMA OIL / Cocoa bean oil / Cocoabeanextract", "unNumber": "", "casNumber": "8002-31-1", "transportMethod": "", @@ -31452,11 +22096,11 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2(k)TYPE", + "ibcShipType": "2(k)", "ibcTankType": "2G", - "ibcDetection": "No", + "ibcDetection": "O", "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7,\n16.2.9", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -31465,20 +22109,20 @@ { "code": "COCOA", "name": "Cocoa butter", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 457, - "abbreviation": "COCOAS", - "nameKr": "코코아 버터 대체제", - "nameEn": "Cocoa butter substitute", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "1", + "id": 262, + "abbreviation": "PCBR", + "nameKr": "팜코코아버터 대체제", + "nameEn": "Palm cocoa butter replacer", + "synonymsKr": "C10-18트라이글리세라이즈 / C10-18트라이글리세라이즈", + "synonymsEn": "Glycerides, C10-18 / Glycerides, C10-18 / Glyceride, C10-18- / C10-18 TRIGLYCERIDES / Cocoa butter substitute / Glycerides, C10-18 USP / EP / BP / 85665-33-4 Glycerides, C10-18", + "unNumber": "", "casNumber": "85665-33-4", "transportMethod": "", "sebc": "", @@ -31533,19 +22177,25 @@ { "code": "COCOAS", "name": "Cocoa butter substitute", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PCBR", + "name": "Palm cocoa butter replacer", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 458, - "abbreviation": "CNFA", - "nameKr": "코코넛 지방산", - "nameEn": "Coconut fatty acid", - "synonymsEn": "COCONUT OIL FATTY ACIDS / Coconutfattyacids / Fattyacids,C8-18andC18-unsatd. / FATTYACIDS,C8-C18&C18UNSATURATED / C8-18 and C18-unsaturated fatty acids / fatty acids, C8-18 and C18 unsaturated / Fatty acids, unsaturated, C8-C18 and C18 / C8-18-andC18-Unsaturatedalkylcarboxylicacid", + "id": 263, + "abbreviation": "PKFAD", + "nameKr": "팜 코어 지방산 증류액", + "nameEn": "Palm kernel fatty acid distillate", "synonymsKr": "코코넛 지방 산 / 코코넛지방산 / 코코넛지방산(COCONUTFATTYACID)", + "synonymsEn": "COCONUT OIL FATTY ACIDS / Coconutfattyacids / Fattyacids,C8-18andC18-unsatd. / FATTYACIDS,C8-C18&C18UNSATURATED / C8-18 and C18-unsaturated fatty acids / fatty acids, C8-18 and C18 unsaturated / Fatty acids, unsaturated, C8-C18 and C18 / C8-18-andC18-Unsaturatedalkylcarboxylicacid", "unNumber": "", "casNumber": "67701-05-7", "transportMethod": "", @@ -31587,12 +22237,12 @@ "exposure": "", "regulation": "" }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", + "ibcHazard": "S/P", + "ibcShipType": "2", + "ibcTankType": "2G", + "ibcDetection": "R", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6,\n16.2.6, 16.2.7, 16.2.9", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -31601,19 +22251,37 @@ { "code": "CNFA", "name": "Coconut fatty acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DCNFA", + "name": "Distilled coconut fatty acid", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "DPKFA", + "name": "Distilled palm kernel fatty acid", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PKFAD", + "name": "Palm kernel fatty acid distillate", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 459, + "id": 264, "abbreviation": "COD", "nameKr": "대구 간유", "nameEn": "Cod liver oil", - "synonymsEn": "COD LIVER OIL / Codoil / GADI LECUR / PISCUM LECUR / Oleummorrhuae / COD LIVER OIL / FISH LIVER OIL / LEBERTRAN 0 VP / CODLIVEROIL,USP / vitamin A and D / Oleumjecorispiscis", "synonymsKr": "대구 간유 / 대구간유 / 대구간유(CODLIVEROIL) / 코드리버오일", + "synonymsEn": "COD LIVER OIL / Codoil / GADI LECUR / PISCUM LECUR / Oleummorrhuae / COD LIVER OIL / FISH LIVER OIL / LEBERTRAN 0 VP / CODLIVEROIL,USP / vitamin A and D / Oleumjecorispiscis", "unNumber": "", "casNumber": "8001-69-2", "transportMethod": "", @@ -31669,87 +22337,25 @@ { "code": "COD", "name": "Cod liver oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 460, - "abbreviation": "CODO", - "nameKr": "대구 간유", - "nameEn": "Cod oil", - "synonymsEn": "COD LIVER OIL / Codoil / GADI LECUR / PISCUM LECUR / Oleummorrhuae / COD LIVER OIL / FISH LIVER OIL / LEBERTRAN 0 VP / CODLIVEROIL,USP / vitamin A and D / Oleumjecorispiscis", - "synonymsKr": "대구 간유 / 대구간유 / 대구간유(CODLIVEROIL) / 코드리버오일", - "unNumber": "", - "casNumber": "8001-69-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "CODO", "name": "Cod oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 461, + "id": 265, "abbreviation": "CHNO", "nameKr": "코훈 오일", "nameEn": "Cohune oil", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "84929-33-9", "transportMethod": "", @@ -31805,55 +22411,55 @@ { "code": "CHNO", "name": "Cohune oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 462, - "abbreviation": "CMS", - "nameKr": "자당", - "nameEn": "Concentrated molasses solubles", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "1", - "casNumber": "68476-78-8", + "id": 266, + "abbreviation": "RBDCORN", + "nameKr": "정제, 탈색, 탈취 공정을 거친 옥수수 오일", + "nameEn": "RBD Corn oil", + "synonymsKr": "마이세 오일 / 마졸라 오일 / 마이제 오일 / 식물성 오일 CAM", + "synonymsEn": "RBD Corn oil", + "unNumber": "-", + "casNumber": "8001-30-7", "transportMethod": "", "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "usage": "식용유, 연료 등", + "state": "액체", + "color": "노란색", + "odor": "약간 독특한 냄새", + "flashPoint": "238’C", + "autoIgnition": "379.irc", + "boilingPoint": "자료없음", + "density": "0.91~0.92", + "solubility": "불용", + "vaporPressure": "(물 17.5mniHg)", "vaporDensity": "", "explosionRange": "", "nfpa": { "health": 0, - "fire": 0, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Y", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", + "responseDistanceFire": "자료없음", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", + "marineResponse": "부유 (F)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 구강대구강 인공호흡 하지 말 것. 의료조치 피부접촉 • 20분 이상 흐르는 물에 피부와 눈을 씻을 것 안구접촉 • 20분 이상 흐르는 물에 피부와 눈을 씻을 것 경구섭취 • 구강대구강 인공호흡 하지 말 것, 의료조치 초동 대옹방법 보호복 호홉구 보안경 보호장갑 기타장비 대응장비 (일:ill서복) 방진마스크 O O 열화상카메라 초기 이격거리(m) 자료없음 방호거리(m) 자료없음 해상유출시 ► 출동 경비정(방제정) 사고선 접근 시 방진마스크를 포함한 일회용 방제복 착용, 증기흅입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 부유성 물질로 방제조치가 필요함(오일펜스 설치, 유흡착재. 뜰채 등 이용 흡착회수) ► 유출시 미끄러우므로 선박 등선 시 미끄럼사고 주의 화재 시대피거리(m) 자료없음 + ►유출물질은 연소시 유독가스 방출. 풍상에 위치, 최소 이격거리 유지하고 내알콜포(소화포) 이용 화재진압 화재•폭발시 ► 열화상카메라 운용(결과전파), 소화포 이용 사고선 냉각조치 할 것 ► 직수분사 금지(화재를 번지게 할 수 있음) ► 안전이 확보되면, 화학방제함 또는 예인선 동원 긴급예인 조치 237", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -31869,91 +22475,41 @@ "emsFire": "", "emsSpill": "", "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CMS", - "name": "Concentrated molasses solubles", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 463, - "abbreviation": "CORN", - "nameKr": "옥수수 오일", - "nameEn": "Corn oil", - "synonymsEn": "Corn oil", - "synonymsKr": "마이세 오일 / 마졸라 오일 / 마이제 오일 / 식물성 오일", - "unNumber": "-", - "casNumber": "8001-30-7", - "transportMethod": "", - "sebc": "", - "usage": "식용유, 연료 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2(k)TYPE", - "ibcTankType": "2G", - "ibcDetection": "No", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", "cargoCodes": [ { "code": "CORN", "name": "Corn oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "CCORN", + "name": "Crude corn oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RBDCORN", + "name": "RBD Corn oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RCORN", + "name": "Refined Corn oil", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 464, + "id": 267, "abbreviation": "CORNSL", "nameKr": "옥수수 침출액", "nameEn": "Corn steep liquor", - "synonymsEn": "CORN STEEP LIQUOR / Corn steep / Corn steep water / Corn steep powder / CORN STEEP SOLIDS / CORN STEEP LIQUOR / Maize, steep liquor / Corn steep, atomized / Zea mays, steep liquor / Industrial liquors, corn steep liquor / corn steep powder for fermentation (high nitrogen)", "synonymsKr": "옥수수 침지액 / 옥수수 침지액 / 옥수수가파른주류", + "synonymsEn": "CORN STEEP LIQUOR / Corn steep / Corn steep water / Corn steep powder / CORN STEEP SOLIDS / CORN STEEP LIQUOR / Maize, steep liquor / Corn steep, atomized / Zea mays, steep liquor / Industrial liquors, corn steep liquor / corn steep powder for fermentation (high nitrogen)", "unNumber": "", "casNumber": "66071-94-1", "transportMethod": "", @@ -32009,19 +22565,19 @@ { "code": "CORNSL", "name": "Corn steep liquor", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 465, - "abbreviation": "CSRP", - "nameKr": "옥수수 시럽", - "nameEn": "Corn syrup", - "synonymsEn": "", - "synonymsKr": "", + "id": 268, + "abbreviation": "GCSSRP", + "nameKr": "글루코스 시럽", + "nameEn": "Glucose syrup", + "synonymsKr": "옥수수시럽 / 옥수수시럽", + "synonymsEn": "CORN SYRUP / MAIZESYRUP / CORN SYRUP / GLUCOSE SYRUP / Corn sugar syrup / Glucose Syrup, FCC / CORN SYRUP (GLUCOSE) / Corn Syrup DE 42 (2 g) / Syrups,hydrolyzedstarch / FruitglucosesyrupmodelF42 / Corn Syrup:Glucose liquid", "unNumber": "", "casNumber": "8029-43-4", "transportMethod": "", @@ -32077,19 +22633,25 @@ { "code": "CSRP", "name": "Corn syrup", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "GCSSRP", + "name": "Glucose syrup", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 466, + "id": 269, "abbreviation": "CTSOFA", "nameKr": "면실유 지방산", "nameEn": "Cottonseed oil fatty acid", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "6808-51-0", "transportMethod": "", @@ -32145,59 +22707,59 @@ { "code": "CTSOFA", "name": "Cottonseed oil fatty acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 467, - "abbreviation": "CRSL", - "nameKr": "크레졸", - "nameEn": "Cresols", - "synonymsEn": "Cresol / CRESYLIC ACID / TRICRESOL / Cresols / HYDROXYTOLUENE / Mixed cresol / MIXED CRESOLS / CRESOL MIXTURE OF ISOMERS, CRUDE / krezol / Cresol / cresoli", + "id": 270, + "abbreviation": "CSLC", + "nameKr": "크레실산", + "nameEn": "Cresylic acid", "synonymsKr": "크레졸 / 크레졸 / 혼합크레졸 / 크레솔 / 메틸페놀 / 바스실롤 / 옥시톨루엔 / 옥시톨루올 / 크레실산 / 테크레졸 / 트리크레솔 / 하이드록시메틸벤젠", + "synonymsEn": "Cresol / CRESYLIC ACID / TRICRESOL / Cresols / HYDROXYTOLUENE / Mixed cresol / MIXED CRESOLS / CRESOL MIXTURE OF ISOMERS, CRUDE / krezol / Cresol / cresoli", "unNumber": "2022", "casNumber": "1319-77-3", - "transportMethod": "", - "sebc": "", - "usage": "합성수지, 폭약, 소독제", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(6.1급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "유해액체물질/Y 국가긴급방제계획 포합 위험 • 유해물질 노란색. 연갈색의 페놀 특유의 냄새가 나는 액체로서 주로 합성수지, 폭약, 소독제로 사용됨. 해상유출 시에는 침강. 용해되므로 방제조치는 불필요하나, 피부화상, 심한 눈 손상을 일으킬 수 있고, 급성독성이 있으므로 보안경, 방독마스크, 화학", + "state": "액체", + "color": "노란색에서 연갈색", + "odor": "페놀 냄새", + "flashPoint": "86.11", + "autoIgnition": "559℃", + "boilingPoint": "191~202℃", + "density": "1.03-1.04", + "solubility": "23.3 g/L (20℃)", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "3.72", + "explosionRange": "1.4%~", "nfpa": { - "health": 0, - "fire": 0, + "health": 3, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "153", + "idlh": "250 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "침강용해 (SD)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "독성 물질로 피부접촉 및 흡입 시 유독하며 연소 시 유독가스 발생, 피부 부식/화상", + "firstAid": "흡입노출 • 즉시 의료조치 피부접촉 • 물로 씻올 것, 화상의 경우 다량의 찬물로 씻을 것 얀구접촉 • 몇 분간 물로 조심해서 씻어낼 것, 콘택트렌즈를 제거할 것 경구섭취 • 입을 씻어낼 것, 토하지 말 것, 즉시 의료조치", + "fireFighting": "독성 물질로 피부접촉 및 흡입 시 유독하며 연소 시 유독가스 발생. 먼 곳에서 분무주수 또는 내알코올 포말.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 해수에 유출시 침전용해(SD)되어 해상수거 불가.", + "exposure": "TWA 22 mg/㎥, IDLH 250 ppm", + "regulation": "유해화학물질관리법" }, "ibcHazard": "", "ibcShipType": "", @@ -32205,95 +22767,33 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-B", + "emsFire": "F-A", + "emsSpill": "S-B", "emsFirstAid": "", "cargoCodes": [ { "code": "CRSL", "name": "Cresols", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 468, - "abbreviation": "CSLC", - "nameKr": "크레실산", - "nameEn": "Cresylic acid", - "synonymsEn": "Cresol / CRESYLIC ACID / TRICRESOL / Cresols / HYDROXYTOLUENE / Mixed cresol / MIXED CRESOLS / CRESOL MIXTURE OF ISOMERS, CRUDE / krezol / Cresol / cresoli", - "synonymsKr": "크레졸 / 크레졸 / 혼합크레졸 / 크레솔 / 메틸페놀 / 바스실롤 / 옥시톨루엔 / 옥시톨루올 / 크레실산 / 테크레졸 / 트리크레솔 / 하이드록시메틸벤젠", - "unNumber": "2022", - "casNumber": "1319-77-3", - "transportMethod": "", - "sebc": "", - "usage": "합성수지, 폭약, 소독제", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "CSLC", "name": "Cresylic acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 469, + "id": 271, "abbreviation": "CRNH", "nameKr": "크로톤알데히드", "nameEn": "Crotonaldehyde", - "synonymsEn": "Crotonaldehyde / 2-BUTENAL / (E)-but-2-enal / 2-Butenal, (E)- / BUTENAL / BDQ / (E)-2-BUTENAL / Crotenaldehyde / (E)-Crotonaldehyde / Crotonal / Crotonic aldehyde", "synonymsKr": "크로톤알데하이드 / (E)-크로톤알데하이드 / 크로톤알데하이드 / 크로톤알데하이드,(E)- / 크로톤알데히드 / 크로톤알데하이드,(E)- / (2E)-2-뷰텐알 / (E)-2-뷰텐알 / (E)-뷰트-2-엔알 / 2-뷰텐알, (2E)- / 베타-메틸아크롤레인 / 크로텐알데하이드 / 트랜스-2-뷰텐알 / 트랜스-크로톤알데하이드", + "synonymsEn": "Crotonaldehyde / 2-BUTENAL / (E)-but-2-enal / 2-Butenal, (E)- / BUTENAL / BDQ / (E)-2-BUTENAL / Crotenaldehyde / (E)-Crotonaldehyde / Crotonal / Crotonic aldehyde", "unNumber": "", "casNumber": "123-73-9", "transportMethod": "", @@ -32336,9 +22836,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 1TYPE", + "ibcShipType": "1", "ibcTankType": "1G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.17, 15.18, 15.19", "emsCode": "", @@ -32349,427 +22849,19 @@ { "code": "CRNH", "name": "Crotonaldehyde", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 470, - "abbreviation": "CCAN", - "nameKr": "카놀라유", - "nameEn": "Crude canola oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "1", - "casNumber": "120962-03-0", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CCAN", - "name": "Crude canola oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 471, - "abbreviation": "CCNO", - "nameKr": "코코넛 오일", - "nameEn": "Crude coconut oil", - "synonymsEn": "Coconut oil / COCOS NUCIFERA (COCONUT) OIL / Virgin Coconut oil / coconutbutter / Kokosnuoel / Coconut Oil – RBD / Koline / Copra. / oils,copra / Coconut oil / oils,coconut", - "synonymsKr": "야자유 / 야자유 / 코코넛버터 / 코코넛오일 / 코코넛야자씨버터 / 코코넛야자오일 / 코코넛오일(COCONUTOIL) / 코코넛 오일", - "unNumber": "", - "casNumber": "8001-31-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CCNO", - "name": "Crude coconut oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 472, - "abbreviation": "CCORN", - "nameKr": "옥수수유", - "nameEn": "Crude corn oil", - "synonymsEn": "Coconut oil / COCOS NUCIFERA (COCONUT) OIL / Virgin Coconut oil / coconutbutter / Kokosnuoel / Coconut Oil – RBD / Koline / Copra. / oils,copra / Coconut oil / oils,coconut", - "synonymsKr": "마이세 오일 / 마졸라 오일 / 마이제 오일 / 식물성 오일", - "unNumber": "-", - "casNumber": "8001-30-7", - "transportMethod": "", - "sebc": "", - "usage": "식용유, 연료 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CCORN", - "name": "Crude corn oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 473, - "abbreviation": "CDRSO", - "nameKr": "", - "nameEn": "Crude degummed rapeseed oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CDRSO", - "name": "Crude degummed rapeseed oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 474, - "abbreviation": "CDSBO", - "nameKr": "", - "nameEn": "Crude degummed soya bean oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CDSBO", - "name": "Crude degummed soya bean oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 475, - "abbreviation": "CEG", - "nameKr": "에틸렌 클리콜", - "nameEn": "Crude ethlene glycol", - "synonymsEn": "Ethylene glycol / Monoethylene glycol / dowtherm / 1,2-Ethanediol / HOCH2CH2OH / 2-Hydroxyethanol / Antifrogen N / Dihydroxyethane / Zerex / Glygen / Glykol", - "synonymsKr": "모노에틸렌글리콜 / 에틸렌글리콜 / 에틸렌알코올 / 1,2-디히드록시에탄 / 모노에틸렌글리콜 / 에틸렌글리콜(MEG) / 글라이콜 / 에칠렌글라이콜 / 에틸렌글리콜 / 에틸렌 글리콜", - "unNumber": "3082", - "casNumber": "107-21-1", - "transportMethod": "", - "sebc": "", - "usage": "플라에스터, 폴리에스터, 폴리에스터수지, 흡습제, 가소제, 계면활설제, 합성섬유, 화장품, 화약류의 제조", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CEG", - "name": "Crude ethlene glycol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 476, + "id": 272, "abbreviation": "CFISH", "nameKr": "크래프트 피쉬 오일", "nameEn": "Crude fish oil", - "synonymsEn": "FISH OIL / z3(oil) / pogyoil / menhaden / FISH OILS / NatureMade / mossbunkeroil / oils,menhaden / Brevoortia oil / Oele, Menhaden- / Boiled oil Y00-1", "synonymsKr": "멘헤이든오일 / 멘헤이든오일", + "synonymsEn": "FISH OIL / z3(oil) / pogyoil / menhaden / FISH OILS / NatureMade / mossbunkeroil / oils,menhaden / Brevoortia oil / Oele, Menhaden- / Boiled oil Y00-1", "unNumber": "", "casNumber": "8002-50-4", "transportMethod": "", @@ -32825,291 +22917,25 @@ { "code": "CFISH", "name": "Crude fish oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 477, - "abbreviation": "CGLN", - "nameKr": "원유 글리세린", - "nameEn": "Crude glycerine", - "synonymsEn": "Glycerol / Glycerine / Glyceol / ifp / Glycerin USP / GLYCEROL ANHYDROUS / Propanetriol / propan-1,2,3-triol / 1,2,3-Propanetriol / Clycerol / Glycyl alcohol", - "synonymsKr": "글리세린 / 글리세롤 / 글리세린 / 글리세린미스트 / 1,2,3-프로페인트라이올 / 글리롤 / 글리사닌 / 글리세리톨 / 글리세린 무수물 / 글리실 알코올 / 오스모글린 / 트라이하이드록시프로페인 / 프로페인트라이올 / 글리세라믹스-에올", - "unNumber": "", - "casNumber": "56-81-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "CGLN", - "name": "Crude glycerine", - "company": "", - "source": "화물적부도" + "code": "MHDO", + "name": "Menhaden oil", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 478, - "abbreviation": "CGLCOL", - "nameKr": "", - "nameEn": "Crude glycol", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CGLCOL", - "name": "Crude glycol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 479, - "abbreviation": "CHERSO", - "nameKr": "고 애루신산 채종유", - "nameEn": "Crude high erucic rapeseed oil", - "synonymsEn": "RAPESEED OIL / Rapeoil / Rapsoel / AKOREX L / rapedoil / COLZAOIL / RAPESEED OIL / rapessed oil / USRAPESEEDOIL / LIPEX CANOLA-U / NEWRAPESEEDOIL", - "synonymsKr": "RAPE종자 기름 / RAPE종자기름 / 유채기름 / 유채기름 / 유채씨오일 / 카놀라오일", - "unNumber": "", - "casNumber": "8002-13-9", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CHERSO", - "name": "Crude high erucic rapeseed oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 480, - "abbreviation": "CHORSO", - "nameKr": "", - "nameEn": "Crude high oleic rapeseed oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CHORSO", - "name": "Crude high oleic rapeseed oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 481, - "abbreviation": "CLSO", - "nameKr": "아마인유", - "nameEn": "Crude linseed oil", - "synonymsEn": "Linseed oil / FLAXSEED OIL / groco / l-310 / P 1037 / PU 104 / leinol / Flaxoil / Purolin / d= 0.93 / Scan-Oil", + "id": 273, + "abbreviation": "RLSO", + "nameKr": "정제된 아마인유", + "nameEn": "Refined Linseed oil", "synonymsKr": "아마인유 / 아마인기름,RAW / 플렉스시드기름 / RAW아마인기름 / 아마씨기름 / 아마인기름,표백한 / 아마인유 / 올레움리니 / 아마인오일 / 아마씨오일 / 아마씨기름(LINSEEDOIL) / 기름, 아마인 / 아마씨 기름 / 아마씨 기름, 표백 / 아마인 기름", + "synonymsEn": "Linseed oil / FLAXSEED OIL / groco / l-310 / P 1037 / PU 104 / leinol / Flaxoil / Purolin / d= 0.93 / Scan-Oil", "unNumber": "", "casNumber": "8001-26-1", "transportMethod": "", @@ -33165,19 +22991,31 @@ { "code": "CLSO", "name": "Crude linseed oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "LSO", + "name": "Linseed oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RLSO", + "name": "Refined Linseed oil", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 482, + "id": 274, "abbreviation": "COSAFF", "nameKr": "사플라워 씨 오일", "nameEn": "Crude oleic safflowerseed oil", - "synonymsEn": "Safflower oil / Safloroel / safflower / thistleoil / SAFFLOWER OIL / SAFFLOWEROIL,USP / HYBRIDSAFFLOWEROIL / Oil Of Safflower / SAFFLOWER SEED OIL / Hi-oleicsaffloweroil / organic safflower oil", "synonymsKr": "잇꽃씨오일 / 잇꽃씨오일", + "synonymsEn": "Safflower oil / Safloroel / safflower / thistleoil / SAFFLOWER OIL / SAFFLOWEROIL,USP / HYBRIDSAFFLOWEROIL / Oil Of Safflower / SAFFLOWER SEED OIL / Hi-oleicsaffloweroil / organic safflower oil", "unNumber": "", "casNumber": "8001-23-8", "transportMethod": "", @@ -33233,87 +23071,43 @@ { "code": "COSAFF", "name": "Crude oleic safflowerseed oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 483, - "abbreviation": "CPKO", - "nameKr": "", - "nameEn": "Crude palm kernel oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "CPKO", - "name": "Crude palm kernel oil", - "company": "", - "source": "화물적부도" + "code": "CRSAFF", + "name": "Crude regular safflowerseed oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HOSAFF", + "name": "High oleic safflowerseed oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PPSAFF", + "name": "Pre-pressed safflower oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RSAFF", + "name": "Safflower oil", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 484, - "abbreviation": "CPKL", - "nameKr": "야자핵 올레인", - "nameEn": "Crude palm kernel olein", - "synonymsEn": "PALM KERNEL OIL / W 500 / Tefacid / palmnutoil / W 500 (oil) / Palm seed oil / palm-kemel oil / PALMKERNELOILS / Oele, Palmkern- / PALM KERNEL OIL / Oils, palm kernel", + "id": 275, + "abbreviation": "RBDPKL", + "nameKr": "정제, 탈색, 탈취 공정을 거친 파인 코어 오린", + "nameEn": "RBD Palm kernel olein", "synonymsKr": "오일팜커넬오일 / 오일팜커넬오일 / 야자핵유 / 팜커널오일", + "synonymsEn": "PALM KERNEL OIL / W 500 / Tefacid / palmnutoil / W 500 (oil) / Palm seed oil / palm-kemel oil / PALMKERNELOILS / Oele, Palmkern- / PALM KERNEL OIL / Oils, palm kernel", "unNumber": "", "casNumber": "8023-79-8", "transportMethod": "", @@ -33369,55 +23163,85 @@ { "code": "CPKL", "name": "Crude palm kernel olein", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HPKS", + "name": "Hydrogenated palm kernel stearin", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PKO", + "name": "Palm kernel oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PKL", + "name": "Palm kernel olein", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RBDPKO", + "name": "RBD Palm kernel oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RBDPKL", + "name": "RBD Palm kernel olein", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 485, - "abbreviation": "CPO", - "nameKr": "식용유", - "nameEn": "Crude palm oil", + "id": 276, + "abbreviation": "RBDNPO", + "nameKr": "정제, 탈색, 탈취 공정을 거친 팜열매 오일", + "nameEn": "RBD Neutralized palm oil", + "synonymsKr": "HFCPO/야자유/야자버터", "synonymsEn": "PALM OIL / palm / oils,palm / ELAEIS GUINEENSIS (PALM) OIL / PALMFAT / PALM OIL / REDPALMOIL / PALM BUTTER / Oele, Palm- / CRUDEPALMOIL / Palmoilrefined", - "synonymsKr": "아메리카오일팜열매오일 / 아메리카오일팜열매오일 / 오일팜버터 / 오일팜오일 / 야자유(과실로 부터)", "unNumber": "1169", "casNumber": "8002-75-3", "transportMethod": "", "sebc": "", "usage": "식용유, 화장품, 세제, 의약품 제조 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "state": "액체", + "color": "오렌지색", + "odor": "죻은 냄새", + "flashPoint": "314℃", + "autoIgnition": "315℃", + "boilingPoint": "802.5℃", + "density": "0.906", + "solubility": "불용", + "vaporPressure": "(물 17.5mmHg)", "vaporDensity": "", "explosionRange": "", "nfpa": { "health": 0, - "fire": 0, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Y", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", + "responseDistanceFire": "梁 화재위험등급기준", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", + "marineResponse": "부유 (F)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 긴급 의료조치, 신선한 곳으로 이동, 산소공급, 인공호흅 피부접촉 • 20분 이상 흐르는 물에 씻을 것, 즉시 의료조치 안구접촉 - 20분 이상 흐르는 물에 씻을 것, 즉시 의료조치 경구섭취 - 아무거나 먹이지 말 것. 긴급 의료조치", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -33437,427 +23261,85 @@ { "code": "CPO", "name": "Crude palm oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 486, - "abbreviation": "CPL", - "nameKr": "팜오일", - "nameEn": "Crude palm olein", - "synonymsEn": "PALM OIL / palm / oils,palm / ELAEIS GUINEENSIS (PALM) OIL / PALMFAT / PALM OIL / REDPALMOIL / PALM BUTTER / Oele, Palm- / CRUDEPALMOIL / Palmoilrefined", - "synonymsKr": "아메리카오일팜열매오일 / 아메리카오일팜열매오일 / 오일팜버터 / 오일팜오일 / 야자유(과실로 부터)", - "unNumber": "1169", - "casNumber": "8002-75-3", - "transportMethod": "", - "sebc": "", - "usage": "식용유, 화장품, 세제, 의약품 제조 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "CPL", "name": "Crude palm olein", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 487, - "abbreviation": "CPS", - "nameKr": "팜유 스테아린", - "nameEn": "Crude palm stearin", - "synonymsEn": "PALM OIL / palm / oils,palm / ELAEIS GUINEENSIS (PALM) OIL / PALMFAT / PALM OIL / REDPALMOIL / PALM BUTTER / Oele, Palm- / CRUDEPALMOIL / Palmoilrefined", - "synonymsKr": "아메리카오일팜열매오일 / 아메리카오일팜열매오일 / 오일팜버터 / 오일팜오일 / 야자유(과실로 부터)", - "unNumber": "1169", - "casNumber": "8002-75-3", - "transportMethod": "", - "sebc": "", - "usage": "식용유, 화장품, 세제, 의약품 제조 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "CPS", "name": "Crude palm stearin", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 488, - "abbreviation": "CRSO", - "nameKr": "래페씨드 오일", - "nameEn": "Crude rapeseed oil", - "synonymsEn": "RAPESEED OIL / Rapeoil / Rapsoel / AKOREX L / rapedoil / COLZAOIL / RAPESEED OIL / rapessed oil / USRAPESEEDOIL / LIPEX CANOLA-U / NEWRAPESEEDOIL", - "synonymsKr": "RAPE종자 기름 / RAPE종자기름 / 유채기름 / 유채기름 / 유채씨오일 / 카놀라오일", - "unNumber": "", - "casNumber": "8002-13-9", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "CRSO", - "name": "Crude rapeseed oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 489, - "abbreviation": "CRSAFF", - "nameKr": "사플라워 씨 오일", - "nameEn": "Crude regular safflowerseed oil", - "synonymsEn": "Safflower oil / Safloroel / safflower / thistleoil / SAFFLOWER OIL / SAFFLOWEROIL,USP / HYBRIDSAFFLOWEROIL / Oil Of Safflower / SAFFLOWER SEED OIL / Hi-oleicsaffloweroil / organic safflower oil", - "synonymsKr": "잇꽃씨오일 / 잇꽃씨오일", - "unNumber": "", - "casNumber": "8001-23-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "code": "DPFAD", + "name": "Distilled palm fatty acid distillate", + "company": "국제공통", + "source": "적부도" + }, { - "code": "CRSAFF", - "name": "Crude regular safflowerseed oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 490, - "abbreviation": "CSAFF", - "nameKr": "해바라기 씨 오일", - "nameEn": "Crude safflowerseed oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "1", - "casNumber": "8001-21-6", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "code": "DFPO", + "name": "Double fractionated palm oil", + "company": "국제공통", + "source": "적부도" + }, { - "code": "CSAFF", - "name": "Crude safflowerseed oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 491, - "abbreviation": "CSUN", - "nameKr": "해바라기 씨 오일", - "nameEn": "Crude sunflowerseed oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "1", - "casNumber": "8001-21-6", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "code": "FRPO", + "name": "Fully refined palm oil", + "company": "국제공통", + "source": "적부도" + }, { - "code": "CSUN", - "name": "Crude sunflowerseed oil", - "company": "", - "source": "화물적부도" + "code": "FRPL", + "name": "Fully refined palm olein", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HPFA", + "name": "Hydrogenated palm fatty acid distillate", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PALM", + "name": "Palm oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RBDNPO", + "name": "RBD Neutralized palm oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RBDPO", + "name": "RBD Palm oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RPO", + "name": "Refined Palm oil", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 492, + "id": 277, "abbreviation": "CTO", "nameKr": "톨 오일", "nameEn": "Crude tall oil", - "synonymsEn": "TALL OIL / Talll / tallol / Aconon / talleol / acintolc / TALL OIL / unitolcx / yatallma / VersaWet / Tall oils", "synonymsKr": "증류된 T모든 기름 / 증류된T모든기름 / 톨유 / 톨오일", + "synonymsEn": "TALL OIL / Talll / tallol / Aconon / talleol / acintolc / TALL OIL / unitolcx / yatallma / VersaWet / Tall oils", "unNumber": "", "casNumber": "8002-26-4", "transportMethod": "", @@ -33913,87 +23395,19 @@ { "code": "CTO", "name": "Crude tall oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 493, - "abbreviation": "CMN", - "nameKr": "큐멘", - "nameEn": "Cumene", - "synonymsEn": "Cumene / ISOPROPYLBENZENE / 2-PHENYLPROPANE / Cumeen / Isopropylbenzen / Isopropilbenzene / (1-METHYLETHYL)BENZENE / CUMOL / CUMENE / NSC 8776 / Cumene,99%", - "synonymsKr": "/ 쿠멘 / 큐멘 / (1-메틸에틸)벤젠 / 메틸 에틸 벤젠 / 아이소프로필벤젠 / 큐몰 / 프로판-2-일벤젠 / 쿠메네", - "unNumber": "", - "casNumber": "98-82-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CMN", - "name": "Cumene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 494, + "id": 278, "abbreviation": "CHPT", "nameKr": "시클로헵탄", "nameEn": "Cycloheptane", - "synonymsEn": "CYCLOHEPTANE / NSC 5164 / suberane / Cycloheptan / CYCLOHEPTANE / HEPTAMETHYLENE / Cycloheptane,99% / Cycloheptane >Selinexor Impurity 17 / Cycloheptanecarboxylic / CYCLOHEPTANE 97% (GC)", "synonymsKr": "시클로헵탄 / 사이클로헵테인 / 헵타메틸렌 / 사이클로헵탄 / 수베란 / 시클로헵탄", + "synonymsEn": "CYCLOHEPTANE / NSC 5164 / suberane / Cycloheptan / CYCLOHEPTANE / HEPTAMETHYLENE / Cycloheptane,99% / Cycloheptane >Selinexor Impurity 17 / Cycloheptanecarboxylic / CYCLOHEPTANE 97% (GC)", "unNumber": "", "casNumber": "291-64-5", "transportMethod": "", @@ -34036,9 +23450,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "F", + "ibcDetection": "R", "ibcFireFighting": "AC", "ibcMinRequirement": "15.19.6", "emsCode": "", @@ -34049,223 +23463,155 @@ { "code": "CHPT", "name": "Cycloheptane", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 495, + "id": 279, "abbreviation": "CHXN", "nameKr": "시클로헥산", "nameEn": "Cyclohexane", - "synonymsEn": "", - "synonymsKr": "", + "synonymsKr": "헥사메틸렌 / 헥사나프텐 / 벤젠헥사수소화물 / 벤젠 헥사수소화물", + "synonymsEn": "Benzenehexahydride / BENZENE, HEXAHYDRO- / CICLOESANO (ITALIAN) / CYCLOHEXAAN (DUTCH) / CYCLOHEXAN (GERMAN) / CYKLOHEKSAN (POLISH) / HEXAHYDROBENZENE / HEXAMETHYLENE / HEXANAPHTHENE / Benzene hexahydride / APS UL00000175 / UCH00002321 / SPOL00000588 / AR00000719 / AC279590000 / AC279590025 / AC610291000", "unNumber": "", "casNumber": "110-82-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", + "usage": "나일론,페인트제거제 인화성 액체(구분2) 만성수생환경 유해성(구분3) 물칠특성", + "state": "6.6훠찦체", + "color": "무색", + "odor": "석유냄새", + "flashPoint": "너 7.78℃", + "autoIgnition": "260'C", + "boilingPoint": "80.7℃", + "density": "0.78", + "solubility": "불용", + "vaporPressure": "96.9mmHg(25t)", + "vaporDensity": "2.98", + "explosionRange": "1.3~8.4%", "nfpa": { - "health": 0, + "health": 3, "fire": 0, - "reactivity": 0, + "reactivity": 1, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "128", + "idlh": "1,300 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "반경 50m 이상", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발 (E)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "고인화성, 흡인성 유해, 피부/호흡기 자극, 중추신경계", + "firstAid": "흡입노출 • 토하게 하지 말 것, 인공호흡, 산소공급 _ 피부접촉 • 피부를 비누와 물로 씻을 것, 화상의 경우 찬물로 씻을 것 OM 조지 안구접촉 • 몇 분간 물에 씻을 것, 콘택트렌즈 제거할 것 경구섭취 • 긴급 의료조치", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 일반 포말 이용.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 소화포 이용 분무주수로 증기운 이동 억제.", + "exposure": "TWA 200 ppm, IDLH 1,300 ppm", "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "F", + "ibcDetection": "R", "ibcFireFighting": "AC", "ibcMinRequirement": "15.19.6, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "CHXN", "name": "Cyclohexane", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 496, + "id": 280, "abbreviation": "CHXNL", "nameKr": "시클로헥산올", "nameEn": "Cyclohexanol", - "synonymsEn": "Cyclohexanol / Cyclohexano / CYCLOHEXYL ALCOHOL / Anol / HEXALIN / 1-Cyclohexanol / HEXAHYDROPHENOL / Naxol / Adronal / Adronol / hexaline", - "synonymsKr": "사이클로헥산올 / 사이클로헥산올 / 시클로헥사놀 / 시클로헥산올 / 히드랄린 / 헥사하이드로페놀 / 시클로헥실알코올 / 아드로날 / 헥살린 / 낙솔 / 하 / 사이클로헥실 알코올 / 아놀 / 헥사히드로페놀 / 히드로페놀 / 히드록시사이클로헥산", + "synonymsKr": "히드라린 / 사이클로헥실 알코올 / 하이드로페놀 / 아드로날", + "synonymsEn": "Cyclohexanol / Cyclohexano / CYCLOHEXYL ALCOHOL / Anol / HEXALIN / 1-Cyclohexanol / HEXAHYDROPHENOL / Naxol / Adronal / Adronol / hexaline / cyclohexyl alcohol / hexylic alcohol / amylcarbinol / hexahydrophenol / hydrophenol / hydroxycyclohexane / hexalin / hydralin / adronal / anol / naxol / phenol / hexahydro- / cyclic aliphatic alcohol", "unNumber": "", "casNumber": "108-93-0", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "히:느", + "color": "무색", + "odor": "자극성 냄새(장뇌)", + "flashPoint": "68。6℃", + "autoIgnition": "300℃", + "boilingPoint": "16rc", + "density": "0,96", + "solubility": "40g/L(20’C)", + "vaporPressure": "0.98mmHg(20t)", + "vaporDensity": "3.5", + "explosionRange": "1~10%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "129", + "idlh": "400 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", + "responseDistanceFire": "800m", "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유 •용해 (FD)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성, 호흡기/피부/안구 자극", + "firstAid": "흡입노출 • 긴급 의료조치, 산소공급, 인공호흡 피부접촉 • 긴급 의료조치, 화상의 경우 다량의 찬물로 씻을 것. 20분 이상 흐르는 물에 씻을 것 안구접촉 • 몇 분간 물로 씻을 것, 콘택트렌즈 제거 경구섭취 • 긴급 의료조치, 입을 씻어낼 것 초동 대응방법 대응장비 보호복 호흡구 보안경 보호장갑 3,4형식 (C굽) 방독마스크(반면, 전면) 厂, 1형삭 (1B) 공기호흡기 피 이 기타장비 열화상카메라 1 초기 이격거리(m) ' 50 방호거리(m) 300 1 해상유출시 ► 유출물질은 눈, 피부 접촉, 흅입 등 인체노출 시 유해성이 있으므로 모든 출동세력 풍상에 위치. 최소 50m 이격거리 유지, 주변선박 통제 ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용(사고선 근접 시 1B급 착용), 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 부유하면서 용해되므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니 터링 1 화재 시대피거리(m) 800 1 + ►유출물질온 연소시 유독가스 방출, 풍상에 위치, 최소 이격거리 유지하고 내알콜포 이용 화재진압 화재.", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제.", + "exposure": "TWA 50 ppm, IDLH 400 ppm", "regulation": "" }, "ibcHazard": "P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "No", + "ibcDetection": "O", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.19.6, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "CHXNL", "name": "Cyclohexanol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 497, - "abbreviation": "CHXN/NL", - "nameKr": "사이클로헥사논", - "nameEn": "Cyclohexanone/Cyclohexanol mixture", - "synonymsEn": "Cyclohexanone / HEXANONE / Anon / ANONE / Hexanon / Sextone / Cykloheksanon / CYCLOHEXANONE REAGENT (ACS) / CYCLOHEXANONE, REAGENT (ACS)CYCLOHEXANONE, REAGENT (ACS)CYCLOHEXANONE, REAGENT (ACS) / Nadone / hytrolo", - "synonymsKr": "사이클로헥사논 / 섹톤(SEXTONE)케토헥사메틸렌(KETOHEXAMETHYLENE)시클로헥실케톤(CYCLOHEXYLKETONE)NCI-C55005 / 아논(ANONE)헥사논 / 케토시클로헥산(KETOCYCLOHEXANE)옥소시클로헥산 / 피멜린케톤 / 히트롤O(HYTROLO)나돈(NADONE)피메르케톤 / 사이클로헥사논 / 사이클로헥세인온 / 시클로헥사논 / 아논 / 시클로헥산온 / 아농 / 사이클로헥산온 / 나돈 / 섹스톤 / 시클로헥실 케톤 / 케토헥사메틸렌 / 피멜릭 케톤 / 피멜린 케톤 / 헥사논 / 히트롤 O", - "unNumber": "", - "casNumber": "108-94-1", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CHXN/NL", - "name": "Cyclohexanone/Cyclohexanol mixture", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 498, + "id": 281, "abbreviation": "CHA", "nameKr": "사이클로헥실아민", "nameEn": "Cyclohexylamine", - "synonymsEn": "Cyclohexylamine / CHA / Cyclohexylamin / AMINOCYCLOHEXANE / HEXAHYDROANILINE / cyclohexaneamine / CHA-60 / cha[qr] / AURORA KA-7609 / CYCLOHEXYLAMINE / hexahydro-anilin", "synonymsKr": "시클로헥실아민 / 시클로헥실아민 / 사이클로헥실아민(시클로헥실아민) / 시클로헥산아민 / 아미노시클로헥산 / 헥사하이드로벤젠아민 / 1-시클로헥실아민 / 사이클로헥실아민 / 아미노사이클로헥세인 / 헥사하이드로아닐린 / 사이클로헥산아민", + "synonymsEn": "Cyclohexylamine / CHA / Cyclohexylamin / AMINOCYCLOHEXANE / HEXAHYDROANILINE / cyclohexaneamine / CHA-60 / cha[qr] / AURORA KA-7609 / CYCLOHEXYLAMINE / hexahydro-anilin", "unNumber": "", "casNumber": "108-91-8", "transportMethod": "", @@ -34308,9 +23654,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.17, 15.19", "emsCode": "", @@ -34321,19 +23667,19 @@ { "code": "CHA", "name": "Cyclohexylamine", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 499, + "id": 282, "abbreviation": "DHN", "nameKr": "테카히드로나프탈린", "nameEn": "Decahydronaphthalene", - "synonymsEn": "Decahydronaphthalene / DECALIN / DECALINE / NAPHTHANE / NAPHTHALANE / Decahydronaphthalin / Bicyclo[4.4.0]decane / DEKALIN / decalene / Dekalina / Naphthan", "synonymsKr": "데카하이드로나프탈렌 / 나프탈란 / 데칼린(DECALIN)데칼린(DEKALIN)나프탄(NAPHTHAN)과히드로나프탈렌(PERHYDRONAPHTHALENE)나프탄 / 나프탈렌,데카히드로-(NAPHTHALENE,DECAHYDRO-)이시클로(4.4.0)데칸 / 데카인 / 데카하이드로나프탈렌 / 시스-데칼린 / 데칼린 / 나프탄 / 데카히드로나프탈렌", + "synonymsEn": "Decahydronaphthalene / DECALIN / DECALINE / NAPHTHANE / NAPHTHALANE / Decahydronaphthalin / Bicyclo[4.4.0]decane / DEKALIN / decalene / Dekalina / Naphthan", "unNumber": "", "casNumber": "91-17-8", "transportMethod": "", @@ -34376,9 +23722,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "R", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", "emsCode": "", @@ -34389,33 +23735,33 @@ { "code": "DHN", "name": "Decahydronaphthalene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 500, + "id": 283, "abbreviation": "DER331", "nameKr": "에폭시 수지", "nameEn": "DER 331 epoxy resins", - "synonymsEn": "·(C7-H10-N2.C3-H6-O.C2-H4-O)x Pluracol 824, benzenediamine, ar-methyl-, polymer with methyloxirane and oxirane, polyether polyol, polyurethane, toluenediamine, ethylene oxide, propylene oxide polymer", "synonymsKr": "도우 D.E.R.(R) 331 에폭시 수지 / 도우D.E.R.(R)331에폭시수지 / 비스페놀A디글리시딜에테르수지 / 비스페놀A디글리시딜에테르수지", + "synonymsEn": "D.E.R.(R) 332 / diglycidyl / oxirane,2,2’-[(1-methylethylidene)bis(4,1-phenyleneoxymethylene)]bis-, / bisphenol A diglycidyl ether polymer / araldite B / ARALDITEMY790 / Bisphenol Apoxyresin-03 / BisphenolAepoxyresinE-03 / diglycidylbisphenolaresin / DOW D.E.R. (R) 331 EPOXY RESIN / D.E.R.(R) 332 ISO 9001:2015 REACH", "unNumber": "", "casNumber": "25085-99-8", "transportMethod": "", "sebc": "", - "usage": "접착제, 자동차 및 코일 코팅용 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "usage": "접착제, 자동차 코팅용, 코일 코팅용 험 해 류 위 유 분 피부부식성/자극성(구분2) 심한 눈 손상성/자극성(구분2) 피부과민성(구분1) 급성수생환경유해성(구분2) 만성수생환경유해성(구분2)", + "state": "액체", + "color": "무색~노란색", + "odor": "순한 냄새", + "flashPoint": "252℃", "autoIgnition": "", "boilingPoint": "", - "density": "", + "density": "1.16", "solubility": "", - "vaporPressure": "", + "vaporPressure": "(물 23.8mmHg)", "vaporDensity": "", "explosionRange": "", "nfpa": { @@ -34424,20 +23770,20 @@ "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/X", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "침강 (S)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 신선한 곳으로 이동, 의사진료 다 _ 피부접촉 • 비누와 다량의 물로 충분히 씻을 것, 의사진료 °급조지 안구접촉 • 물로 깨끗이 씻을 것, 콘택트렌즈 제거, 의사진료 경구섭취 • 응급처치는필요 없음 초동 대응방법 방진마스크 0 O 열화상카메라 초기 이격거리(m) 50 방호거리(m) 50 ’ 유출물질은 수생생물에 유독하며. 피부와 눈을 자극할 수 있으므로 모든 출동세력 풍상에 위치, 최소 이격거리 해상유출시 유지 ► 출동 경비정(방제정) 방진마스크를 포함한 최소 3,4형식 보호의 착용, 피부와 눈에 접촉을 피할 것 > 유출물질은 해상에 부유하다 가라앉는 물질로 초기에 물엿처럼 부유하므로 초기 방제가 필요 할 수 있음 (유사물질 해상유출사례 있음, 2018. 1.9. 온산항) 화재 시 대피거리(m) 800 + ► 유출물질은 연소시 유독가스 방출, 풍상에 위치, 최소 이격거리 유지하고 내알꼴포 이용 화재진압 화재•폭발시 으 열화상카메라 운용(결과전파), 소화포 이용 사고선 냉각조치 할 것 > 직수분사 금지(화재를 번지게 할 수 얐음〉 ► 안전이 확보되면, 화학방제함 또는 예인선 동원 긴급예인 조치 77", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -34457,19 +23803,19 @@ { "code": "DER331", "name": "DER 331 epoxy resins", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 501, + "id": 284, "abbreviation": "DER383", "nameKr": "에폭시 수지", "nameEn": "DER 383 epoxy resins", + "synonymsKr": "에피클로로하이드린-비스페놀 A 수지 / 에피클로로하이드린-비스페놀A수지 / (클로로메틸)옥시레인과의4,4-(1-메틸에틸리덴)비스페놀중합체 / 4,4'-아이소프로필리덴다이페놀 / 에피클로로하이드린코폴리머 / 에피클로로하이드린-비스페놀A수지 / 셔윈-윌리암스 타르 가드 콜 타르 에폭시 (Pt B) 경화제 / (클로로메틸)옥시레인과의 4,4-(1-메틸에틸리덴) 비스페놀 중합체 / 1-클로로-2,3-에폭시프로페인과의 4,4-아이소프로필리덴다이페놀 중합체 / 다이안-에피클로로하이드린 공중합체 / 다이안-에피클로로하이드린 중합체 / 비스페놀 A-에피클로로하이드린 수지 / 페놀, 4,4-아이소프로필리덴다이-, 1-클로로-2,3-에폭시프로페인과의 중합체 / 비스페놀올디글리시딜수지", "synonymsEn": "BISPHENOL A DIGLYCIDYL ETHER RESIN / Der331 / CYD-128 / e1001 / epon1001 / EPON RESIN 828 / (Chloromethyl)oxirane,4,4’-(1-methylethylidene)bisphenolcopolymer / 4,4’-(1-methylethylidene)bis-phenopolymerwith(chloromethyl)oxirane / 4,4’-(1-methylethylidene)bisphenol,-,polymerwith2,2’-[(1-methylethylidene) / e828 / e1004", - "synonymsKr": "에피클로로하이드린-비스페놀 A 수지 / 에피클로로하이드린-비스페놀A수지 / (클로로메틸)옥시레인과의4,4-(1-메틸에틸리덴)비스페놀중합체 / 4,4'-아이소프로필리덴다이페놀/에피클로로하이드린코폴리머 / 에피클로로하이드린-비스페놀A수지 / 셔윈-윌리암스 타르 가드 콜 타르 에폭시 (Pt B) 경화제 / (클로로메틸)옥시레인과의 4,4-(1-메틸에틸리덴) 비스페놀 중합체 / 1-클로로-2,3-에폭시프로페인과의 4,4-아이소프로필리덴다이페놀 중합체 / 다이안-에피클로로하이드린 공중합체 / 다이안-에피클로로하이드린 중합체 / 비스페놀 A-에피클로로하이드린 수지 / 페놀, 4,4-아이소프로필리덴다이-, 1-클로로-2,3-에폭시프로페인과의 중합체 / 비스페놀올디글리시딜수지", "unNumber": "-", "casNumber": "25068-38-6", "transportMethod": "", @@ -34525,19 +23871,25 @@ { "code": "DER383", "name": "DER 383 epoxy resins", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EPRSIN", + "name": "Epoxy resins", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 502, + "id": 285, "abbreviation": "DAA", "nameKr": "디아세톤 알코올", "nameEn": "Diacetone alcohol", - "synonymsEn": "Diacetone Alcohol / 2-Pentanone, 4-hydroxy-4-methyl- / DAA / 4-HYDROXY-4-METHYL-2-PENTANONE / Diacetone / 4-HYDROXY-4-METHYLPENTAN-2-ONE / Tyranton / Diketone alcohol / Acetonyldimethylcarbinol / Pyranton a / Diacetone alcoho", "synonymsKr": "디아세톤알코올 / 4-하이드록시-4-메틸-2-펜타논 / 2-메틸-2-펜탄올-4-온 / 4-히드록시-2-케토-4-메틸펜탄 / 4-히드록시-4-메틸-2-펜탄온 / 디아세톤알코올 / 디아세톤알콜 / 아세토닐디메틸카빈올 / 디아세톤알콜 / 아세토닐디메틸카빈올 / 2-메틸-2-펜탄올-4-온 / 4-하이드록시-4-메틸- / 다이아세톤알코올 / 다이아세톤알코올 / 2-메틸-2-하이드록시-2-펜타논 / 2-하이드록시-2-메틸-4-펜타논 / 4-하이드록시-2-케토-4-메틸펜탄 / 4-하이드록시-4-메틸펜탄-2-온 / 다이아세톤 / 다이아세톤 알코올 / 타이란톤", + "synonymsEn": "Diacetone Alcohol / 2-Pentanone, 4-hydroxy-4-methyl- / DAA / 4-HYDROXY-4-METHYL-2-PENTANONE / Diacetone / 4-HYDROXY-4-METHYLPENTAN-2-ONE / Tyranton / Diketone alcohol / Acetonyldimethylcarbinol / Pyranton a / Diacetone alcoho", "unNumber": "", "casNumber": "123-42-2", "transportMethod": "", @@ -34580,9 +23932,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "R", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", "emsCode": "", @@ -34593,87 +23945,19 @@ { "code": "DAA", "name": "Diacetone alcohol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 503, - "abbreviation": "DIALAA", - "nameKr": "", - "nameEn": "Diala A", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "DIALAA", - "name": "Diala A", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 504, + "id": 286, "abbreviation": "DAP", "nameKr": "디알킬 프탈레이트", "nameEn": "Dialkyl (C7-C13) phthalates", - "synonymsEn": "1,2-Benzenedicarboxylic acid, di-C7-11-branched and linear alkyl esters / CL241 / DI(C7-C11)LINEARALKYL / di-C7-11-alkyl phthalate / DIALKYL(C7-C11)PHTHALATE / C7,C9,C11-DIALKYLPHTHALATE / C7-C11DIALKYLPHTHALATEESTERS / DI(C7-C11)LINEARALKYLPHTHALATE / PHTHALICACID,DIALKYL(C7-C11)ESTERS / Dialkyl(C7-branched and linear) phthalate / Di-C7-11-branched And Linear Alkyl Esters", "synonymsKr": "1,2-벤젠디카복실산, 디-C7-11-가지상과 직선상의 알킬 에스테르 / 1,2-벤젠다이카복실산,다이-C7-11-가지상과직선상의알킬에스터 / 1,2-벤젠디카복실산,디-C7-11-가지상과직선상의알킬에스테르 / 1,2-벤젠다이카복실산,다이-C7-11-가지상과직선상의알킬에스터 / 1,2-벤젠다이카복실릭애씨드,다이-C7-11-측쇄형및직선형알킬에스터류 / 1,2-벤젠디카르복실산,디-C7-11-분지형및선형알킬에스테르", + "synonymsEn": "1,2-Benzenedicarboxylic acid, di-C7-11-branched and linear alkyl esters / CL241 / DI(C7-C11)LINEARALKYL / di-C7-11-alkyl phthalate / DIALKYL(C7-C11)PHTHALATE / C7,C9,C11-DIALKYLPHTHALATE / C7-C11DIALKYLPHTHALATEESTERS / DI(C7-C11)LINEARALKYLPHTHALATE / PHTHALICACID,DIALKYL(C7-C11)ESTERS / Dialkyl(C7-branched and linear) phthalate / Di-C7-11-branched And Linear Alkyl Esters", "unNumber": "", "casNumber": "68515-42-4", "transportMethod": "", @@ -34716,11 +24000,11 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "T", + "ibcDetection": "C", "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12, 15.17, 15.19.6, 16.2.6", + "ibcMinRequirement": "15.12, 15.17, 15.19.6,\n16.2.6", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -34729,19 +24013,19 @@ { "code": "DAP", "name": "Dialkyl (C7-C13) phthalates", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 505, + "id": 287, "abbreviation": "DBP", "nameKr": "디부틸 프탈레이트", "nameEn": "Dibutyl phthalate", - "synonymsEn": "Dibutyl phthalate / DBP / DI-N-BUTYL PHTHALATE / Bis-n-butyl Phthalate / Bufa / dibutyl-o-phthalate / PHTHALIC ACID DIBUTYL ESTER / PHTHALIC ACID, BIS-BUTYL ESTER / Palatinol C / ARALDITE RESIN / Dibutylphthalat", "synonymsKr": "다이부틸푸탈레이트 / 부틸프탈산(BUTYLPHTHALATE)O-벤젠디카르복실산,디부틸에스테르(O-BENZENEDICARBOXYLICACID,DIBUTYLESTER)1,2-벤젠디카르복실산,디부틸에스테르(1,2-BENZENEDICARBOXYLICACID,DIBUTYLESTER)디부틸-1,2-벤젠디카르복실산(DIBUTYL-1,2-BENZENEDICARBOXYLATE)디부틸프탈산에스테르(DIBUTYLPHTHALATEESTER)벤젠-O-디카르복실산,디-N-부틸에스테르(BENZENE-O-DICARBOXYLICACID,DI-N-BUTYLESTER)DBP / 비스-N-부틸프탈산 / N-부틸프탈산 / 다이부틸푸탈레이트 / 디부틸프탈레이트 / 프탈산,디부틸에스테르(PHTHALICACID,DIBUTYLESTER)디-N-부틸프탈산 / 디부틸프탈산 / 다이부틸프탈레이트 / 디부틸프탈레이트 / 다이뷰틸 프탈산 / 디부틸 프탈레이트 / 디-n-부틸프탈레이트", + "synonymsEn": "Dibutyl phthalate / DBP / DI-N-BUTYL PHTHALATE / Bis-n-butyl Phthalate / Bufa / dibutyl-o-phthalate / PHTHALIC ACID DIBUTYL ESTER / PHTHALIC ACID, BIS-BUTYL ESTER / Palatinol C / ARALDITE RESIN / Dibutylphthalat", "unNumber": "", "casNumber": "84-74-2", "transportMethod": "", @@ -34784,9 +24068,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "T", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.17, 15.19.6", "emsCode": "", @@ -34797,19 +24081,19 @@ { "code": "DBP", "name": "Dibutyl phthalate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 506, + "id": 288, "abbreviation": "DBA", "nameKr": "디부틸아민", "nameEn": "Dibutylamine", - "synonymsEn": "Dibutylamine / DI-N-BUTYLAMINE / DNBA / Dibutylamin / Dibuthylamine / N-DIBUTYLAMINE / N-BUTYL-1-BUTANAMINE / ai3-52649 / ai3-15329 / (n-C4H9)2NH / Dibutilamina", "synonymsKr": "다이-n-뷰틸아민 / 다이-n-뷰틸아민 / 다이-n-뷰틸아민(디-n-뷰틸아민) / 디-n-부틸아민 / 디부틸아민 / 다이뷰틸아민 / 디부틸아민 / N-부틸-1-부탄아민 / 디-N-부틸아민 / N,N-디부틸아민 / N-디부틸아민 / N-부틸부탄-1-아민 / 다이-n-부틸아민 / 다이부틸아민", + "synonymsEn": "Dibutylamine / DI-N-BUTYLAMINE / DNBA / Dibutylamin / Dibuthylamine / N-DIBUTYLAMINE / N-BUTYL-1-BUTANAMINE / ai3-52649 / ai3-15329 / (n-C4H9)2NH / Dibutilamina", "unNumber": "", "casNumber": "111-92-2", "transportMethod": "", @@ -34852,9 +24136,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.12, 15.17, 15.19", "emsCode": "", @@ -34865,19 +24149,19 @@ { "code": "DBA", "name": "Dibutylamine", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 507, + "id": 289, "abbreviation": "DCBZN", "nameKr": "1,2-디클로로벤젠", "nameEn": "Dichlorobenzene", - "synonymsEn": "1,2-Dichlorobenzene / O-DICHLOROBENZENE / ODCB / ORTHODICHLOROBENZENE / Chloroben / o-Dichlorbenzene / 2-dichlorobenzene / 1,2-Dichlorbenzene / Dichlorobenzene, o- / Dizene / Cloroben", "synonymsKr": "1,2-디클로로벤젠 / 도우테름E / 벤젠,O-디클로로- / 0-다이클로로벤젠 / 1,2-디클로로벤젠 / 1벤젠,1,2-디클로로- / o-다이클로로벤젠 / o-디클로로벤젠 / O-디클로로벤젠,액체 / 클로로벤 / 디클로로벤젠 / O-다이클로로벤젠(1,2-다이클로로벤젠) / 1,2-다이클로로벤젠 / o-이염화벤젠", + "synonymsEn": "1,2-Dichlorobenzene / O-DICHLOROBENZENE / ODCB / ORTHODICHLOROBENZENE / Chloroben / o-Dichlorbenzene / 2-dichlorobenzene / 1,2-Dichlorbenzene / Dichlorobenzene, o- / Dizene / Cloroben", "unNumber": "", "casNumber": "95-50-1", "transportMethod": "", @@ -34933,19 +24217,25 @@ { "code": "DCBZN", "name": "Dichlorobenzene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "ODBZN", + "name": "o-Dichlorobenzene", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 508, + "id": 290, "abbreviation": "DCEE", "nameKr": "디클로로에틸 에테르", "nameEn": "Dichloroethyl ether", - "synonymsEn": "2,2'-Dichlorodiethyl ether / 1-Chloro-2-(2-chloroethoxy)ethane / BIS(2-CHLOROETHYL) ETHER / DICHLOROETHYL ETHER / DCEE / Chloroethyl ether / 2-CHLOROETHYL ETHER / DICHLORO DIETHYL ETHER / Di(2-chloroethyl) ether / 2,2-DICHLORODIETHYL ETHER / bcee", "synonymsKr": "비스(2-클로로에틸) 에테르 / 2,2'-디클로로에틸에테르 / 2-클로로에틸에테르 / 디클로로에틸에테르 / 비스(2-클로로에틸)에테르 / 비스(2-클로로에틸)에터 / 비스(2-클로로에틸) 에테르 / 디클로로에틸산화물 / 베타,베타-디클로로에틸에테르", + "synonymsEn": "2,2'-Dichlorodiethyl ether / 1-Chloro-2-(2-chloroethoxy)ethane / BIS(2-CHLOROETHYL) ETHER / DICHLOROETHYL ETHER / DCEE / Chloroethyl ether / 2-CHLOROETHYL ETHER / DICHLORO DIETHYL ETHER / Di(2-chloroethyl) ether / 2,2-DICHLORODIETHYL ETHER / bcee", "unNumber": "", "casNumber": "111-44-4", "transportMethod": "", @@ -34988,9 +24278,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.17, 15.18, 15.19", "emsCode": "", @@ -35001,21 +24291,21 @@ { "code": "DCEE", "name": "Dichloroethyl ether", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 509, - "abbreviation": "DPN", - "nameKr": "디시클로펜타디엔", - "nameEn": "Dicyclopentadiene", - "synonymsEn": "Dicyclopentadiene / DCPD / C10H12 / Dicyclopentadien / CYCLOPENTADIENE DIMER / 3A,4,7,7A-TETRAHYDRO-4,7-METHANOINDENE / Dicyclpentadiene / Bicyclopentadiene / 1,3-cyclopentadiene dimer / DicycL / DCPD90%", - "synonymsKr": "디사이클로펜타디엔 / 디사이클로펜타디엔 / 디시클로펜타디엔 / 다이사이클로펜타디엔 / 1,3-다이사이클로펜타디엔 이합체 / 1,3-사이클로펜타디엔 이합체 / 1,3-사이클로펜타디엔, 이합체 / 3a,4,7,7a-테트라하이드로-4,7-메타노인덴 / 4,7-메타노-1H-인덴, 3a,4,7,7,7a-테트라하이드로- / 4,7-메타노-3A,4,7,7A-테트라하이드로인덴 / 바이사이클로펜타디엔 / 사이클로펜타디엔 이합체 / 트라이사이클로(5.2.1.02,6)데카-3,8-디렌", + "id": 291, + "abbreviation": "DEBZN", + "nameKr": "디에틸벤젠", + "nameEn": "Diethyl benzene", + "synonymsKr": "1,2-디에틸벤젠 / 1,2-다이에틸벤젠 / 1,2-디에틸벤젠 / o-디에틸벤젠", + "synonymsEn": "1,2-DIETHYLBENZENE / O-DIETHYLBENZENE / 1,2-DiethyL / 1.2-Diethylben / o-diethylenzene / o-diethyl-benzen / 1,2-Diethylbenzol / 1,2-diethyl-benzen / Diethylbenzene, o- / Diethylbenzene,95% / 1,2-DIETHYLBENZENE", "unNumber": "", - "casNumber": "77-73-6", + "casNumber": "135-01-3\n141-93-5\n105-05-5", "transportMethod": "", "sebc": "", "usage": "", @@ -35055,216 +24345,12 @@ "exposure": "", "regulation": "" }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "DPN", - "name": "Dicyclopentadiene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 510, - "abbreviation": "DIDPE", - "nameKr": "디이소도데실 프탈레이트", - "nameEn": "DIDP-E", - "synonymsEn": "·1,2-BENZENEDICARBOXYLIC ACID, DIISODECYL ESTER ·BIS(ISODECYL) PHTHALATE ·DIDP ·DIDP (PLASTICIZER) ·PHTHALIC ACID, BIS(8-METHYLNONYL) ESTER ·PHTHALIC ACID, DIISODECYL ESTER ·PLASTICIZED DDP ·PX 120 ·SICOL 184 ·Phthalic acid, diisodecyl ester ·bis(isodecyl phthalate) ·DIDP ·DisoDP ·1, 2 benzenedicarboxylic acid, diisodecyl ester ·1, 2-benzenedicarboxylic acid, di-(C9-C11) branched chain alkyl ester", - "synonymsKr": "·벤젠다이카복실산, 다이아이소데실 에스터 ·비스(아이소데실) 프탈레이트 ·프탈익산, 비스(8-메틸노닐) 에스터 ·프탈익 산, 다이아이소데실 에스터 ·프탈익산, 다이아이소데실 에스터 ·비스(아이소데실 프탈레이트) ·1, 2 벤젠다이카복실산, 다이아이소데실 에스터 ·1, 2-벤젠다이카복실산, 다이-(C9-C11) 알킬 에스터 체인", - "unNumber": "3082", - "casNumber": "26761-40-0", - "transportMethod": "", - "sebc": "", - "usage": "케이블, 자동차 내장재, 컨베이어 벨트, 플라스티졸, 코팅 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "DIDPE", - "name": "DIDP-E", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 511, - "abbreviation": "DLA", - "nameKr": "디에탄올아민", - "nameEn": "Diethanolamine", - "synonymsEn": "Diethanolamine / DEA / Aliphatic amine / Diolamine / Diethanolamin / dela / Iminodiethanol / 2,2'-Azanediyldiethanol / 2-(2-hydroxyethylamino)ethanol / 2,2-IMINODIETHANOL / 2,2'-DIHYDROXYDIETHYLAMINE", - "synonymsKr": "다이에탄올아민 / 2,2-이미노디에탄올(2,2-IMINODIETHANOL)디올아민 / 2,2-이미노비스(에탄올)(2,2-IMINOBIS(ETHANOL))이미노디에탄올 / 다이에탄올아민 / 다이에탄올아민(디에탄올아민) / 디에탄올아민 / 비스(2-히드록시에틸)아민(BIS(2-HYDROXYETHYL)AMINE)2,2-디히드록시디에틸아민(2,2-DIHYDROXYDIETHYLAMINE)디(2-히드록시에틸)아민(DI(2-HYDROXYETHYL)AMINE)2-((2-히드록시에틸)아미노)에탄올(2-((2-HYDROXYETHYL)AMINO)ETHANOL)비스(히드록시에틸)아민(BIS(HYDROXYETHYL)AMINE)N,N-디에탄올아민(N,N-DIETHANOLAMINE)B,B-디히드록시-디에틸아민(B,B-DIHYDROXY-DIETHYLAMINE)DI(BETA-HYDROXYETHYL)AMINE / 2,2'-이미노비스-에탄올 / 2,2’악사네딜-b-에탄올 / 2,2'-다이하이드록시다이에틸아민 / 2,2'-이미노다이에탄올 / 다이(2-하이드록시에틸)아민 / 비스(2-하이드록시에틸)아민 / N,N-디에탄올아민", - "unNumber": "1719", - "casNumber": "111-42-2", - "transportMethod": "", - "sebc": "", - "usage": "액체 세탁 및 식기 세척, 세제, 화장품, 샴푸 및 헤어 컨디셔너 등 사용 (계면활성제 성분)", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "T", + "ibcDetection": "R", "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12, 15.17, 15.19.6, 16.2.6, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "DLA", - "name": "Diethanolamine", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 512, - "abbreviation": "DEBZN", - "nameKr": "디에틸벤젠", - "nameEn": "Diethyl benzene", - "synonymsEn": "1,2-DIETHYLBENZENE / O-DIETHYLBENZENE / 1,2-DiethyL / 1.2-Diethylben / o-diethylenzene / o-diethyl-benzen / 1,2-Diethylbenzol / 1,2-diethyl-benzen / Diethylbenzene, o- / Diethylbenzene,95% / 1,2-DIETHYLBENZENE", - "synonymsKr": "1,2-디에틸벤젠 / 1,2-다이에틸벤젠 / 1,2-디에틸벤젠 / o-디에틸벤젠", - "unNumber": "", - "casNumber": "135-01-3 141-93-5 105-05-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -35273,19 +24359,19 @@ { "code": "DEBZN", "name": "Diethyl benzene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 513, + "id": 292, "abbreviation": "DET", "nameKr": "디에틸 에테르", "nameEn": "Diethyl ether", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "60-29-7", "transportMethod": "", @@ -35341,19 +24427,19 @@ { "code": "DET", "name": "Diethyl ether", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 514, + "id": 293, "abbreviation": "DSP", "nameKr": "디엘틸 황산염", "nameEn": "Diethyl sulphate", - "synonymsEn": "Diethyl sulfate / DIETHYL SULPHATE / DS / ETHYL SULFATE / SULFURIC ACID DIETHYL ESTER / DHYS / MIG13 / Ethylsulpate / Diethylsulfat / Diaethylsulfat / DIETHYL SULFATE", "synonymsKr": "다이에틸설페이트 / 다이에틸설페이트 / 디에틸설페이트 / 디에틸황산염 / 디에틸황산 / 황산디에틸 / 황산디에틸,디에틸황산 / 디에틸황산염 / 황산,디에틸에스테르 / 에틸황산 / 디에틸테트라옥소황산염 / 황산디에틸 / 다이에틸 황산염 / 디에틸 모노황산염 / 디에틸 테트라옥소황산염 / 보통 에틸 황산염 / 에틸 황산염 / 황산 디에틸 / 황산, 디에틸 에스터", + "synonymsEn": "Diethyl sulfate / DIETHYL SULPHATE / DS / ETHYL SULFATE / SULFURIC ACID DIETHYL ESTER / DHYS / MIG13 / Ethylsulpate / Diethylsulfat / Diaethylsulfat / DIETHYL SULFATE", "unNumber": "", "casNumber": "64-67-5", "transportMethod": "", @@ -35396,9 +24482,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "T", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.17, 15.19", "emsCode": "", @@ -35409,126 +24495,58 @@ { "code": "DSP", "name": "Diethyl sulphate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 515, - "abbreviation": "DEGBE", - "nameKr": "디에틸렌 글리콜 부틸 에테르", - "nameEn": "Diethylene glycol butyl ether", - "synonymsEn": "Diethylene glycol monobutyl ether / DIETHYLENE GLYCOL MONOBUTYL ETHER / DB / BUTYL CARBITOL / BUTYLDIGLYCOL / 2-(2-BUTOXYETHOXY)ETHANOL / Ethanol, 2-(2-butoxyethoxy)- / DIETHYLENE GLYCOL BUTYL ETHER / DGBE / Butoxyethoxyethanol / DIETHYLENE GLYCOL MONO-N-BUTYL ETHER", - "synonymsKr": "부틸글리콜 / 다이에틸렌글라이콜모노-N-뷰틸에테르 / 2-(2-부톡시에톡시)에탄올 / 부톡시디에틸렌글리콜 / 부틸옥시BUTOXYDIGLYCOL / 부틸카르비톨 / 다이에틸렌글리콜모노뷰틸에테르 / 디에틸렌글리콜모노부틸에테르 / 부틸글리콜 / 뷰틸캐비톨 / 부틸카비톨 / 다이에틸렌글리콜모노뷰틸에테르 / 부톡시다이글라이콜 / 다이에틸렌 글라이콜 모노-N-뷰틸 에테르", - "unNumber": "2810", - "casNumber": "112-34-5", - "transportMethod": "", - "sebc": "", - "usage": "용매, 보습제, 유화제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "DEGBE", - "name": "Diethylene glycol butyl ether", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 516, + "id": 294, "abbreviation": "DEGEE", "nameKr": "디에틸렌 글리콜 에틸 에테르", "nameEn": "Diethylene glycol ethyl ether", - "synonymsEn": "Diethylene Glycol Monoethyl Ether / Transcutol / CARBITOL / 2-(2-ETHOXYETHOXY)ETHANOL / Dowanol / ETHYL CARBITOL / ETHYL DIGLYCOL / Dowanol DE / ETHYL DIGOL / ETHOXYETHOXYETHANOL / ethyldiethyleneglycol", "synonymsKr": "에틸디글리콜 / 다이에틸렌글라이콜모노에틸에테르 / 디에틸렌글리콜모노에틸에테르 / 에톡시디글리콜 / 에틸디글리콜 / 에틸카비톨 / 2-(2-에톡시에톡시에탄올) / 에톡시다이글라이콜 / 에톡시다이글리콜 / 디에틸렌글리콜모노에틸에테르 / 다이에틸렌 글라이콜 모노에틸 에테르 / 솔보솔 / 에틸 디골 / 트랜스큐톨", + "synonymsEn": "Diethylene Glycol Monoethyl Ether / Transcutol / CARBITOL / 2-(2-ETHOXYETHOXY)ETHANOL / Dowanol / ETHYL CARBITOL / ETHYL DIGLYCOL / Dowanol DE / ETHYL DIGOL / ETHOXYETHOXYETHANOL / ethyldiethyleneglycol", "unNumber": "", "casNumber": "111-90-0", - "transportMethod": "", - "sebc": "", + "transportMethod": "산적액체(Y류)", + "sebc": "D (Dissolver)", "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "액체", + "color": "무색", + "odor": "순한 과일향", + "flashPoint": "96℃", + "autoIgnition": "204℃", + "boilingPoint": "196~207℃", + "density": "0.99", + "solubility": "완전 혼화", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "4.5", + "explosionRange": "1.2~23.5%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Z", "ergNumber": "", - "idlh": "", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "자료없음", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "인화성, 눈/피부 자극, 생식독성 의심", + "firstAid": "흡입노출 • 신선한 곳으로 이동, 의료조치 피부접촉 • 즉시 의료조치, 화상의 경무 다량의 찬물로 씻을 것, 20분 이상 흐르는 물로 씻을 것 안구접촉 • 몇 분간 물로 씻을 것, 의료조치. 콘택트렌즈 제거 경구섭취 - 의료조치, 입을 씻어낼 것, 구강대구강 인공호흡 하지 말 것 초동대용방법 보호복 호흡구 보안경 보호장갑 기타장비 대으t 장비 ■....................................................................... ■ ■ ■ 3.4형식 (C굽) 방독마스크(반면,전면). Q Q 열화상카메라 초기 이격거리(m) 자료없음 방호거리(m) 자료없음 ► 유출물질은 섭취 시 유해하고, 눈과 피부를 자극할 수 있으므로 모든 출동세력 풍상에 위치, 최소 이격거리 유지, . 주변선박 통제 해상유출시 . 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용, 증기횸입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 용해되므로 방제조치 불필요 > 화학방제함 유출물질 농도 탐지. 안전확보 시까지 지속적인 모니터링 화재 시대피거리(m) 자료없음 + • 유출물질은 연소시 유", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 통제.", + "exposure": "TWA 1,000 mg/㎥", "regulation": "" }, "ibcHazard": "", @@ -35537,95 +24555,27 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "DEGEE", "name": "Diethylene glycol ethyl ether", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 517, - "abbreviation": "DEGMM", - "nameKr": "디에틸렌 글리콜 모노메틸 에테르", - "nameEn": "Diethylene glycol monomethyl ether", - "synonymsEn": "Diethylene glycol monomethyl ether / DM / 2-(2-METHOXYETHOXY)ETHANOL / degme / METHYL CARBITOL / METHYLDIGLYCOL / METHOXYETHOXYETHANOL / Ethanol,2-(2-methoxyethoxy)- / DIETHYLENE GLYCOL METHYL ETHER / 2-(2- / DIEGME", - "synonymsKr": "디에틸렌 글리콜 모노메틸 에테르 / 2-(메톡시에톡시)에탄올DI / 다이에틸렌글리콜모노메틸에테르 / 디에틸렌글리콜모노메틸에테르 / 메틸디글리콜 / 2-(2-메톡시에톡시)에탄올 / 2-(2-메톡시에톡시)에탄올(메톡시디글라이콜) / 다이에틸렌글라이콜모노메틸에터 / 메톡시다이글리콜 / 다이에틸렌글리콜모노메틸에테르 / 다이에틸렌 글리콜 메틸 에테르 / 2-(2-메톡시에톡시에탄올) / 메틸 다이옥시톨 / 메틸 카비톨", - "unNumber": "", - "casNumber": "111-77-3", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "DEGMM", - "name": "Diethylene glycol monomethyl ether", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 518, + "id": 295, "abbreviation": "DETA", "nameKr": "디에틸렌트리아민", "nameEn": "Diethylene triamine", - "synonymsEn": "Diethylenetriamine / DETA / N1-(2-aMinoethyl)ethane-1,2-diaMine / DIEN / DETA Diethylenetriamine / DIETHYLENTRIAMINE / BIS(2-AMINOETHYL)AMINE / diethylenetriamine(deta) / 1,2-Ethanediamine,N-(2-aminoethyl)- / Diethylenetriamin / 3-Azapentane-1,5-diamine", "synonymsKr": "다이에틸렌트라이아민 / 1,4,7-트리아자헵탄 / 2,2-디아미노디에틸아민 / 2,2-이미노비스(에탄아민) / N-(2-아미노에틸)-1,2-에탄디아민 / N-(2-아미노에틸)에틸렌디아민 / 비스(2-아미노에틸)아민 / 비스(베타-아미노에틸)아민 / 1,2-에탄디아민,N-(2-아미노에틸)- / 다이에틸렌트라이아민 / 디에틸렌트리아민 / 디에틸렌트리아민(DETA) / 디에틸렌트리아민 / 1,4,7-트라이아자헵탄 / 2,2'-다이아미노다이에틸아민 / 2,2'-다이아미노에틸아민 / 2,2'-이미노다이에틸아민 / 2,2'-이미노비스(에탄아민) / 3-아자-1,5-펜탄다이아민 / ChS-P 1 DETA / N-(2-아미노에틸)에틸렌다이아민", + "synonymsEn": "Diethylenetriamine / DETA / N1-(2-aMinoethyl)ethane-1,2-diaMine / DIEN / DETA Diethylenetriamine / DIETHYLENTRIAMINE / BIS(2-AMINOETHYL)AMINE / diethylenetriamine(deta) / 1,2-Ethanediamine,N-(2-aminoethyl)- / Diethylenetriamin / 3-Azapentane-1,5-diamine", "unNumber": "", "casNumber": "111-40-0", "transportMethod": "", @@ -35667,12 +24617,12 @@ "exposure": "", "regulation": "" }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", + "ibcHazard": "S/P", + "ibcShipType": "3", + "ibcTankType": "2G", + "ibcDetection": "C", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.17, 15.19", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -35681,42 +24631,42 @@ { "code": "DETA", "name": "Diethylene triamine", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 519, + "id": 296, "abbreviation": "DGCE", "nameKr": "디글리시딜 에테르", "nameEn": "Diglycidyl ether", - "synonymsEn": "Neopentyl glycol diglycidyl ether / neopentyl / heloxywc68 / DIGLYCIDYLOXYNEOPENTANE / neopentyl glycol diglycidyl / diglycidyletherofneopentylgylcol / 2,2-Bis(glycidyloxymethyl)propane / NEOPENTYL GLYCOL DIGLYCIDYL ETHER / NeopentylGlycolDiglycidylEther>Neopentane glycol Diglycidyl ether / DIGLYCIDYL ETHER OF NEO-PENTYL GLYCOL", "synonymsKr": "네오펜틸 글리콜 디글리시딜 에테르 / 네오펜틸글리콜디글리시딜에테르 / 네오펜틸글리콜디글리시딜에테르", + "synonymsEn": "Neopentyl glycol diglycidyl ether / neopentyl / heloxywc68 / DIGLYCIDYLOXYNEOPENTANE / neopentyl glycol diglycidyl / diglycidyletherofneopentylgylcol / 2,2-Bis(glycidyloxymethyl)propane / NEOPENTYL GLYCOL DIGLYCIDYL ETHER / NeopentylGlycolDiglycidylEther>Neopentane glycol Diglycidyl ether / DIGLYCIDYL ETHER OF NEO-PENTYL GLYCOL", "unNumber": "", - "casNumber": "26403-72-5 17557-23-2 2425-79-8", - "transportMethod": "", - "sebc": "", + "casNumber": "26403-72-5\n17557-23-2\n2425-79-8", + "transportMethod": "산적액체(Z류)", + "sebc": "F (Floater)", "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "state": "반점성 액체", + "color": "황갈색", + "odor": "무취", + "flashPoint": "79℃", "autoIgnition": "", "boilingPoint": "", - "density": "", - "solubility": "", + "density": "1.16", + "solubility": "불용", "vaporPressure": "", - "vaporDensity": "", + "vaporDensity": "11.4", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "해양오염물질", "ergNumber": "", "idlh": "", "aegl2": "", @@ -35724,14 +24674,14 @@ "responseDistanceFire": "", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "해상부유, 흡착재 회수", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "연소 시 독성 유해 가스 발생, 피부자극, 알레르기성 피부반응, 안구자극, 호흡기자극", + "firstAid": "흡입: 신선한 공기, 인공호흡. 피부: 자극 → 물 세척. 안구: 20분 이상 물로 세척. 경구: 구토유발 금지, 의료조치.", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "오일펜스/흡착재 회수.", "exposure": "", "regulation": "" }, @@ -35741,27 +24691,27 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "DGCE", "name": "Diglycidyl ether", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 520, + "id": 297, "abbreviation": "DIBP", "nameKr": "프탈산 디이소부틸", "nameEn": "Diisobutyl phthalate", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "84-69-5", "transportMethod": "", @@ -35804,9 +24754,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "T", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.17, 15.19.6", "emsCode": "", @@ -35817,19 +24767,87 @@ { "code": "DIBP", "name": "Diisobutyl phthalate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 521, + "id": 298, + "abbreviation": "DINP", + "nameKr": "디이소노닐프탈산", + "nameEn": "Diisononyl phthalate", + "synonymsKr": "프탈산디이소노닐 / 다이아이소노닐프탈산 / 디이소노닐프탈산 / 프탈산디이소노닐 / 디이소노닐프탈레이트 / 다이아이소노닐 프탈산 / 1,2-벤젠다이카복실산, 1,2-다이아이소노닐 에스터 / 1,2-벤젠다이카복실산, 다이아이소노닐 에스터 / 다이아이소노닐 프탈레이트 / 디이소노닐 프탈레이트 / 비스(7-메틸옥틸) 벤젠-1,2-다이카복실레이트 / 프탈산, 다이아이소노닐 에스터 / 1,2-벤젠다이카복실산, 다이아이소노닐 에스터 / DINP / ENJ 2065 / 플라티놀 CE 5250 / 플라티놀 DN / 프탈산, 다이아이소노닐 에스터 / Sansocizer DINP / Vestinol NN / WITAMOL 150 / 비스(3,5,5-트라이메틸헥실) 프탈산 / 다이노닐 프탈산", + "synonymsEn": "Diisononyl phthalate / DINP / baylectrol4200 / diisononylphthalate,dinp / PHTHALIC ACID, BIS-ISONONYL ESTER / dinp3 / dinp2 / enj2065 / HSDB 4491 / palatinoln / vestinolnn / 1,2-BENZENEDICARBOXYLIC ACID, DIISONONYL ESTER / DINP / ENJ 2065 / Palatinol CE 5250 / PALATINOL DN / PHTHALIC ACID, DIISONONYL ESTER / Sansocizer DINP / Vestinol NN / WITAMOL 150 / bis(3,5,5-trimethylhexyl) phthalate / dinonyl phthalate", + "unNumber": "3082", + "casNumber": "28553-12-0\n68515-48-0", + "transportMethod": "산적액체(Y류)", + "sebc": "F (Floater)", + "usage": "주로 플라스틱, 고무, 접착제 등의 연화제, 점도\n조정제 등으로 사용", + "state": "액체", + "color": "무색~연황색", + "odor": "약함", + "flashPoint": "252℃", + "autoIgnition": "", + "boilingPoint": "250℃", + "density": "0.97", + "solubility": "5.4×10⁻⁴ mg/L (20℃)", + "vaporPressure": "0.3", + "vaporDensity": "16", + "explosionRange": "", + "nfpa": { + "health": 2, + "fire": 1, + "reactivity": 0, + "special": "" + }, + "hazardClass": "생식독성(구분1B)", + "ergNumber": "", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "", + "responseDistanceSpillDay": "", + "responseDistanceSpillNight": "", + "marineResponse": "해상부유, 흡착재 회수", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", + "msds": { + "hazard": "생식독성 의심, 피부/흡입 자극", + "firstAid": "흡입: 신선한 공기. 피부/안구: 물로 세척. 경구: 의료조치.", + "fireFighting": "분무주수/포말/CO₂.", + "spillResponse": "오일펜스/흡착재 회수.", + "exposure": "", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "DINP", + "name": "Diisononyl phthalate", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 299, "abbreviation": "DIOP", "nameKr": "프탈산 디이소옥틸", "nameEn": "Diisooctyl phthalate", - "synonymsEn": "Diisooctyl phthalate / Isooctyl phthalate / alkylphthalates / Bis(6-methylheptyl) phthalate / Corflex 880 / Morflex 100 / Hexaplas M/O / Witcizer 313 / BISOFLEXDIOP / Palatinol D10 / isooctylphthalate", "synonymsKr": "글명:디 이소옥틸 프탈레이트 / 다이아이소옥틸프탈레이트 / 디이소옥틸프탈레이트 / 디아이소옥틸프탈산 / 디이소옥틸프탈산 / 디아이소옥틸프탈산 / 다이아이소옥틸 프탈레이트", + "synonymsEn": "Diisooctyl phthalate / Isooctyl phthalate / alkylphthalates / Bis(6-methylheptyl) phthalate / Corflex 880 / Morflex 100 / Hexaplas M / O / Witcizer 313 / BISOFLEXDIOP / Palatinol D10 / isooctylphthalate", "unNumber": "", "casNumber": "27554-26-3", "transportMethod": "", @@ -35872,9 +24890,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "No", + "ibcDetection": "O", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.19.6, 16.2.6", "emsCode": "", @@ -35885,19 +24903,19 @@ { "code": "DIOP", "name": "Diisooctyl phthalate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 522, + "id": 300, "abbreviation": "DIPA", "nameKr": "디이소프로필아민", "nameEn": "Diisopropylamine", - "synonymsEn": "Diisopropylamine / DIPA / N,N-Diisopropylamine / Diisopropylamin / Diisoproplamine / Pyridine, 2-methoxy- / (iso-C3H7)2NH / AURORA KA-7634 / DIISOPROPYLAMINE / Isodipropylamine / Torsemide SM3-Z2", "synonymsKr": "다이아이소프로필아민 / 다이아이소프로필아민 / 디이소프로필아민", + "synonymsEn": "Diisopropylamine / DIPA / N,N-Diisopropylamine / Diisopropylamin / Diisoproplamine / Pyridine, 2-methoxy- / (iso-C3H7)2NH / AURORA KA-7634 / DIISOPROPYLAMINE / Isodipropylamine / Torsemide SM3-Z2", "unNumber": "", "casNumber": "108-18-9", "transportMethod": "", @@ -35940,11 +24958,11 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "R", "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.17, 15.19.6", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.17,\n15.19.6", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -35953,21 +24971,21 @@ { "code": "DIPA", "name": "Diisopropylamine", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 523, + "id": 301, "abbreviation": "DMCYCL", "nameKr": "다이메틸 사이클릭 실록산", "nameEn": "Dimethyl cyclics", - "synonymsEn": "Octamethylcyclotetrasiloxane / / D4 / OMCTS / Cyclotetrasiloxane,octamethyl- / Cyclic tetramer / unioncarbide7207 / OCTAMETHYLTETRASILOXANE / Oktamethylcyklotetrasiloxan / Octamethylcyclotetrasiloxane,98% / 2-Benzimidazolecarbamic Acid Methyl Ester-d4 / 2,2,4,4,6,6,8,8-Octamethyl-1,3,5,7,2,4,6,8-tetraoxatetrasilocane", "synonymsKr": "옥타메틸시클로테트라실록산 / 옥타메틸사이클로테트라실록세인 / 옥타메틸사이클로테트라실록산 / 옥타메틸시클로테트라실록산", + "synonymsEn": "Octamethylcyclotetrasiloxane / D4 / OMCTS / Cyclotetrasiloxane,octamethyl- / Cyclic tetramer / unioncarbide7207 / OCTAMETHYLTETRASILOXANE / Oktamethylcyklotetrasiloxan / Octamethylcyclotetrasiloxane,98% / 2-Benzimidazolecarbamic Acid Methyl Ester-d4 / 2,2,4,4,6,6,8,8-Octamethyl-1,3,5,7,2,4,6,8-tetraoxatetrasilocane", "unNumber": "", - "casNumber": "556-67-2 541-02-6 541-05-09", + "casNumber": "556-67-2\n541-02-6\n541-05-09", "transportMethod": "", "sebc": "", "usage": "", @@ -36021,19 +25039,19 @@ { "code": "DMCYCL", "name": "Dimethyl cyclics", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 524, + "id": 302, "abbreviation": "DMPSOX", "nameKr": "다이메틸 폴리실록산", "nameEn": "Dimethyl polysioxane", - "synonymsEn": "Silicone oil / pdms / Silicone / Poly(dimethylsiloxane) / siloxane / HMDO / SILICONE FLUID / Silicone emulsion / DIETHYL ETHER RECTIFIED / dimethylsilicone fluid / polydimethylsiloxanes", "synonymsKr": "폴리다이메틸실록산 / 폴리다이메틸실록산 / 폴리다이메틸실록산(Polydimethylsiloxane) / 폴리다이메틸실록세인류 / 실리콘 유", + "synonymsEn": "Silicone oil / pdms / Silicone / Poly(dimethylsiloxane) / siloxane / HMDO / SILICONE FLUID / Silicone emulsion / DIETHYL ETHER RECTIFIED / dimethylsilicone fluid / polydimethylsiloxanes", "unNumber": "", "casNumber": "63148-62-9", "transportMethod": "", @@ -36089,19 +25107,19 @@ { "code": "DMPSOX", "name": "Dimethyl polysioxane", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 525, + "id": 303, "abbreviation": "DMA45", "nameKr": "디메틸아민 용액", "nameEn": "Dimethylamine solution (45% or less)", - "synonymsEn": "Dimethylamine / (CH3)2NH / Dimethylamin / Metformin EP Impurity F / DiMethylaMine (~2.0 M in THF) / Dimethylamine methanol solution / DiMethylaMine, 2.0 M solution in THF, SpcSeal / Dimethylamine (ca. 10% in Tetrahydrofuran, ca. 2mol/L) / DMA-40 / DMA-60 / DMA-65", "synonymsKr": "디메틸아민 / 디메틸아민 / 다이메틸아민,무수(다이메틸아민,무수) / 디메틸아민(50%수용액) / 디메틸아민(기체) / N-메틸메탄아민 / N,N-디메틸아민 / 디메칠아민 / 다이메틸아민 / 7-(아세틸옥시)-4-메틸-2-벤조파이론", + "synonymsEn": "Dimethylamine / (CH3)2NH / Dimethylamin / Metformin EP Impurity F / DiMethylaMine (~2.0 M in THF) / Dimethylamine methanol solution / DiMethylaMine, 2.0 M solution in THF, SpcSeal / Dimethylamine (ca. 10% in Tetrahydrofuran, ca. 2mol / L) / DMA-40 / DMA-60 / DMA-65", "unNumber": "", "casNumber": "124-40-3", "transportMethod": "", @@ -36144,9 +25162,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "R", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12.3, 15.12.4, 15.19", "emsCode": "", @@ -36157,87 +25175,25 @@ { "code": "DMA45", "name": "Dimethylamine solution (45% or less)", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 526, - "abbreviation": "DMA50", - "nameKr": "디메틸아민 용액", - "nameEn": "Dimethylamine solution (50%)", - "synonymsEn": "Dimethylamine / (CH3)2NH / Dimethylamin / Metformin EP Impurity F / DiMethylaMine (~2.0 M in THF) / Dimethylamine methanol solution / DiMethylaMine, 2.0 M solution in THF, SpcSeal / Dimethylamine (ca. 10% in Tetrahydrofuran, ca. 2mol/L) / DMA-40 / DMA-60 / DMA-65", - "synonymsKr": "디메틸아민 / 디메틸아민 / 다이메틸아민,무수(다이메틸아민,무수) / 디메틸아민(50%수용액) / 디메틸아민(기체) / N-메틸메탄아민 / N,N-디메틸아민 / 디메칠아민 / 다이메틸아민 / 7-(아세틸옥시)-4-메틸-2-벤조파이론", - "unNumber": "", - "casNumber": "124-40-3", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "DMA50", "name": "Dimethylamine solution (50%)", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 527, + "id": 304, "abbreviation": "DMEA", "nameKr": "디메틸에탄올아민", "nameEn": "Dimethylethanolamine", - "synonymsEn": "2-Dimethylaminoethanol / DMAE / DIMETHYLETHANOLAMINE / N,N-DIMETHYLETHANOLAMINE / DIMETHYLAMINOETHANOL / 2-(N,N-DIMETHYLAMINO)ETHANOL / DEANOL / N,N-DIMETHYLAMINOETHANOL / (CH3)2NCH2CH2OH / DMEOA / amietolm21", "synonymsKr": "2-디메틸아미노에탄올 / 2-다이메틸아미노에탄올 / 2-디메틸아미노에탄올 / N,N-다이메틸에탄올아민 / N,N-디메틸아미노에탄올 / N,N-디메틸에탄올아민 / N,N-다이메틸아미노-2-에탄올 / 다이메틸엠이에이 / 2-(다이메틸아미노)에탄올 / N,N-다이메틸-2-하이드록시에틸아민 / Norcholine / 다이메틸에탄올아민 / 데아놀 / 디메틸에탄올아민", + "synonymsEn": "2-Dimethylaminoethanol / DMAE / DIMETHYLETHANOLAMINE / N,N-DIMETHYLETHANOLAMINE / DIMETHYLAMINOETHANOL / 2-(N,N-DIMETHYLAMINO)ETHANOL / DEANOL / N,N-DIMETHYLAMINOETHANOL / (CH3)2NCH2CH2OH / DMEOA / amietolm21", "unNumber": "", "casNumber": "108-01-0", "transportMethod": "", @@ -36280,9 +25236,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "R", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", "emsCode": "", @@ -36293,125 +25249,57 @@ { "code": "DMEA", "name": "Dimethylethanolamine", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 528, - "abbreviation": "DMP", - "nameKr": "디메틸포름아마이드", - "nameEn": "Dimethylphenol", - "synonymsEn": "N,N-Dimethylformamide / DMF / DIMETHYLFORMAMIDE / DMFA / amide,n,n-dimethyl-formicaci / Dimethylformamid / HCON(CH3)2 / Dimethylforamide / DIMETHYL FORMIDE / N,N-Dimethylmethanamide / EMF", - "synonymsKr": "N,N-다이메틸폼아마이드 / 다이메틸폼아마이드 / N,N-다이메틸폼아마이드 / N,N-디메틸포름아미드 / N-포밀다이메틸아민 / 디메틸포름아미드 / 디엠에프 / N,N-다이메틸포름아마이드 / 다이메틸포름아마이드 / Dimethylformamide", - "unNumber": "2265", - "casNumber": "68-12-2", - "transportMethod": "", - "sebc": "", - "usage": "합성피혁, 섬유, 화학제품 생산 공정에서 용매나 첨가제로 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "DMP", - "name": "Dimethylphenol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 529, + "id": 305, "abbreviation": "DINPE", "nameKr": "디이소노닐프탈산", "nameEn": "DINP-E", - "synonymsEn": "·1,2-BENZENEDICARBOXYLIC ACID, DIISONONYL ESTER ·DINP ·ENJ 2065 ·Palatinol CE 5250 ·PALATINOL DN ·PHTHALIC ACID, DIISONONYL ESTER ·Sansocizer DINP ·Vestinol NN ·WITAMOL 150 ·bis(3,5,5-trimethylhexyl) phthalate ·dinonyl phthalate", - "synonymsKr": "·1,2-벤젠다이카복실산, 다이아이소노닐 에스터 ·DINP ·ENJ 2065 ·플라티놀 CE 5250 ·플라티놀 DN ·프탈산, 다이아이소노닐 에스터 ·Sansocizer DINP ·Vestinol NN ·WITAMOL 150 ·비스(3,5,5-트라이메틸헥실) 프탈산 ·다이노닐 프탈산", + "synonymsKr": "LG flex DINP / 프탈산, 다이아이소노닐 에스터 / 다이노닐 프탈산", + "synonymsEn": "Diisononyl phthalate / DINP / baylectrol4200 / diisononylphthalate,dinp / PHTHALIC ACID, BIS-ISONONYL ESTER / dinp3 / dinp2 / enj2065 / HSDB 4491 / palatinoln / vestinolnn / 1,2-BENZENEDICARBOXYLIC ACID, DIISONONYL ESTER / DINP / ENJ 2065 / Palatinol CE 5250 / PALATINOL DN / PHTHALIC ACID, DIISONONYL ESTER / Sansocizer DINP / Vestinol NN / WITAMOL 150 / bis(3,5,5-trimethylhexyl) phthalate / dinonyl phthalate", "unNumber": "3082", "casNumber": "28553-12-0", - "transportMethod": "", - "sebc": "", - "usage": "주로 플라스틱, 고무, 접착제 등의 연화제, 점도 조정제 등으로 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "산적액체(Y류)", + "sebc": "F (Floater)", + "usage": "주로 플라스틱, 고무, 접착제 등의 연화제, 점도\n조정제 등으로 사용", + "state": "점성 액체", + "color": "무색", + "odor": "매우 약한 항기", + "flashPoint": "2orc", + "autoIgnition": "26(rc", + "boilingPoint": "250℃", + "density": "0.97", + "solubility": "5.4×10⁻⁴ mg/L (20℃)", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "16", + "explosionRange": "0.4~2.9%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/X", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "부유 (F)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "생식독성 의심, 피부/흡입 자극", + "firstAid": "흡입노출 •긴급의료조치 물질특성 인체 유해성 화제 침강 용해 증발 증기밀도 (위험성) (물=1) (물) (물중기압) (공기=1) O 乂 乂' O 누 O (낮융) 八 八 (낮음) ““ 인화첨 2이王 발화점 260仁 끓는점 252仁 수용해도 불용 상온상태 점성있는 액체 색상 무색,투명 냄새 순한 방향성 냄새 비중 0.97 증기압 mmHgSc) 훠발성 낮음 첨도 102cSt(20t) 증기밀도 10 급성독성 TWAffi 시간) 경구 (LD50) 경피 (LD50) 흡입 (LC50) 노출기준 STEL(단시간) 자르어으 2.550 >3,160 자료없음 노출한계 r 니르 fng/kg mg/kg 러 |dlH(30 분) 직접 위험농도 일반즁상 고온에서자극적인 증기방출 흡입 흡입하면 유독함 피부 피부자극, 피부탈지, 피부염 안구 - 경구 식도혹은위장관자극 응급조치 피부접촉 - 긴급 의료조치. 20분 이상 흐르는 물에 씻을 것 안구접촉 . 긴급 의료조치, 20분 이상 흐르는 물에 씻을 것 경구섭취 • 구강대구강법 인공호흡 금지, 간급 의료조치 초동 대응방법 대응장비 보호복 3,4형식 (C급) 1 형", + "fireFighting": "분무주수/포말/CO₂.", + "spillResponse": "오일펜스/흡착재 회수.", "exposure": "", "regulation": "" }, @@ -36421,163 +25309,101 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "DINPE", "name": "DINP-E", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 530, - "abbreviation": "DINPU", - "nameKr": "디이소노닐프탈산", - "nameEn": "DINP-U", - "synonymsEn": "·1,2-BENZENEDICARBOXYLIC ACID, DIISONONYL ESTER ·DINP ·ENJ 2065 ·Palatinol CE 5250 ·PALATINOL DN ·PHTHALIC ACID, DIISONONYL ESTER ·Sansocizer DINP ·Vestinol NN ·WITAMOL 150 ·bis(3,5,5-trimethylhexyl) phthalate ·dinonyl phthalate", - "synonymsKr": "·1,2-벤젠다이카복실산, 다이아이소노닐 에스터 ·DINP ·ENJ 2065 ·플라티놀 CE 5250 ·플라티놀 DN ·프탈산, 다이아이소노닐 에스터 ·Sansocizer DINP ·Vestinol NN ·WITAMOL 150 ·비스(3,5,5-트라이메틸헥실) 프탈산 ·다이노닐 프탈산", - "unNumber": "3082", - "casNumber": "28553-12-0", - "transportMethod": "", - "sebc": "", - "usage": "주로 플라스틱, 고무, 접착제 등의 연화제, 점도 조정제 등으로 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "DINPU", "name": "DINP-U", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 531, + "id": 306, "abbreviation": "DOP", "nameKr": "디옥틸프탈산", "nameEn": "Dioctyl phthalate", - "synonymsEn": "DI-N-OCTYL PHTHALATE / DOP / Dioctyl phthalate / Dnop / Octyl phthalate / di-n-octyl / DICAPRYL PHTHALATE / di-1-octylphthalate / DI OCTYLE PHTHALATE / Di-n-octyl phthalate (DNOP) / 1,2-Benzenedicarboxylic acid, dioctyl ester", "synonymsKr": "디옥틸 프탈레이트 / 디옥틸프탈레이트 / 다이옥틸프탈레이트 / 디옥틸프탈레이트 / 다이-N-옥틸 프탈레이트 / 1,2-벤젠디카르복시산, 디옥틸 에스터 / N-옥틸 프탈레이트 / o-벤젠디카르복시산, 디옥틸 에스터 / 다이옥틸 프탈레이트 / 디-N-옥틸 프탈레이트 / 디노폴 / 디옥틸 o-프탈레이트 / 비니시저 85 / 옥틸 프탈산 / 프탈산, 디옥틸 에스터 / 디-n-옥틸프탈레이트", + "synonymsEn": "DI-N-OCTYL PHTHALATE / DOP / Dioctyl phthalate / Dnop / Octyl phthalate / di-n-octyl / DICAPRYL PHTHALATE / di-1-octylphthalate / DI OCTYLE PHTHALATE / Di-n-octyl phthalate (DNOP) / 1,2-Benzenedicarboxylic acid, dioctyl ester", "unNumber": "", "casNumber": "117-84-0", - "transportMethod": "", - "sebc": "", + "transportMethod": "산적액체(Y류)", + "sebc": "F (Floater)", "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "오일류 액체", + "color": "투명, 옅은색", + "odor": "무취", + "flashPoint": "210℃", + "autoIgnition": "390℃", + "boilingPoint": "385℃", + "density": "0.99", + "solubility": "불용", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "13.45", + "explosionRange": "0.3~4.0%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/X", + "ergNumber": "171", + "idlh": "0 분〉", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", + "responseDistanceFire": "위험도", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "부유 (F)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "생식독성 (DEHP), 발암 의심, 피부/흡입 유해", + "firstAid": "흡입노출 • 신선한 공기가 있는 곳으로 이동, 호흡이 힘든 경우 산소 공급 피부접촉 • 20분 이상 흐르는 물에 씻을 것 O 급조치 안구접촉 • 20분 이상 흐르는 물에 씻을 것 경구섭취 •간급 의료조치 대응장비 보호복 호흡구 보안경 보호장갑 누 기타장비 3,4형식 (C급) 방독마스크(반면,전면) O O 열화상카메라 초기 이격거리 (m) 자료없음 방호거리 (m) 자료없음 해상유출시 > 유출물질은 호흡기 및 피부에 과민증을 유발할 수 있고, 생식기능에 악영향을 끼칠 수 있으므로 출동세력 최소 이격거리 유지 ‘ 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3,4형식 보호의 착용, 증기홈입과 피부와 눈에 접촉을 피할 것 > 유출물질은 해상에 부유하므로 오알펜스 설치 확산방지 • 유회수기, 유홈착재, 뜰채 등 이용 유출물질 회수조치 화재 시대피거리(m) 자료없음 + 화재 ■폭발시 > 유출물질은 연소시 유독가스 방출. 풍상에 위치, 최소 이격거리 유지하고 소화포 이용 화재진압 > 열화상카메라 윤용(결과전파), 소화포 이용 사고선 냉긱조치 할 것 ► 안전이 확보되면, 화학방제함 또는 예인선 동원 긴급예인 조치 65", + "fireFighting": "분무주수/포말/CO₂.", + "spillResponse": "오일펜스/흡착재 회수.", "exposure": "", - "regulation": "" + "regulation": "유해화학물질관리법" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "No", + "ibcDetection": "O", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "DOP", "name": "Dioctyl phthalate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 532, + "id": 307, "abbreviation": "DPT", "nameKr": "디펜텐", "nameEn": "Dipentene", - "synonymsEn": "DL-Limonene / D-LIMONENE / Dipentene / L-LIMONENE / Cinene / (-)-LIMONENE / 1-methyl-4-(prop-1-en-2-yl)cyclohex-1-ene / LIMONENE(P) / CITRUS TERPENE / DL-LIMONENE (MIXTURE OF D- AND L-FORM CA / FEMA 2633", "synonymsKr": "리모넨 / d-리모넨 / 리모넨 / 디-리모넨 / p-멘타-1,8-다이엔 / DL-리모넨 / (±)-1-메틸-4-(1-메틸바이닐)사이클로헥센 / 1,8-p-멘타다이엔 / 1-메틸-4-(1-메틸바이닐)사이클로헥센 / 1-메틸-4-(1-메틸에텐일)사이클로헥센 / 1-메틸-4-아이소프로펜일-1-사이클로헥센 / 1-메틸-4-프로프-1-엔-2-일-사이클로헥센 / 사이클로헥센, 1-메틸-4-(1-메틸바이닐)-, (+)- (PICCS) / 사이클로헥센, 1-메틸-4-(1-메틸에텐일)-", + "synonymsEn": "DL-Limonene / D-LIMONENE / Dipentene / L-LIMONENE / Cinene / (-)-LIMONENE / 1-methyl-4-(prop-1-en-2-yl)cyclohex-1-ene / LIMONENE(P) / CITRUS TERPENE / DL-LIMONENE (MIXTURE OF D- AND L-FORM CA / FEMA 2633", "unNumber": "", "casNumber": "138-86-3", "transportMethod": "", @@ -36620,9 +25446,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", "emsCode": "", @@ -36633,155 +25459,19 @@ { "code": "DPT", "name": "Dipentene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 533, - "abbreviation": "DPMD", - "nameKr": "디페닐메탄 디이소시아네이트", - "nameEn": "Diphenylmethane diisocyanate", - "synonymsEn": "4,4'-Diphenylmethane diisocyanate / MDI / methylene / Methylene diphenyl diisocyanate / DIPHENYLMETHANE DIISOCYANATE / DESMODUR / MBI / yiqingsuanzhi / methylenediphenyldiisocyanate / BIS(4-ISOCYANATOPHENYL)METHANE / Isonate", - "synonymsKr": "4,4′-메틸렌 비스(페닐 이소시아네이트)(고체) / 4,4'-디페닐메탄디이소시아네이트 / 4,4′-메틸렌비스(페닐이소시아네 / 4,4′-메틸렌비스(페닐이소시아네이트)(고체) / 메틸렌디(비스)페닐4,4‘-디이소시아네이트 / 메틸렌비스페닐아이소사이안산(메틸렌비스페닐이소시안산) / 4,4'-메틸렌디(비스)페닐디이소시아네이트 / 메틸렌비스(4-페닐아이소사이아네이트) / 4,4'-디이소시안산 디페닐메탄 / 4,4-디이소시안산디페닐메탄 / 메틸렌비스페닐이소시아네이트", - "unNumber": "2206", - "casNumber": "101-68-8", - "transportMethod": "", - "sebc": "", - "usage": "단열재, 건축재, 접착제, 스판덱스. 합성피혁 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "DPMD", - "name": "Diphenylmethane diisocyanate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 534, - "abbreviation": "DPLST", - "nameKr": "메틸렌비스페닐이소시아네이트", - "nameEn": "DIPLAST TM", - "synonymsEn": "4,4'-Diphenylmethane diisocyanate / MDI / methylene / Methylene diphenyl diisocyanate / DIPHENYLMETHANE DIISOCYANATE / DESMODUR / MBI / yiqingsuanzhi / methylenediphenyldiisocyanate / BIS(4-ISOCYANATOPHENYL)METHANE / Isonate", - "synonymsKr": "4,4′-메틸렌 비스(페닐 이소시아네이트)(고체) / 4,4'-디페닐메탄디이소시아네이트 / 4,4′-메틸렌비스(페닐이소시아네 / 4,4′-메틸렌비스(페닐이소시아네이트)(고체) / 메틸렌디(비스)페닐4,4‘-디이소시아네이트 / 메틸렌비스페닐아이소사이안산(메틸렌비스페닐이소시안산) / 4,4'-메틸렌디(비스)페닐디이소시아네이트 / 메틸렌비스(4-페닐아이소사이아네이트) / 4,4'-디이소시안산 디페닐메탄 / 4,4-디이소시안산디페닐메탄 /", - "unNumber": "2206", - "casNumber": "101-68-8", - "transportMethod": "", - "sebc": "", - "usage": "단열재, 건축재, 접착제, 스판덱스. 합성피혁 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "DPLST", - "name": "DIPLAST TM", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 535, + "id": 308, "abbreviation": "DPRPA", "nameKr": "디프로필아민", "nameEn": "Dipropylamine", - "synonymsEn": "Dipropylamine / DPA / DI-N-PROPYLAMINE / DNPA / n,n-dipropylamine / ai3-24037 / (n-C3H7)2NH / Di-n-propyL / DIPROPYLAMINE / Dipropanamine / AURORA KA-7671", "synonymsKr": "디프로필아민 / 다이프로필아민 / 디프로필아민 / N-프로필-1-프로판아민 / 다이-N-프로필아민 / n-디프로필아민", + "synonymsEn": "Dipropylamine / DPA / DI-N-PROPYLAMINE / DNPA / n,n-dipropylamine / ai3-24037 / (n-C3H7)2NH / Di-n-propyL / DIPROPYLAMINE / Dipropanamine / AURORA KA-7671", "unNumber": "", "casNumber": "142-84-7", "transportMethod": "", @@ -36837,155 +25527,19 @@ { "code": "DPRPA", "name": "Dipropylamine", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 536, - "abbreviation": "DPGME", - "nameKr": "디프로필렌 글리콜 메틸 에테르", - "nameEn": "Dipropyrene glycol monomethyl ether", - "synonymsEn": "Dipropylene glycol monomethyl ether / DPM / dpgme / (2-methoxymethylethoxy)propanol / DI(PROPYLENE GLYCOL) METHYL ETHER / arcosolv / GLYCOL ETHER DPM / Methoxypropoxypropanol / Dipropylene glycol monomethyl / (2-methoxymethylethoxy)-propano / 3-(3-Methoxypropoxy)-1-propanol", - "synonymsKr": "디프로필렌 글리콜 메틸 에테르 / 디프로필렌글리콜메틸에테르 / 다이프로필렌글리콜메틸에테르 / 디프로필렌글리콜메틸에테르 / 다이프로필렌 글리콜 모노메틸 에테르 / (2-메톡시메티에톡시)프로판올 / PPG-2 메틸 에테르 / 디프로필렌 글리콜 모노메틸 에테르", - "unNumber": "", - "casNumber": "34590-94-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "DPGME", - "name": "Dipropyrene glycol monomethyl ether", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 537, - "abbreviation": "DCNFA", - "nameKr": "코코넛 지방산", - "nameEn": "Distilled coconut fatty acid", - "synonymsEn": "COCONUT OIL FATTY ACIDS / Coconutfattyacids / Fattyacids,C8-18andC18-unsatd. / FATTYACIDS,C8-C18&C18UNSATURATED / C8-18 and C18-unsaturated fatty acids / fatty acids, C8-18 and C18 unsaturated / Fatty acids, unsaturated, C8-C18 and C18 / C8-18-andC18-Unsaturatedalkylcarboxylicacid", - "synonymsKr": "코코넛 지방 산 / 코코넛지방산 / 코코넛지방산(COCONUTFATTYACID)", - "unNumber": "", - "casNumber": "67701-05-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "DCNFA", - "name": "Distilled coconut fatty acid", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 538, - "abbreviation": "DHPKFA", - "nameKr": "지방산", - "nameEn": "Distilled hydrogenated palm kernel fatty acid", - "synonymsEn": "Fatty acids, C12-18 / Fatty acids, C12-18 CBNumber:CB6923237", + "id": 309, + "abbreviation": "HPKFA", + "nameKr": "수소화된 참나무 지방산", + "nameEn": "Hydrogenated palm kernel fatty acid", "synonymsKr": "지방산, / 지방산, / 지방산,(C=12-18)", + "synonymsEn": "Fatty acids, C12-18 / Fatty acids, C12-18", "unNumber": "", "casNumber": "67701-01-3", "transportMethod": "", @@ -37041,19 +25595,25 @@ { "code": "DHPKFA", "name": "Distilled hydrogenated palm kernel fatty acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HPKFA", + "name": "Hydrogenated palm kernel fatty acid", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 539, + "id": 310, "abbreviation": "DLFA", "nameKr": "정재된 라우르산", "nameEn": "Distilled lauric fatty acid", - "synonymsEn": "Lauric acid / DODECANOIC ACID / C12 / Emery651 / Vulvic acid / FEMA 2614 / lauric acid, pure / N-DODECANOIC ACID / LAUROSTEARIC ACID / Lauric acid 98-101 % (acidimetric) / Fatty acid methyl ester sulfonate (MES)", "synonymsKr": "라우르산 / 라우르산 / 도데카노익산 / 라우릭산 / 라우릭애씨드 / 도데칸산 / 1-운데케인카복실산 / n-도데칸산 / 데다콘산 / 도데실산 / 도데칸 산 / 도데코 산 / 도데크산 / 듀오-디시클릭 산 / 라우로스테아르 산 / 로로스테아르산 / 로르산 / 하이드로폴 산 1255", + "synonymsEn": "Lauric acid / DODECANOIC ACID / C12 / Emery651 / Vulvic acid / FEMA 2614 / lauric acid, pure / N-DODECANOIC ACID / LAUROSTEARIC ACID / Lauric acid 98-101 % (acidimetric) / Fatty acid methyl ester sulfonate (MES)", "unNumber": "", "casNumber": "143-07-7", "transportMethod": "", @@ -37109,223 +25669,37 @@ { "code": "DLFA", "name": "Distilled lauric fatty acid", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 540, - "abbreviation": "DPFA", - "nameKr": "정재된 라우르산", - "nameEn": "Distilled palm fatty acid", - "synonymsEn": "Lauric acid / DODECANOIC ACID / C12 / Emery651 / Vulvic acid / FEMA 2614 / lauric acid, pure / N-DODECANOIC ACID / LAUROSTEARIC ACID / Lauric acid 98-101 % (acidimetric) / Fatty acid methyl ester sulfonate (MES)", - "synonymsKr": "라우르산 / 라우르산 / 도데카노익산 / 라우릭산 / 라우릭애씨드 / 도데칸산 / 1-운데케인카복실산 / n-도데칸산 / 데다콘산 / 도데실산 / 도데칸 산 / 도데코 산 / 도데크산 / 듀오-디시클릭 산 / 라우로스테아르 산 / 로로스테아르산 / 로르산 / 하이드로폴 산 1255", - "unNumber": "", - "casNumber": "143-07-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "DPFA", "name": "Distilled palm fatty acid", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 541, - "abbreviation": "DPFAD", - "nameKr": "정재된 팜유", - "nameEn": "Distilled palm fatty acid distillate", - "synonymsEn": "PALM OIL / palm / oils,palm / ELAEIS GUINEENSIS (PALM) OIL / PALMFAT / PALM OIL / REDPALMOIL / PALM BUTTER / Oele, Palm- / CRUDEPALMOIL / Palmoilrefined", - "synonymsKr": "아메리카오일팜열매오일 / 아메리카오일팜열매오일 / 오일팜버터 / 오일팜오일 / 야자유(과실로 부터)", - "unNumber": "1169", - "casNumber": "8002-75-3", - "transportMethod": "", - "sebc": "", - "usage": "식용유, 화장품, 세제, 의약품 제조 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "DPFAD", - "name": "Distilled palm fatty acid distillate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 542, - "abbreviation": "DPKFA", - "nameKr": "정재된 야자유", - "nameEn": "Distilled palm kernel fatty acid", - "synonymsEn": "/ Coconutfattyacids / Fattyacids,C8-18andC18-unsatd. / FATTYACIDS,C8-C18&C18UNSATURATED / C8-18 and C18-unsaturated fatty acids / fatty acids, C8-18 and C18 unsaturated / Fatty acids, unsaturated, C8-C18 and C18 / C8-18-andC18-Unsaturatedalkylcarboxylicacid", - "synonymsKr": "/ 코코넛지방산 / 코코넛지방산(COCONUTFATTYACID) COCONUT OIL FATTY ACIDS", - "unNumber": "", - "casNumber": "67701-05-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "code": "FA12", + "name": "FA C12", + "company": "국제공통", + "source": "적부도" + }, { - "code": "DPKFA", - "name": "Distilled palm kernel fatty acid", - "company": "", - "source": "화물적부도" + "code": "LRA", + "name": "Lauric acid", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 543, + "id": 311, "abbreviation": "DTPKFA", "nameKr": "정재된 코코넛유 지방산", "nameEn": "Distilled topped palm kernel fatty acid", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "90990-15-1", "transportMethod": "", @@ -37381,19 +25755,19 @@ { "code": "DTPKFA", "name": "Distilled topped palm kernel fatty acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 544, + "id": 312, "abbreviation": "DLIM", "nameKr": "D-리모넨", "nameEn": "D-Limonene", + "synonymsKr": "D-리모넨 / D-리모넨 / 리모넨 / 과산화물가가20mmol / L을초과하는d-리모넨 / D-리모넨(D-LIMONENE)", "synonymsEn": "(+)-Dipentene / (R)-1-Methyl-4-(prop-1-en-2-yl)cyclohex-1-ene / D-Dipentene / citrene / imonene / d-limoneno / kautschiin / (gamma)-Carvene / (R)-1-methyl-4-(1-methylethenyl)cyclohexene / LEMOSOL / llmonene", - "synonymsKr": "D-리모넨 / D-리모넨 / 리모넨 / 과산화물가가20mmol/L을초과하는d-리모넨 / D-리모넨(D-LIMONENE)", "unNumber": "", "casNumber": "5989-27-5", "transportMethod": "", @@ -37449,87 +25823,19 @@ { "code": "DLIM", "name": "D-Limonene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 545, - "abbreviation": "DOBA", - "nameKr": "", - "nameEn": "Dobanic", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "DOBA", - "name": "Dobanic", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 546, - "abbreviation": "DBNL23", - "nameKr": "엑톡시화 알코올", - "nameEn": "Dobanol 23 (C12-C13)", - "synonymsEn": "C12-15 PARETH-2 / AEC-9NA / Primary Alcobol Ethoxylate / C12-15 PARETH-9 / Alcohols, C12-15, ethoxylated / C12-15 PARETH-3 / C12-15 PARETH-12 / C12-15 PARETH-10 / Neodol-12 / Tomadol 25-9 / AEO-3,Mw ~315", + "id": 313, + "abbreviation": "NDL253", + "nameKr": "알코올 에툭실레이트", + "nameEn": "Neodol 25-3", "synonymsKr": "직선상의 에톡시산 알코올 (C12-C15) / 직선상의에톡시산알코올(C12-C15) / 직선상의에톡실산알코올(C12-C15) / 직선상의에톡실산알코올(C12-C15) / C12-15파레스-10 / C12-15파레스-11 / C12-15파레스-12 / C12-15파레스-2 / C12-15파레스-3 / C12-15파레스-4 / C12-15파레스-5 / C12-15파레스-7 / C12-15파레스-9 / C12-15파레트-2", + "synonymsEn": "C12-15 PARETH-2 / AEC-9NA / Primary Alcobol Ethoxylate / C12-15 PARETH-9 / Alcohols, C12-15, ethoxylated / C12-15 PARETH-3 / C12-15 PARETH-12 / C12-15 PARETH-10 / Neodol-12 / Tomadol 25-9 / AEO-3,Mw ~315", "unNumber": "", "casNumber": "68131-39-5", "transportMethod": "", @@ -37585,19 +25891,31 @@ { "code": "DBNL23", "name": "Dobanol 23 (C12-C13)", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NDL253", + "name": "Neodol 25-3", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "NDL257", + "name": "Neodol 25-7", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 547, + "id": 314, "abbreviation": "DBNL25", "nameKr": "에톡실산화 알코올", "nameEn": "Dobanol 25 (C12-C15)", - "synonymsEn": "Alcohols, C12-16, ethoxylated / Alcohol Ethoxylated AEO / C12-16 Alcohol ethoxylate / Alcohols, C12-16, ethoxylated / Alcohol-(C12-C16), ethoxylated / ETHOXYLATED ALCOHOLS (C12-C15)", "synonymsKr": "에톡실산화 알코올 (C12-C15) / 에톡실산화알코올(C12-C15) / 에톡실산화알코올(C12-C15)(ETHOXYLATEDALCOHOLS(C12-C15)) / C12-16파레스-5 / C12-16파레스-7 / C12-16파레스-9 / C12-16 알코올, 에톡실레이티드 / 알코올 C12-16, 에톡실레이티드 / 알코올, C12-16, 에톡실레이티드 / 에톡실레이티드 C12-16 알코올 / 에톡실레이티드 알코올 (C = 12-16) / 에톡실레이티드 알코올, C12-16 / 폴리에틸렌 글라이콜 모노-C12-16-알킬 에터 / 폴리에틸렌 글라이콜, 도데실, 테트라데실, 헥사데실 에터 / 알코올,C12-16,에톡시화", + "synonymsEn": "Alcohols, C12-16, ethoxylated / Alcohol Ethoxylated AEO / C12-16 Alcohol ethoxylate / Alcohols, C12-16, ethoxylated / Alcohol-(C12-C16), ethoxylated / ETHOXYLATED ALCOHOLS (C12-C15)", "unNumber": "", "casNumber": "68551-12-2", "transportMethod": "", @@ -37653,19 +25971,19 @@ { "code": "DBNL25", "name": "Dobanol 25 (C12-C15)", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 548, + "id": 315, "abbreviation": "DBNL253", "nameKr": "알코올 에톡실레이트", "nameEn": "Dobanol 25-3", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "58391-12-1", "transportMethod": "", @@ -37721,224 +26039,20 @@ { "code": "DBNL253", "name": "Dobanol 25-3", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 549, - "abbreviation": "DBNL45", - "nameKr": "", - "nameEn": "Dobanol 45 (C14-C15)", - "synonymsEn": "", + "id": 316, + "abbreviation": "RBDPL", + "nameKr": "정제, 탈색, 탈취 공정을 거친 팜 올레인", + "nameEn": "RBD Palm olein", "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "DBNL45", - "name": "Dobanol 45 (C14-C15)", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 550, - "abbreviation": "DDECA", - "nameKr": "", - "nameEn": "Dodecanol", "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "DDECA", - "name": "Dodecanol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 551, - "abbreviation": "DFPO", - "nameKr": "팜유", - "nameEn": "Double fractionated palm oil", - "synonymsEn": "PALM OIL / palm / oils,palm / ELAEIS GUINEENSIS (PALM) OIL / PALMFAT / PALM OIL / REDPALMOIL / PALM BUTTER / Oele, Palm- / CRUDEPALMOIL / Palmoilrefined CBNumber", - "synonymsKr": "아메리카오일팜열매오일 / 아메리카오일팜열매오일 / 오일팜버터 / 오일팜오일 / 야자유(과실로 부터)", - "unNumber": "1169", - "casNumber": "8002-75-3", - "transportMethod": "", - "sebc": "", - "usage": "식용유, 화장품, 세제, 의약품 제조 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "DFPO", - "name": "Double fractionated palm oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 552, - "abbreviation": "DFPL", - "nameKr": "팜 올레인", - "nameEn": "Double fractionated palm olein", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", + "unNumber": "1", "casNumber": "93334-39-5", "transportMethod": "", "sebc": "", @@ -37993,359 +26107,49 @@ { "code": "DFPL", "name": "Double fractionated palm olein", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 553, - "abbreviation": "DFPL62", - "nameKr": "팜 올레인", - "nameEn": "Double fractionated palm olein I.V.62", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "93334-39-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "DFPL62", "name": "Double fractionated palm olein I.V.62", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 554, - "abbreviation": "DFPL64", - "nameKr": "팜 올레인", - "nameEn": "Double fractionated palm olein I.V.64", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "93334-39-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "DFPL64", "name": "Double fractionated palm olein I.V.64", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 555, - "abbreviation": "DFPL65", - "nameKr": "팜 올레인", - "nameEn": "Double fractionated palm olein I.V.65", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "93334-39-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "DFPL65", "name": "Double fractionated palm olein I.V.65", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 556, - "abbreviation": "DOWNLPMA", - "nameKr": "플로필렌 글리콜 메틸 에테르 아세테이트(상표명)", - "nameEn": "Dowanol PMA glycol ether acetate", - "synonymsEn": "1-Methoxy-2-propyl acetate / PGMEA / MPA / PROPYLENE GLYCOL MONOMETHYL ETHER ACETATE / PROPYLENE GLYCOL METHYL ETHER ACETATE / 1-METHOXY-2-PROPANOL ACETATE / 2-METHOXY-1-METHYLETHYL ACETATE / PMA-EL / Dowanol PMA / Propylene glyc / METHOXYISOPROPYL ACETATE", - "synonymsKr": "프로필렌 글리콜 모노메틸 에테르 아세트산 / 1-메톡시-2-프로판올아세트산 / 1-메톡시-2프로판올아세트산,프로필렌글리콜메틸에테르아세트산 / 프로필렌글리콜모노메틸에테르아세트산 / 프로필렌글리콜모노메틸에테르아세트산(P.M.A) / 프로필렌글리콜메틸에테르아세테이트 / 메톡시아이소프로필아세테이트 / 프로필렌글리콜모노메틸에테르아세트산 / 프로필렌 글리콜 모노메틸 에테르 아세테이트, 알파-이성질체 / 1-메톡시-2-프로판올 아세트산 / 아세트 산, 2-메톡시-1-메틸에틸 에스테르 / 프로필렌 글리콜 메틸 에테르 아세테이트 / 프로필렌 글리콜 모노메틸 에테르 아세트산", - "unNumber": "3272", - "casNumber": "108-65-6", - "transportMethod": "", - "sebc": "", - "usage": "잉크, 코팅제, 세척제, 반도체 공정 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "DOWNLPMA", - "name": "Dowanol PMA glycol ether acetate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 557, - "abbreviation": "DOWNLPME", - "nameKr": "플로필렌 글리콜 메틸 에테르(상표명)", - "nameEn": "Dowanol PM-E", - "synonymsEn": "1-Methoxy-2-propanol / PM / PGME / Methoxypropanol / 2-Propanol, 1-methoxy- / PROPYLENE GLYCOL METHYL ETHER / 1-METHOXYPROPAN-2-OL / 203-539-1 / Dowanol pm / GLYCOL ETHER PM / METHOXYISOPROPANOL", - "synonymsKr": "프로필렌글리콜 모노메틸에테르 / 프로필렌글리콜모노메틸에테르 / 프로필렌글리콜모노메틸에테르 / 프로필렌글리콜메틸에테르 / 메톡시아이소프로판올 / 프로필렌글리콜모노메틸에테르 / 1-메톡시-2-하이드록시프로페인 / 1-메톡시-2-프로판올 / 글리콜 에테르 / 메톡시프로판-1,2-디올 / 알파-프로필렌 글리콜 모노메틸 에테르 / 프로필렌 글리콜 메틸 에테르 / 프로필렌 글리콜 모노메틸 에테르 / 프로필렌 글리콜, 1 메틸 에테르 / 프로필렌 글리콜의 메톡시에테르", - "unNumber": "", - "casNumber": "107-98-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "code": "FRBDPO", + "name": "Fractinated R.B.D. palm oil", + "company": "국제공통", + "source": "적부도" + }, { - "code": "DOWNLPME", - "name": "Dowanol PM-E", - "company": "", - "source": "화물적부도" + "code": "RBDPL", + "name": "RBD Palm olein", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 558, + "id": 317, "abbreviation": "DOWFAX", "nameKr": "다우팩스 2A1", "nameEn": "Dowfax 2A1", - "synonymsEn": "Dowfax 2A1 / DOWFAX 2A1 Solution Surfactant / DOWFAX(R) 2A1 SOLUTION SURFACTANT / Dodecyl diphenyl ether sulfonic acid / DOW FAX 2A1,DOWFAX(R) 2A1 SOLUTION SURFACTANT / Dow 2A1/3B2 8390 emulsifier Sodium dodecyl diphenyl ether disulfonate Ionic surfactants", "synonymsKr": "다우팩스2A1 / 다우팩스2A1", + "synonymsEn": "Dowfax 2A1 / DOWFAX 2A1 Solution Surfactant / DOWFAX(R) 2A1 SOLUTION SURFACTANT / Dodecyl diphenyl ether sulfonic acid / DOW FAX 2A1,DOWFAX(R) 2A1 SOLUTION SURFACTANT / Dow 2A1 / 3B2 8390 emulsifier Sodium dodecyl diphenyl ether disulfonate Ionic surfactants", "unNumber": "", "casNumber": "12626-49-2", "transportMethod": "", @@ -38401,89 +26205,21 @@ { "code": "DOWFAX", "name": "Dowfax 2A1", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 559, - "abbreviation": "DOWFR", - "nameKr": "", - "nameEn": "Dowfroth", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "DOWFR", - "name": "Dowfroth", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 560, + "id": 318, "abbreviation": "DRLF", "nameKr": "드릴링 플루이드", "nameEn": "Drilling Fluid", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", - "casNumber": "64742-46-7 9003-05-8 590-29-4", + "casNumber": "64742-46-7\n9003-05-8\n590-29-4", "transportMethod": "", "sebc": "", "usage": "", @@ -38537,19 +26273,19 @@ { "code": "DRLF", "name": "Drilling Fluid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 561, + "id": 319, "abbreviation": "DSP80/100", "nameKr": "하이드로처리된 경 나프타(휘발유)", "nameEn": "DSP 80/100", + "synonymsKr": "히드로처리된 경 나프타 / 수소처리된경질나프타(석유) / 히드로처리된경나프타 / 수소처리된경질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDLIGHT) / C9-10알케인 / 사이클로알케인 / C9-11알케인 / 사이클로알케인", "synonymsEn": "SOLVENT DEGREASER / rang / ing / 40-70 / CHplc / 120°40-60°C / e: 60 - 95 ℃ / ACS,ISO / eum ether, boiL / SOLVENT DEGREASER", - "synonymsKr": "히드로처리된 경 나프타 / 수소처리된경질나프타(석유) / 히드로처리된경나프타 / 수소처리된경질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDLIGHT) / C9-10알케인/사이클로알케인 / C9-11알케인/사이클로알케인", "unNumber": "", "casNumber": "64742-49-0", "transportMethod": "", @@ -38605,87 +26341,43 @@ { "code": "DSP80/100", "name": "DSP 80/100", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 562, - "abbreviation": "DUTREX", - "nameKr": "", - "nameEn": "Dutrex", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "DUTREX", - "name": "Dutrex", - "company": "", - "source": "화물적부도" + "code": "EXO100", + "name": "EXXOL DSP 100/140", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EXO80", + "name": "EXXOL DSP 80/110", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EXHPT", + "name": "EXXSOL Heptane", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "EXIHX", + "name": "EXXSOL Isohexane", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 563, + "id": 320, "abbreviation": "EDFT", "nameKr": "식용 팜유", "nameEn": "Edible fancy tallow", - "synonymsEn": "LARD OIL / Larex Ex / LARD OIL / oils,lard / Larex prime / Larex No. 1 / Larex extra / lardoilporcine / LARD OIL, PRIME / REFINED-LARDOIL / Larex extra No. 1", "synonymsKr": "LARD 기름 / LARD기름 / 라드기름 / 라드기름", + "synonymsEn": "LARD OIL / Larex Ex / LARD OIL / oils,lard / Larex prime / Larex No. 1 / Larex extra / lardoilporcine / LARD OIL, PRIME / REFINED-LARDOIL / Larex extra No. 1", "unNumber": "", "casNumber": "8016-28-2", "transportMethod": "", @@ -38741,155 +26433,25 @@ { "code": "EDFT", "name": "Edible fancy tallow", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 564, - "abbreviation": "ELARD", - "nameKr": "에피클로로히드린", - "nameEn": "Edible lard", - "synonymsEn": "Epichlorohydrin / ECH / 2-(Chloromethyl)oxirane / EPICHLOROHYDRINE / EPICHLORHYDRIN / 1-CHLORO-2,3-EPOXYPROPANE / Epichlorhydrine / ALPHA-EPICHLOROHYDRIN / New product 99.9% purity CAS 106-89-8 Epichlorohydrin CAS NO.106-89-8 Manufacturers wholesale / Epicloridrina / J006", - "synonymsKr": "에피클로로하이드린 / (클로로메틸)에틸렌산화물 / 에피클로로하이드린 / 에피클로로히드린 / 에피클로로히드린(ECH) / 1-클로로-2,3-에폭시프로판 / 3-클로로프로필렌산화물 / 감마-클로로프로필렌산화물 / 글리세롤에피클로로히드린 / 클로로메틸옥시란", - "unNumber": "2033", - "casNumber": "106-89-8", - "transportMethod": "", - "sebc": "", - "usage": "주로 에폭시 수지 제조 시 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "ELARD", - "name": "Edible lard", - "company": "", - "source": "화물적부도" + "code": "LARD", + "name": "Lard Oil", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 565, - "abbreviation": "EPRSIN", - "nameKr": "에폭시 수지", - "nameEn": "Epoxy resins", - "synonymsEn": "BISPHENOL A DIGLYCIDYL ETHER RESIN / Der331 / CYD-128 / e1001 / epon1001 / EPON RESIN 828 / (Chloromethyl)oxirane,4,4’-(1-methylethylidene)bisphenolcopolymer / 4,4’-(1-methylethylidene)bis-phenopolymerwith(chloromethyl)oxirane / 4,4’-(1-methylethylidene)bisphenol,-,polymerwith2,2’-[(1-methylethylidene) / e828 / e1004", - "synonymsKr": "에피클로로하이드린-비스페놀 A 수지 / 에피클로로하이드린-비스페놀A수지 / (클로로메틸)옥시레인과의4,4-(1-메틸에틸리덴)비스페놀중합체 / 4,4'-아이소프로필리덴다이페놀/에피클로로하이드린코폴리머 / 에피클로로하이드린-비스페놀A수지 / 셔윈-윌리암스 타르 가드 콜 타르 에폭시 (Pt B) 경화제 / (클로로메틸)옥시레인과의 4,4-(1-메틸에틸리덴) 비스페놀 중합체 / 1-클로로-2,3-에폭시프로페인과의 4,4-아이소프로필리덴다이페놀 중합체 / 다이안-에피클로로하이드린 공중합체 / 다이안-에피클로로하이드린 중합체 / 비스페놀 A-에피클로로하이드린 수지 / 페놀, 4,4-아이소프로필리덴다이-, 1-클로로-2,3-에폭시프로페인과의 중합체 / 비스페놀올디글리시딜수지", - "unNumber": "-", - "casNumber": "25068-38-6", - "transportMethod": "", - "sebc": "", - "usage": "접착제, 자동차 및 코일 코팅용 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EPRSIN", - "name": "Epoxy resins", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 566, + "id": 321, "abbreviation": "ERUCACID", "nameKr": "에루신산", "nameEn": "Erucic acid", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "112-86-7", "transportMethod": "", @@ -38945,291 +26507,19 @@ { "code": "ERUCACID", "name": "Erucic acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 567, - "abbreviation": "EAMN", - "nameKr": "에탄올아민", - "nameEn": "Ethanol amine", - "synonymsEn": "Monoethanolamine / MONOETHANOLAMINE / 2-Aminoethan-1-ol / 2-AMINOETHANOL / Olamine / Aminoethanol / GLYCINOL / 2-Ethanolamine / 2-HYDROXYETHYLAMINE / Ethanolamine, 99%, H2O 0.5% max / MEA 90", - "synonymsKr": "글명:에탄올아민 / 2-아미노에탄올 / 2-아미노에타놀 / 2-에타놀아민 / 글리시놀 / 아미노에타놀 / 콜올아민 / 2-히드록시에탄아민 / 2-히드록시에틸아민 / 모노에타놀아민 / 베타-아미노에타놀 / 베타-아미노에틸알코올 / 베타-에타놀아민 / 베타-히드록시에틸아민 / 에타놀,2-아미노- / 에탄올아민 / 에틸올아민 / 모노에탄올아민 / 2-하이드록시에틸아민 / 콜라민", - "unNumber": "2491", - "casNumber": "141-43-5", - "transportMethod": "", - "sebc": "", - "usage": "가스 세정, 세제, 계면활성제, 유화제, 광택제 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EAMN", - "name": "Ethanol amine", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 568, - "abbreviation": "EACE", - "nameKr": "초산에틸", - "nameEn": "Ethyl acetate", - "synonymsEn": "Ethyl acetate / EtOAc / ETOH / ALCOHOL / yisuanyizhi / ETHYL ETHANOATE / ACETIC ACID ETHYL ESTER / ETHANOL ABSOLUTE / METHYLATED SPIRIT / CH3COOC2H5 / ACETIC ETHER", - "synonymsKr": "초산에틸 / 아세트산에틸 / 메틸아세틸에스테르 / 비네가나프타 / 아세톡시에탄 / 아세트에테르 / 아세트에스테르 / 아세트산에틸에스테르 / 아세티딘 / 에틸에탄오에이트 / 에틸아세트산 / 초산에틸 / 초산에틸,무수물 / 초산에틸에스테르 / 무수에탄올 / 초산에틸 / 에틸아세테이트 / 아세테이트 에틸 / 아세트산 에틸", - "unNumber": "1231", - "casNumber": "141-78-6", - "transportMethod": "", - "sebc": "", - "usage": "휘발성 용매 사용 접착제, 페인트, 매니큐어 리무버 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "F", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EACE", - "name": "Ethyl acetate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 569, - "abbreviation": "EACR", - "nameKr": "아크릴산에틸", - "nameEn": "Ethyl acrylate", - "synonymsEn": "Ethyl acrylate / Ethy Acrylate / FEMA 2418 / Ethyl propenoate / ETHYL 2-PROPENOATE / ACRYLIC ACID ETHYL ESTER / Ethyl acrylate, stabilized / 2-988 / NCI-C50384 / carboset511 / Carboset 511", - "synonymsKr": "아크릴산에틸 / 아크릴산에틸 / 2-프로펜오익산,에틸에스테르 / 아크릴산,에틸에스테르 / 아크릴에스테르E / 아클릴릭애시드에틸에스테르 / 에톡시카르보닐에틸렌 / 에틸2-프로펜오에이트 / 에틸아크릴릭에스테르 / 에틸아크릴레이트 / 이틸아크릴레이트 / 아크릴산에틸에스테르 / 에틸아크릴산 / 에틸프로펜오에이트 / 에틸프로렌오에이트 / 에틸아크릴레이트 / 에틸 아크릴레이트 / 2-프로페노익산, 에틸 에스터 / 아크릴산 에틸 에스터 / 에틸 프로-2-에노에이트 / 에틸 프로페노에이트", - "unNumber": "1173", - "casNumber": "140-88-5", - "transportMethod": "", - "sebc": "", - "usage": "용매, 착향제, 디카페인 용매 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "FT", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12, 15.13, 15.17 , 15.19, 16.6.1, 16.6.2", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EACR", - "name": "Ethyl acrylate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 570, - "abbreviation": "ETHA", - "nameKr": "에탈올", - "nameEn": "Ethyl alcohol", - "synonymsEn": "Ethanol / Ethyl alcohol / C2H5OH / Absolute ethanol / Etanol / ALCOHOL DENAT. / Dehydrated Alcohol / Ethanol min. 99,9 % / 75% Ethanol / ETHANOL CONTROL-H / Denatured ethanol", - "synonymsKr": "에틸알코올 / 에틸알코올 / 그래인알코올 / 알그래인 / 알코올 / 에틸수산화물 / 에틸알코올,100% / 재이솔 / 95%합성(변성)에탄올 / EthylAlcohol95%변성 / 메틸카르비놀 / 무수에탄올AbsoluteEthanol / 브롬페놀블루용액 / 안히드롤 / 알코올무수물 / 에타놀 / 에탄올 / 에탄올70%소독 / 에탄올70~75% / 에탄올Ethanol / 에탄올무수", - "unNumber": "", - "casNumber": "64-17-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "ETHA", - "name": "Ethyl alcohol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 571, + "id": 322, "abbreviation": "ELAMN", "nameKr": "에탈아민", "nameEn": "Ethyl amine", - "synonymsEn": "Ethylamine / EA / MONOETHYLAMINE / AMINOETHANE / C2H5NH2 / An aMine / Ethylamin / Aethylamine / 1-Aminoethane / Ethylamine solution / EthylaMine solution 2.0 M in THF", "synonymsKr": "에틸아민 / 에틸아민 / 모노에틸아민 / 아미노에테인 / 에틸아민, 무수", + "synonymsEn": "Ethylamine / EA / MONOETHYLAMINE / AMINOETHANE / C2H5NH2 / An aMine / Ethylamin / Aethylamine / 1-Aminoethane / Ethylamine solution / EthylaMine solution 2.0 M in THF", "unNumber": "", "casNumber": "75-04-7", "transportMethod": "", @@ -39285,155 +26575,19 @@ { "code": "ELAMN", "name": "Ethyl amine", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 572, - "abbreviation": "EAK", - "nameKr": "", - "nameEn": "Ethyl amyl ketone", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "FT", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EAK", - "name": "Ethyl amyl ketone", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 573, - "abbreviation": "EBZN", - "nameKr": "에틸벤젠", - "nameEn": "Ethyl benzene", - "synonymsEn": "Ethylbenzene / ET2O / EB / ETHOXYETHANE / Benzene, ethyl- / PHENYLETHANE / DIETHYL OXIDE / ethylenzene / Ethylbenzol / ETHYL OXIDE / Etilbenzene", - "synonymsKr": "에틸벤젠 / 에틸벤젠 / 에틸번젠", - "unNumber": "1175", - "casNumber": "100-41-4", - "transportMethod": "", - "sebc": "", - "usage": "스티렌 생산의 중간물질로 사용 가솔린의 안티 노킹제, 고무 접착제, 페인트, 잉크 용제 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EBZN", - "name": "Ethyl benzene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 574, + "id": 323, "abbreviation": "ECHXN", "nameKr": "에틸시클로헥산", "nameEn": "Ethyl cyclohexane", - "synonymsEn": "Ethylcyclohexane / Ethylcyclohexa / Athylcyclohexan / ETHYLCYCLOHEXAN / CYCLOHEXYLETHANE / ETHYLCYCLOHEXANE / cyclohexane,ethyl- / 1-Ethylcyclohexane / Ethylcyclohexane>Afobazole Impurity 22 / ETHYLCYCLOHEXANE, 99+%", "synonymsKr": "에틸사이클로헥산 / 시클로헥산,에틸- / 에틸사이클로헥산 / 에틸시클로헥산 / 에틸사이클로헥세인 / 에틸사이클로헥산", + "synonymsEn": "Ethylcyclohexane / Ethylcyclohexa / Athylcyclohexan / ETHYLCYCLOHEXAN / CYCLOHEXYLETHANE / ETHYLCYCLOHEXANE / cyclohexane,ethyl- / 1-Ethylcyclohexane / Ethylcyclohexane>Afobazole Impurity 22 / ETHYLCYCLOHEXANE, 99+%", "unNumber": "", "casNumber": "1678-91-7", "transportMethod": "", @@ -39475,12 +26629,12 @@ "exposure": "", "regulation": "" }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", + "ibcHazard": "S/P", + "ibcShipType": "2", + "ibcTankType": "2G", + "ibcDetection": "R", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.19.6", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -39489,19 +26643,19 @@ { "code": "ECHXN", "name": "Ethyl cyclohexane", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 575, + "id": 324, "abbreviation": "EMA", "nameKr": "메타크릴산에틸", "nameEn": "Ethyl methacrylate", - "synonymsEn": "Ethyl methacrylate / EMA / Ethyl Methacrylate (stabilized with HQ) / PEMT / MAM6 / MCKD / CD227 / PEMPT / H23AG / MCKD1 / ADMCKD", "synonymsKr": "메타크릴산 에틸 / 메타크릴산에틸 / 에틸메타크릴레이트 / 에틸메타크릴레이트 / 에틸 메타크릴레이트 / 2-메틸-2-프로페노산, 에틸 에스터 / 에틸 2-메틸-2-프로펜오에이트", + "synonymsEn": "Ethyl methacrylate / EMA / Ethyl Methacrylate (stabilized with HQ) / PEMT / MAM6 / MCKD / CD227 / PEMPT / H23AG / MCKD1 / ADMCKD", "unNumber": "", "casNumber": "97-63-2", "transportMethod": "", @@ -39544,11 +26698,11 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "F", + "ibcDetection": "R", "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.13, 15.19.6, 16.6.1, 16.6.2", + "ibcMinRequirement": "15.13, 15.19.6, 16.6.1,\n16.6.2", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -39557,19 +26711,19 @@ { "code": "EMA", "name": "Ethyl methacrylate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 576, + "id": 325, "abbreviation": "E3EPROP", "nameKr": "에틸-3-에톡시 프로피오네이트", "nameEn": "Ethyl-3-ethoxy propionate", - "synonymsEn": "Ethyl 3-ethoxypropionate / EEP / ETHYL 3-ETHOXYPROPANOATE / Propanoic acid, 3-ethoxy-, ethyl ester / 3-ETHOXYPROPIONIC ACID ETHYL ESTER / EEP-3 / eep solvent / Ektapro EEP / cas no 763-69-9 / ethoxypropionate / 3-ethoxypropionate", "synonymsKr": "에폭시프로피온산에틸에스테르 / 에틸-3-에톡시프로피오네이트 / 에틸베타-에톡시프로피온산 / 에폭시프로피온산에틸에스테르 / 에틸베타-에톡시프로피온산(ETHYLBETA-ETHOXYPROPIONATE) / 3-에톡시-프로피온산, 에틸 에스터 / 에톡시프로피온산, 에틸 에스터 / 에틸 3-에톡시프로피온산 / 에틸 베타-에톡시프로피온산 / 에틸-3-에톡시프로파노에이트", + "synonymsEn": "Ethyl 3-ethoxypropionate / EEP / ETHYL 3-ETHOXYPROPANOATE / Propanoic acid, 3-ethoxy-, ethyl ester / 3-ETHOXYPROPIONIC ACID ETHYL ESTER / EEP-3 / eep solvent / Ektapro EEP / cas no 763-69-9 / ethoxypropionate / 3-ethoxypropionate", "unNumber": "", "casNumber": "763-69-9", "transportMethod": "", @@ -39611,12 +26765,12 @@ "exposure": "", "regulation": "" }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", + "ibcHazard": "P", + "ibcShipType": "2", + "ibcTankType": "2G", + "ibcDetection": "R", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.19.6", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -39625,19 +26779,19 @@ { "code": "E3EPROP", "name": "Ethyl-3-ethoxy propionate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 577, + "id": 326, "abbreviation": "ECHN", "nameKr": "에틸렌 클로로하이드린", "nameEn": "Ethylene chlorohydrin", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "107-07-3", "transportMethod": "", @@ -39680,9 +26834,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 1TYPE", + "ibcShipType": "1", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.17, 15.18, 15.19", "emsCode": "", @@ -39693,155 +26847,19 @@ { "code": "ECHN", "name": "Ethylene chlorohydrin", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 578, - "abbreviation": "ECYH", - "nameKr": "", - "nameEn": "Ethylene cyanohydrin", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "1", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "T", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "ECYH", - "name": "Ethylene cyanohydrin", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 579, - "abbreviation": "EDM", - "nameKr": "에틸렌디아민", - "nameEn": "Ethylene diamine", - "synonymsEn": "Ethylenediamine / EDA / ETHANE-1,2-DIAMINE / 1,2-DIAMINOETHANE / YEA / 1,2-ETHANEDIAMINE / Ethylendiamine / 1,2-Ethylenediamine / Diaminoethane / H2NCH2CH2NH2 / Ethyleendiamine", - "synonymsKr": "에틸렌디아민 / 1,2-디아미노에탄 / 에틸렌다이아민 / 에틸렌디아민", - "unNumber": "1604", - "casNumber": "107-15-3", - "transportMethod": "", - "sebc": "", - "usage": "유기합성 원료, 섬유 처리제, EDTA 수지 등 제조원료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EDM", - "name": "Ethylene diamine", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 580, + "id": 327, "abbreviation": "EDB", "nameKr": "에틸렌 디브로마이드", "nameEn": "Ethylene dibromide", - "synonymsEn": "1,2-Dibromoethane / EDB / DIBROMOETHANE / ETHYLENE DIBROMIDE / 1,2-dibromethane / 1,2-EDB / 1,2-Dibromethan / ETHYLENE BROMIDE / 1,2-DIBROMOETANE / Soilbrom / CH2BrCH2Br", "synonymsKr": "에틸렌 디브롬 / 에틸렌다이브로마이드 / 1,2-디브로모에탄 / 에틸렌디브롬 / 1,2-다이브로모에테인 / 에틸렌 다이브로마이드 / 에틸렌디브롬화물", + "synonymsEn": "1,2-Dibromoethane / EDB / DIBROMOETHANE / ETHYLENE DIBROMIDE / 1,2-dibromethane / 1,2-EDB / 1,2-Dibromethan / ETHYLENE BROMIDE / 1,2-DIBROMOETANE / Soilbrom / CH2BrCH2Br", "unNumber": "", "casNumber": "106-93-4", "transportMethod": "", @@ -39897,87 +26915,19 @@ { "code": "EDB", "name": "Ethylene dibromide", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 581, - "abbreviation": "EGMBE", - "nameKr": "부틸옥시톨", - "nameEn": "Ethylene glycol monobutyl ether", - "synonymsEn": "2-Butoxyethanol / BUTYL GLYCOL / Ethanol, 2-butoxy- / BUTYL CELLOSOLVE / ETHYLENE GLYCOL MONOBUTYL ETHER / BUTOXYETHANOL / BUTYL OXITOL / ETHYLENE GLYCOL BUTYL ETHER / egbe / GLYCOL ETHER EB / 2-be", - "synonymsKr": "에틸렌글리콜모노부틸에테르 / 부틸-β-히드록시에틸에테르 / 2-부톡시에탄올 / 모노부틸글리콜 / 부틸셀로솔브 / 부틸옥시톨 / 뷰틸셀로솔브 / 에틸렌글리콜모노부틸에테르 / 부톡시에탄올 / 에틸렌 글리콜 모노-N-뷰틸 에테르", - "unNumber": "2810", - "casNumber": "111-76-2", - "transportMethod": "", - "sebc": "", - "usage": "페인트, 잉크, 세정제, 화장품, 농약 등 다양한 산업 및 일상생활에서 용매, 세정제, 가소제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EGMBE", - "name": "Ethylene glycol monobutyl ether", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 582, + "id": 328, "abbreviation": "EGMBEA", "nameKr": "에틸렌글리콜 모노부틸 에테르 아세테이트", "nameEn": "Ethylene glycol monobutyl ether acetate", - "synonymsEn": "2-Butoxyethyl acetate / BUTYL GLYCOL ACETATE / BUTYL CELLOSOLVE ACETATE / ETHYLENE GLYCOL MONOBUTYL ETHER ACETATE / 2-butoxy-ethanoacetate / BUTOXYETHYL ACETATE / 2-butoxyethylesterkyselinyoctove / EGBEA / EB ACETATE / ektasolveebacetate / Butylcelosolvacetat", "synonymsKr": "에틸렌 글리콜 모노뷰틸 에테르 아세트산 / 에틸렌글리콜모노뷰틸에테르아세테이트 / 에틸렌글리콜모노뷰틸에테르아세트산 / 에틸렌글리콜모노부틸에테르아세테이트 / 2-뷰톡시에탄올아세테이트 / 부톡시에틸아세테이트 / 에틸렌 글리콜 모노뷰틸 에테르 아세테이트 / 2-뷰톡시에탄올 아세테이트 / 부틸글리콜 아세트산 / 부틸셀로솔브아세트산 / 에틸렌글리콜모노부틸에테르 아세트산 / 폴리 캐트리타르더", + "synonymsEn": "2-Butoxyethyl acetate / BUTYL GLYCOL ACETATE / BUTYL CELLOSOLVE ACETATE / ETHYLENE GLYCOL MONOBUTYL ETHER ACETATE / 2-butoxy-ethanoacetate / BUTOXYETHYL ACETATE / 2-butoxyethylesterkyselinyoctove / EGBEA / EB ACETATE / ektasolveebacetate / Butylcelosolvacetat", "unNumber": "", "casNumber": "112-07-2", "transportMethod": "", @@ -40033,19 +26983,19 @@ { "code": "EGMBEA", "name": "Ethylene glycol monobutyl ether acetate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 583, + "id": 329, "abbreviation": "EGMEE", "nameKr": "에틸렌글리콜 모노에틸에테르", "nameEn": "Ethylene glycol monoethyl ether", - "synonymsEn": "2-Ethoxyethanol / Ethoxyethanol / ETHYL GLYCOL / ETHYLENE GLYCOL MONOETHYL ETHER / CELLOSOLVE / ETHYL CELLOSOLVE / EGEE / Ethanol, 2-ethoxy- / Glycol monoethyl ether / ETHYLENE GLYCOL ETHYL ETHER / ethoxyethano", "synonymsKr": "에틸렌글리콜 모노에틸 에테르 / 에틸렌글리콜모노에틸에테르 / 2-에톡시에탄올 / 에틸글르콜 / 에틸렌글리콜에틸에테르 / 에틸셀로솔브 / 에톡시에탄올 / 2-에톡시에탄올(에틸렌글리콜모노에틸에터,이지엠이이) / 에틸렌글리콜모노에틸에터 / 에틸렌 글리콜 모노에틸 에테르 / 글리콜 에틸 에테르 / 셀로솔브", + "synonymsEn": "2-Ethoxyethanol / Ethoxyethanol / ETHYL GLYCOL / ETHYLENE GLYCOL MONOETHYL ETHER / CELLOSOLVE / ETHYL CELLOSOLVE / EGEE / Ethanol, 2-ethoxy- / Glycol monoethyl ether / ETHYLENE GLYCOL ETHYL ETHER / ethoxyethano", "unNumber": "", "casNumber": "110-80-5", "transportMethod": "", @@ -40101,87 +27051,19 @@ { "code": "EGMEE", "name": "Ethylene glycol monoethyl ether", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 584, - "abbreviation": "EGMEEA", - "nameKr": "에틸렌 글리콜 모노에틸 에테르 아세테이트", - "nameEn": "Ethylene glycol monoethyl ether acetate", - "synonymsEn": "Ethylene glycol monoethyl ether acetate / EEA / ETHYL GLYCOL ACETATE / CELLOSOLVE ACETATE / 2-ETHOXYETHYL ACETATE / Ethoxyethyl acetate / ETHYL CELLOSOLVE ACETATE / Glycol monoethyl ether acetate / CSAC / egeea / ethoxyacetate", - "synonymsKr": "에틸셀로솔브아세테이트 / 에틸렌글리콜모노에틸에테르아세테이트 / 2-에톡시에탄올아세트산 / 2-에톡시에틸아세테이트 / 아세트산2-에톡시에탄올 / 에틸글리콜아세테이트 / 에틸셀로솔브아세테이트 / 에톡시에탄올아세테이트 / 에틸렌 글리콜 모노에틸 에테르 아세테이트", - "unNumber": "", - "casNumber": "111-15-9", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EGMEEA", - "name": "Ethylene glycol monoethyl ether acetate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 585, + "id": 330, "abbreviation": "EGMME", "nameKr": "에틸렌글리콜 모노메틸에테르", "nameEn": "Ethylene glycol monomethyl ether", - "synonymsEn": "2-Methoxyethanol / H2O / AMYL ALCOHOL / ETHYLENE GLYCOL MONOMETHYL ETHER / METHOXYETHANOL / DISTILLED WATER / Egme / METHYL CELLOSOLVE / GLYCOL MONOMETHYL ETHER / Methyl glycol / EGM", "synonymsKr": "2-메톡시 에탄올 / 2-메톡시에탄올 / Monomethyletherofethyleneglycol,에탄올,2-메톡시2-메톡시에탄올 / 메틸셀로솔브 / 순수 / 증류수 / 에틸렌글라이콜모노메틸에터 / 메틸 셀로솔브 / 에틸렌 글리콜 모노메틸 에테르", + "synonymsEn": "2-Methoxyethanol / H2O / AMYL ALCOHOL / ETHYLENE GLYCOL MONOMETHYL ETHER / METHOXYETHANOL / DISTILLED WATER / Egme / METHYL CELLOSOLVE / GLYCOL MONOMETHYL ETHER / Methyl glycol / EGM", "unNumber": "", "casNumber": "109-86-4", "transportMethod": "", @@ -40237,19 +27119,19 @@ { "code": "EGMME", "name": "Ethylene glycol monomethyl ether", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 586, + "id": 331, "abbreviation": "EGMPE", "nameKr": "에틸렌글리콜 모노페널 에테르", "nameEn": "Ethylene glycol monophenyl ether", - "synonymsEn": "2-Phenoxyethanol / PHENOXYETHANOL / Ethanol, 2-phenoxy- / PhG / Phenoxyethyl alcohol / ETHYLENE GLYCOL PHENYL ETHER / Arosol / PHENOXETOL / phenoxyethanol[qr] / ROSE ETHER / Phenoxethol", "synonymsKr": "2-페녹시에탄올 / 2-페녹시에탄올 / 에틸렌글리콜페닐에테르 / 페녹시에탄올 / 에틸렌글리콜페닐에테르 / (2-하이드록시에톡시)벤젠 / 2-하이드록시에틸 페닐 에테르 / 베타-페녹시에탄올 / 베타-하이드록시에틸 페닐 에테르 / 에틸렌 글리콜 페닐 에테르 / 에틸렌글리콜 모노페닐 에테르", + "synonymsEn": "2-Phenoxyethanol / PHENOXYETHANOL / Ethanol, 2-phenoxy- / PhG / Phenoxyethyl alcohol / ETHYLENE GLYCOL PHENYL ETHER / Arosol / PHENOXETOL / phenoxyethanol[qr] / ROSE ETHER / Phenoxethol", "unNumber": "", "casNumber": "122-99-6", "transportMethod": "", @@ -40305,59 +27187,59 @@ { "code": "EGMPE", "name": "Ethylene glycol monophenyl ether", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 587, + "id": 332, "abbreviation": "EO", "nameKr": "산화에틸렌", "nameEn": "Ethylene oxide", - "synonymsEn": "ETHYLENE OXIDE / Oxane / eo / OXIRANE / C2H4O / ETO / Oxiran / Epoxyethane / Ethylene oxid / Oxacyclopropane / ethylene oxide solution", "synonymsKr": "에틸렌옥사이드 / 산화에틸렌 / 산화에틸렌(가스) / 옥시란,디히드로옥시렌,에폭시메탄 / 에틸렌옥사이드 / 에틸렌 옥사이드 / 1,2-에폭시에탄", + "synonymsEn": "ETHYLENE OXIDE / Oxane / eo / OXIRANE / C2H4O / ETO / Oxiran / Epoxyethane / Ethylene oxid / Oxacyclopropane / ethylene oxide solution", "unNumber": "", "casNumber": "75-21-8", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(2.3급), 산적액체(Y류), 산적액화가스", + "sebc": "GD (Gas-Dissolver)", "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "액화가스", + "color": "무색", + "odor": "약한 특유", + "flashPoint": "-29℃", + "autoIgnition": "429℃", + "boilingPoint": "11℃", + "density": "0.87", + "solubility": "1,000 g/L (잘 녹음)", + "vaporPressure": "1,310 mmHg (25℃)", + "vaporDensity": "1.5", + "explosionRange": "3~100%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 3, + "fire": 4, + "reactivity": 3, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "독성, 고인화성, 가스(G), 발암성, 변이원성", + "ergNumber": "119", + "idlh": "800 ppm", + "aegl2": "45 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "반경 800m 이상", + "responseDistanceSpillDay": "반경 50m 이상", + "responseDistanceSpillNight": "중하 300m 이상", + "marineResponse": "해수에 용해, 회수 곤란", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "독성, 발암성, 생식세포 변이원성, 고인화성", + "firstAid": "흡입: 신선한 공기, 산소공급, 인공호흡. 피부/안구: 다량의 물로 세척. 경구: 구토유발 금지, 긴급 의료조치.", + "fireFighting": "가스 차단 우선. 분무주수/CO₂/건조분말.", + "spillResponse": "점화원 제거. 환기. 증기운 이동 억제. 가스검지기 작동.", + "exposure": "TWA 1 ppm, AEGL-2 45 ppm, IDLH 800 ppm", + "regulation": "유해화학물질관리법, 고압가스안전관리법" }, "ibcHazard": "", "ibcShipType": "", @@ -40365,67 +27247,67 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-D, S-U", + "emsFire": "F-D", + "emsSpill": "S-U", "emsFirstAid": "", "cargoCodes": [ { "code": "EO", "name": "Ethylene oxide", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 588, + "id": 333, "abbreviation": "EIM", "nameKr": "에틸렌", "nameEn": "Ethyleneimine", - "synonymsEn": "Ethylene / C2H4 / Ethen / R1150 / Ethylen / etileno / Elayl / R-1150 / Athylen / Acetene / ETHYLENE", - "synonymsKr": "에틸렌 / 폴리에틸렌 / 에틸렌 / 아세텐 / 에텐 / 엘라일 / 올레피안 가스", + "synonymsKr": "아세텐/에텐/액체 에틸렌", + "synonymsEn": "Ethylene / C2H4 / Ethen / R1150 / Ethylen / etileno / Elayl / R-1150 / Athylen / Acetene / ETHYLENE / Acetene / Athylen (German) / Bicarburretted hydrogen / Elayl / Ethene / Etileno / Liquid ethylene / Olefiant gas / USEPA / OPP Pesticide Code: 041901", "unNumber": "", "casNumber": "74-85-1", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(2.1급), 산적액화가스", + "sebc": "G (Gas)", "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "가스", + "color": "무색", + "odor": "달콤한 냄새", + "flashPoint": "-i36r", + "autoIgnition": "450℃", + "boilingPoint": "-104℃", + "density": "0.87 (-110℃)", + "solubility": "0.131g/L(25℃)", + "vaporPressure": "52,100mmHg(25t)", + "vaporDensity": "0.98", + "explosionRange": "2.7~36%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 2, + "fire": 4, + "reactivity": 2, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "석유 및 석유대체연료사업법 / 석유가스", + "ergNumber": "115", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "1,600m", + "responseDistanceSpillDay": "100m", + "responseDistanceSpillNight": "800m", + "marineResponse": "증발 (E)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "고인화성, 단순 질식성, 동상 위험(액화)", + "firstAid": "흡입노출 • 즉시 의료조치 피부접촉 • 피부를 물로 씻을 것, 화상의 경우 다량의 찬물로 씻을 것 안구접촉 - 몇 분간 물로 조심해서 씻을 것, 콘택트렌즈 제거 경구섭취 • 입을 씻어낼 것. 토하게 하지 말 것, 긴급 의료조치", + "fireFighting": "가스 차단 우선. CO₂/건조분말.", + "spillResponse": "점화원 제거. 환기. 증기운 이동 억제.", "exposure": "", - "regulation": "" + "regulation": "고압가스안전관리법" }, "ibcHazard": "", "ibcShipType": "", @@ -40433,27 +27315,27 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-D, S-U", + "emsFire": "F-D", + "emsSpill": "S-U", "emsFirstAid": "", "cargoCodes": [ { "code": "EIM", "name": "Ethyleneimine", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 589, + "id": 334, "abbreviation": "ECP", "nameKr": "유칼립투스 오일", "nameEn": "Eucalyptus oil", - "synonymsEn": "Eucalyptus oil / eucalyptus / Eucalyptus Oil 80% / Eucalyptus essential oil / OIL OF EUCALYPTUS / Eucalyprus Globulus Oil / OIL OF EUCALYPTUS CITRIODORA / EUCALYPTUS GLOBULUS LEAF OIL / anyou / D05327 / ingalipt", "synonymsKr": "유칼립투스의 기름 / 유칼립투스의기름 / 유칼립투스의기름(OILOFEUCALYPTUS) / 유칼립투스잎오일", + "synonymsEn": "Eucalyptus oil / eucalyptus / Eucalyptus Oil 80% / Eucalyptus essential oil / OIL OF EUCALYPTUS / Eucalyprus Globulus Oil / OIL OF EUCALYPTUS CITRIODORA / EUCALYPTUS GLOBULUS LEAF OIL / anyou / D05327 / ingalipt", "unNumber": "", "casNumber": "8000-48-4", "transportMethod": "", @@ -40509,87 +27391,19 @@ { "code": "ECP", "name": "Eucalyptus oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 590, - "abbreviation": "EFT", - "nameKr": "우지 계통", - "nameEn": "Extra fancy tallow", - "synonymsEn": "·Fatty glyceride ·Edible tallow ·Animal tallow ·Horse fat tallow ·Beef tallow ·Stearin tallow ·Oleo tallow ·Mutton tallow ·Sheep fat tallow ·Tallow A1 grade ·Soap grade", - "synonymsKr": "Fatty 글리세라이드 ·Edible 탈로우 ·Animal 탈로우 ·Horse fat 탈로우 ·Beef 탈로우 ·Stearin 탈로우 ·Oleo 탈로우 ·Mutton 탈로우 ·Sheep fat 탈로우", - "unNumber": "", - "casNumber": "61789-97-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EFT", - "name": "Extra fancy tallow", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 591, + "id": 335, "abbreviation": "EXA10", "nameKr": "알코올 혼합물", "nameEn": "EXXAL10", - "synonymsEn": "Isodecanol / Isodecanol / Einecs 271-234-0 / isocapric alcohol / Alcohol (Isodecanol) / c9-11-iso-alcoholc10-rich / Alcohols,C9-11-iso,C10-rich / Alcohols,C9-11-iso-,C10-rich / Alcohols, C9-11-iso-, C1o-rich / Low foam isomeric alcohol ether / 8-Methylnonan-1-ol,98%(mixtures)", "synonymsKr": "알코올, C9-11-이소-, C10-RICH / 알코올,C9-11-아이소-,C10-리치 / 알코올,C9-11-이소-,C10-RICH / 알코올,C9-11-아이소-,C10-리치", + "synonymsEn": "Isodecanol / Isodecanol / Einecs 271-234-0 / isocapric alcohol / Alcohol (Isodecanol) / c9-11-iso-alcoholc10-rich / Alcohols,C9-11-iso,C10-rich / Alcohols,C9-11-iso-,C10-rich / Alcohols, C9-11-iso-, C1o-rich / Low foam isomeric alcohol ether / 8-Methylnonan-1-ol,98%(mixtures)", "unNumber": "", "casNumber": "68526-85-2", "transportMethod": "", @@ -40645,55 +27459,61 @@ { "code": "EXA10", "name": "EXXAL10", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "IDA", + "name": "Isodecanol", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 592, + "id": 336, "abbreviation": "EXA9", "nameKr": "알코올 혼합물", "nameEn": "EXXAL9", - "synonymsEn": "·Isononanol containing ·Exxal 9 ·Alphanol 900 ·Alphanol 910 ·INA ·INA(CFB) ·Isonanol ·Isonanol CFB ·Isononanol ·Isononyl alcohol", - "synonymsKr": "·아이소노난올을 포함함 ·알판올 900 ·알판올 910 ·아이소난올 ·아이소난올 CFB ·아이소노난올 ·아이소노닐 알코올", + "synonymsKr": "이소노나놀", + "synonymsEn": "2,6-DIMETHYL-4-HEPTANOL / FEMA 3140 / Einecs 271-233-5 / isononanols mixed / c8-10-iso-alcoholc9-rich / ISONONYL ALCOHOL, BRANCHED / Alcohols,C8-10-iso-,C9-rich / C8-10-ISO-ALCOHOLS, C9-RICH) / 4-HYDROXY-2,6-DIMETHYLHEPTANE / Alcohols, C8-1o-iso-, C9-rich", "unNumber": "1993", "casNumber": "68526-84-1", "transportMethod": "", "sebc": "", "usage": "화장품, 의료, 전자 제품 세정 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "state": "액체", + "color": "무색", + "odor": "독특한 냄새", + "flashPoint": "93。0℃", + "autoIgnition": "자료없음", + "boilingPoint": "200-207℃", + "density": "0.84", + "solubility": "거의 불용", + "vaporPressure": "0.03mmHg(20“C)", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Y", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", + "responseDistanceFire": "※화재위험등급기준", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", + "marineResponse": "휘발성", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 신선한 곳으로 이동, 산소공급, 인공호흡 피부접촉 • 뜨거운 물질의 경우 차가운 물로 씻을 것, 20분 이상 흐르는 물에 씻을 것 안구접촉 • 몇 분간 물로 씻을 것, 콘택트렌즈 제거, 의료초치 경구섭취 •긴급의료조치 초동 대옹방법 보호복 : 호흡구 보안경 보호장갑 기타장비 대응장비 3.4 형식 (C급) 방독마스크(반면.전면) O O 열화상카메라 I 초기 이격거리(m) 자료없음 방호거리(m) 자료없음 ►유출물질은 눈. 피부자극을 일으킬 수 있으므로, 모든 출동세력 풍상에 위치, 최소 이격거리 유지. 주변선박 통제 해상유출시 ►출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용, 증기흡입과 피부와 눈에 접촉을 피할 것 ►유출물질은 해상에 부유하므로 방제조치 필요 (오일펜스 설치 유출물질 확산방지, 유흡착재 등 이용 흅착회수) I 1|재 시 CII피거리(m) ' 자료없음 + ►유출물질은 연소시 유독가스 방출. 풍상에 위치, 최소 이격거리 유지하고 소화포 이용 화재진압 화재•폭발시 ► 열화상카메라 운용(결과전파), 소화포 이용 사고선 냉각조치 할 것 ►직수분사 금지(화재를 번지게 할 수 있음) ►", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -40713,767 +27533,19 @@ { "code": "EXA9", "name": "EXXAL9", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 593, - "abbreviation": "EXO100", - "nameKr": "하드로처리된 경 나프나", - "nameEn": "EXXOL DSP 100/140", - "synonymsEn": "SOLVENT DEGREASER / rang / ing / 40-70 / CHplc / 120°40-60°C / e: 60 - 95 ℃ / ACS,ISO / eum ether, boiL / SOLVENT DEGREASER", - "synonymsKr": "히드로처리된 경 나프타 / 수소처리된경질나프타(석유) / 히드로처리된경나프타 / 수소처리된경질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDLIGHT) / C9-10알케인/사이클로알케인 / C9-11알케인/사이클로알케인", - "unNumber": "", - "casNumber": "64742-49-0", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EXO100", - "name": "EXXOL DSP 100/140", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 594, - "abbreviation": "EXO80", - "nameKr": "하드로처리된 경 나프나", - "nameEn": "EXXOL DSP 80/110", - "synonymsEn": "SOLVENT DEGREASER / rang / ing / 40-70 / CHplc / 120°40-60°C / e: 60 - 95 ℃ / ACS,ISO / eum ether, boiL / SOLVENT DEGREASER", - "synonymsKr": "히드로처리된 경 나프타 / 수소처리된경질나프타(석유) / 히드로처리된경나프타 / 수소처리된경질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDLIGHT) / C9-10알케인/사이클로알케인 / C9-11알케인/사이클로알케인", - "unNumber": "", - "casNumber": "64742-49-0", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EXO80", - "name": "EXXOL DSP 80/110", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 595, - "abbreviation": "EPT76A", - "nameKr": "", - "nameEn": "EXX-PRINT T76A", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EPT76A", - "name": "EXX-PRINT T76A", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 596, - "abbreviation": "EXSD100", - "nameKr": "하드로처리된 경 증류(용제)", - "nameEn": "EXXSOL D 100", - "synonymsEn": "·Kerosene (hydrotreated) distillates petroleum hydrotreated light petroleum distillates hydrotreated light Blend 3577 B 2183 Exxsol D40 Naphtha Heavy Aromatic Distillate (HAD) Asia Exxsol D80 Fluid Asia Isopar M Fluid D-80 petroleum hydrocarbon solvent Deobase Exsol (misspelling0) Exxsol D80 deodorised deodourized deodourised deodorized kerosine kerosene hydrotreated light petroleum distillate paraffin redistilled kerosene odourless kerosene", - "synonymsKr": "히드로처리된 경 증류 / 수소처리된경질정제유(석유) / 히드로처리된경증류 / 수소처리된경질정제유(석유)(DISTILLATES(PETROLEUM),HYDROTREATEDLIGHT) / C11-15알케인/사이클로알케인 / C13-14아이소파라핀", - "unNumber": "", - "casNumber": "64742-47-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EXSD100", - "name": "EXXSOL D 100", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 597, - "abbreviation": "EXSD220", - "nameKr": "하드로처리된 경 증류(용제)", - "nameEn": "EXXSOL D220/230", - "synonymsEn": "·Kerosene (hydrotreated) distillates petroleum hydrotreated light petroleum distillates hydrotreated light Blend 3577 B 2183 Exxsol D40 Naphtha Heavy Aromatic Distillate (HAD) Asia Exxsol D80 Fluid Asia Isopar M Fluid D-80 petroleum hydrocarbon solvent Deobase Exsol (misspelling0) Exxsol D80 deodorised deodourized deodourised deodorized kerosine kerosene hydrotreated light petroleum distillate paraffin redistilled kerosene odourless kerosene", - "synonymsKr": "히드로처리된 경 증류 / 수소처리된경질정제유(석유) / 히드로처리된경증류 / 수소처리된경질정제유(석유)(DISTILLATES(PETROLEUM),HYDROTREATEDLIGHT) / C11-15알케인/사이클로알케인 / C13-14아이소파라핀", - "unNumber": "", - "casNumber": "64742-47-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EXSD220", - "name": "EXXSOL D220/230", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 598, - "abbreviation": "EXSD30", - "nameKr": "히드로처리된 중 나프타(용제)", - "nameEn": "EXXSOL D30", - "synonymsEn": "·Isopar E G B H K V C generichydrocarbon heavy synthetic hydrocarbons C10-C13 n-alkanes isoalkanes cyclics <2% aromatics hydrotreated light steam cracked naphtha residuum petroleum isoparaffinic hydrocarbons low boiling hydrogen treated naphthaalkanes C11-13-iso- naphtha petroleum hydrotreated", - "synonymsKr": "히드로처리된 중 나프타 / 수소처리된중질나프타(석유) / 히드로처리된중나프타 / 수소처리된중질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDHEAVY) / C10-11아이소파라핀 / C10-12알케인/사이클로알케인 / C10-13아이소파라핀 / C11-12아이소파라핀 / C11-13아이소파라핀", - "unNumber": "", - "casNumber": "64742-48-9", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EXSD30", - "name": "EXXSOL D30", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 599, - "abbreviation": "EXSD40", - "nameKr": "히드로처리된 중 나프타(용제)", - "nameEn": "EXXSOL D40", - "synonymsEn": "·Isopar E G B H K V C generichydrocarbon heavy synthetic hydrocarbons C10-C13 n-alkanes isoalkanes cyclics <2% aromatics hydrotreated light steam cracked naphtha residuum petroleum isoparaffinic hydrocarbons low boiling hydrogen treated naphthaalkanes C11-13-iso- naphtha petroleum hydrotreated", - "synonymsKr": "히드로처리된 중 나프타 / 수소처리된중질나프타(석유) / 히드로처리된중나프타 / 수소처리된중질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDHEAVY) / C10-11아이소파라핀 / C10-12알케인/사이클로알케인 / C10-13아이소파라핀 / C11-12아이소파라핀 / C11-13아이소파라핀", - "unNumber": "", - "casNumber": "64742-48-9", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EXSD40", - "name": "EXXSOL D40", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 600, - "abbreviation": "EXSD80", - "nameKr": "하드로처리된 경 증류(용제)", - "nameEn": "EXXSOL D80", - "synonymsEn": "·Kerosene (hydrotreated) distillates petroleum hydrotreated light petroleum distillates hydrotreated light Blend 3577 B 2183 Exxsol D40 Naphtha Heavy Aromatic Distillate (HAD) Asia Exxsol D80 Fluid Asia Isopar M Fluid D-80 petroleum hydrocarbon solvent Deobase Exsol (misspelling0) Exxsol D80 deodorised deodourized deodourised deodorized kerosine kerosene hydrotreated light petroleum distillate paraffin redistilled kerosene odourless kerosene", - "synonymsKr": "히드로처리된 경 증류 / 수소처리된경질정제유(석유) / 히드로처리된경증류 / 수소처리된경질정제유(석유)(DISTILLATES(PETROLEUM),HYDROTREATEDLIGHT) / C11-15알케인/사이클로알케인 / C13-14아이소파라핀", - "unNumber": "", - "casNumber": "64742-47-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EXSD80", - "name": "EXXSOL D80", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 601, - "abbreviation": "EXHPT", - "nameKr": "히드로처리된 중 나프타(석유)", - "nameEn": "EXXSOL Heptane", - "synonymsEn": "SOLVENT DEGREASER / rang / ing / 40-70 / CHplc / 120°40-60°C / e: 60 - 95 ℃ / ACS,ISO / eum ether, boiL / SOLVENT DEGREASER", - "synonymsKr": "히드로처리된 경 나프타 / 수소처리된경질나프타(석유) / 히드로처리된경나프타 / 수소처리된경질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDLIGHT) / C9-10알케인/사이클로알케인 / C9-11알케인/사이클로알케인", - "unNumber": "", - "casNumber": "64742-49-0", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EXHPT", - "name": "EXXSOL Heptane", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 602, - "abbreviation": "EXIHX", - "nameKr": "히드로처리된 중 나프타(석유)", - "nameEn": "EXXSOL Isohexane", - "synonymsEn": "SOLVENT DEGREASER / rang / ing / 40-70 / CHplc / 120°40-60°C / e: 60 - 95 ℃ / ACS,ISO / eum ether, boiL / SOLVENT DEGREASER", - "synonymsKr": "히드로처리된 경 나프타 / 수소처리된경질나프타(석유) / 히드로처리된경나프타 / 수소처리된경질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDLIGHT) / C9-10알케인/사이클로알케인 / C9-11알케인/사이클로알케인", - "unNumber": "", - "casNumber": "64742-49-0", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EXIHX", - "name": "EXXSOL Isohexane", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 603, - "abbreviation": "FA12", - "nameKr": "라우르산", - "nameEn": "FA C12", - "synonymsEn": "Lauric acid / DODECANOIC ACID / C12 / Emery651 / Vulvic acid / FEMA 2614 / lauric acid, pure / N-DODECANOIC ACID / LAUROSTEARIC ACID / Lauric acid 98-101 % (acidimetric) / Fatty acid methyl ester sulfonate (MES)", - "synonymsKr": "라우르산 / 라우르산 / 도데카노익산 / 라우릭산 / 라우릭애씨드 / 도데칸산 / 1-운데케인카복실산 / n-도데칸산 / 데다콘산 / 도데실산 / 도데칸 산 / 도데코 산 / 도데크산 / 듀오-디시클릭 산 / 라우로스테아르 산 / 로로스테아르산 / 로르산 / 하이드로폴 산 1255", - "unNumber": "", - "casNumber": "143-07-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "FA12", - "name": "FA C12", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 604, + "id": 337, "abbreviation": "FA12/14", "nameKr": "알코올, C12-14 에톡실산화", "nameEn": "FA C12-14", - "synonymsEn": "LAURETH-4 / LAURETH-4 / Alcohols, C12-14, ethoxylated / LA EO/PO / AEO-7-9-10 / Dehydol LS 2 / Syntanol ES 3 / Penetrant JFC / Synperonic L 7 / Syntanol ALM 8 / Tergitol 24L50", "synonymsKr": "알코올, C12-14, 에톡실산화 / 알코올,C12-14,에톡실산화 / 알코올,C12-14,에톡실산화 / C12-14파레스-12 / C12-14파레스-3 / C12-14파레스-5 / C12-14파레스-7 / C12-14파레스-9 / 라우레스-21 / C12-14, 알코올 (2EO) 에톡실레이티드 / 알코올 C12-14,에톡실레이티드 / 알코올, C12-14, 에톡실레이트 / 에톡실레이티드 알코올 (C = 12-14)", + "synonymsEn": "LAURETH-4 / LAURETH-4 / Alcohols, C12-14, ethoxylated / LA EO / PO / AEO-7-9-10 / Dehydol LS 2 / Syntanol ES 3 / Penetrant JFC / Synperonic L 7 / Syntanol ALM 8 / Tergitol 24L50", "unNumber": "", "casNumber": "68439-50-9", "transportMethod": "", @@ -41529,19 +27601,19 @@ { "code": "FA12/14", "name": "FA C12-14", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 605, + "id": 338, "abbreviation": "FA12/16", "nameKr": "알코올, C12-16", "nameEn": "FA C12-16", - "synonymsEn": "Alcohols, C12-16 / C12-16 ALCOHOLS / Alcohols, C12-16 / Alkohole, C12-16 / Cetyl/dodecyl alcohol", "synonymsKr": "알코올, C12-16 / 알코올,C12-16 / 알코올,C12-16 / C12-16알코올", + "synonymsEn": "Alcohols, C12-16 / C12-16 ALCOHOLS / Alcohols, C12-16 / Alkohole, C12-16 / Cetyl / dodecyl alcohol", "unNumber": "", "casNumber": "68855-56-1", "transportMethod": "", @@ -41597,359 +27669,19 @@ { "code": "FA12/16", "name": "FA C12-16", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 606, - "abbreviation": "FA12/18", - "nameKr": "", - "nameEn": "FA C12-18", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "FA12/18", - "name": "FA C12-18", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 607, - "abbreviation": "FA14", - "nameKr": "", - "nameEn": "FA C14", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "FA14", - "name": "FA C14", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 608, - "abbreviation": "FA16", - "nameKr": "", - "nameEn": "FA C16", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "FA16", - "name": "FA C16", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 609, - "abbreviation": "FA18", - "nameKr": "", - "nameEn": "FA C18", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "FA18", - "name": "FA C18", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 610, - "abbreviation": "FA6/12", - "nameKr": "", - "nameEn": "FA C6-12", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "FA6/12", - "name": "FA C6-12", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 611, + "id": 339, "abbreviation": "FLO", "nameKr": "대구 간유", "nameEn": "Fish liver oil", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "8009-00-5", "transportMethod": "", @@ -42005,19 +27737,19 @@ { "code": "FLO", "name": "Fish liver oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 612, - "abbreviation": "FISH", - "nameKr": "생선 기름", - "nameEn": "Fish oil", - "synonymsEn": "Fish oil / Krill oil / Promega / Omega-3 Oil / Oils, fish / Fish oil DHA/EPA / Fish oil USP/EP/BP / Fsh oil / Fish oil / Oele, Fisch- / Fish Oil (1 g)", + "id": 340, + "abbreviation": "SRFISH", + "nameKr": "반정제 어유", + "nameEn": "Semi refined fish oil", "synonymsKr": "어류오일 / 어류오일 / 어유", + "synonymsEn": "Fish oil / Krill oil / Promega / Omega-3 Oil / Oils, fish / Fish oil DHA / EPA / Fish oil USP / EP / BP / Fsh oil / Fish oil / Oele, Fisch- / Fish Oil (1 g)", "unNumber": "", "casNumber": "8016-13-5", "transportMethod": "", @@ -42059,12 +27791,12 @@ "exposure": "", "regulation": "" }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2(k)TYPE", - "ibcTankType": "2G", - "ibcDetection": "No", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -42073,19 +27805,25 @@ { "code": "FISH", "name": "Fish oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SRFISH", + "name": "Semi refined fish oil", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 613, + "id": 341, "abbreviation": "FDH", "nameKr": "포름알데히드", "nameEn": "Formaldehyde", - "synonymsEn": "Formaldehyde / FORMALIN / HCHO / CH2O / Formaldehyd / METHANAL / METHANONE / FORMALDEHYDE SOLUTION / Methylene glycol / Formaline / H2CO", "synonymsKr": "포르말린 / 폼알데하이드 / 포르말린 / 포름알데히드 / 포름알데히드수용액 / 포름알데히드수용액(37%) / 폼알데하이드용액 / 포름알데하이드 / 메탄알 / 포르말리트 / 포름알데히드용액 / 포름올", + "synonymsEn": "Formaldehyde / FORMALIN / HCHO / CH2O / Formaldehyd / METHANAL / METHANONE / FORMALDEHYDE SOLUTION / Methylene glycol / Formaline / H2CO", "unNumber": "", "casNumber": "50-00-0", "transportMethod": "", @@ -42141,19 +27879,19 @@ { "code": "FDH", "name": "Formaldehyde", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 614, + "id": 342, "abbreviation": "FMM", "nameKr": "포름아미드", "nameEn": "Formamide", - "synonymsEn": "Formamide / HCONH2 / METHANAMIDE / Formamid / formimidicacid / Formaride / Formylamide / FORMIC AMIDE / CARBAMALDEHYDE / Formimidic acid / Residual Solvent Class 2 - Formamide", "synonymsKr": "포름아미드 / 포름아미드 / 메탄아미드 / 포르미미딕산 / 카르밤알데히드 / 카르밤알데히드 / 메탄아미드 / 포르미미딕산 / 폼아마이드 / 메탄아마이드 / 카밤알데하이드 / 폼이미드산", + "synonymsEn": "Formamide / HCONH2 / METHANAMIDE / Formamid / formimidicacid / Formaride / Formylamide / FORMIC AMIDE / CARBAMALDEHYDE / Formimidic acid / Residual Solvent Class 2 - Formamide", "unNumber": "", "casNumber": "75-12-7", "transportMethod": "", @@ -42196,11 +27934,11 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "T", + "ibcDetection": "C", "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12, 15.17, 15.19.6, 16.2.9", + "ibcMinRequirement": "15.12, 15.17, 15.19.6,\n16.2.9", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -42209,19 +27947,19 @@ { "code": "FMM", "name": "Formamide", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 615, + "id": 343, "abbreviation": "FMA", "nameKr": "개미산", "nameEn": "Formic acid", - "synonymsEn": "Formic acid / HCOOH / jiasuan / formic / METHANONE / FORMALDEHYDE SOLUTION / Methanoic acid / Acide formique / Formic acid 90% / FORMOL / Acido formico", "synonymsKr": "개미산 / 포름산 / 개미산 / 메타노산 / 포름산(86%이상) / 포믹애씨드 / 폼산", + "synonymsEn": "Formic acid / HCOOH / jiasuan / formic / METHANONE / FORMALDEHYDE SOLUTION / Methanoic acid / Acide formique / Formic acid 90% / FORMOL / Acido formico", "unNumber": "", "casNumber": "64-18-6", "transportMethod": "", @@ -42277,87 +28015,19 @@ { "code": "FMA", "name": "Formic acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 616, - "abbreviation": "FRBDPO", - "nameKr": "팜유", - "nameEn": "Fractinated R.B.D. palm oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "1", - "casNumber": "93334-39-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "FRBDPO", - "name": "Fractinated R.B.D. palm oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 617, + "id": 344, "abbreviation": "FRUCIOSE", "nameKr": "과당", "nameEn": "Fruciose", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "57-48-7", "transportMethod": "", @@ -42413,19 +28083,19 @@ { "code": "FRUCIOSE", "name": "Fruciose", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 618, + "id": 345, "abbreviation": "FO", "nameKr": "연료유", "nameEn": "Fuel oil", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "68476-33-5", "transportMethod": "", @@ -42481,19 +28151,19 @@ { "code": "FO", "name": "Fuel oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 619, + "id": 346, "abbreviation": "FHPS", "nameKr": "하이드록시 오일(팜)", "nameEn": "Fully hydrogeterated palm stearine", - "synonymsEn": "Oils, palm, hydrogenated / GV 60 / PW 50 / IHP 58 / Dub HPH / F 3 Oil / Nutresca / DUB-PPE 3 / Akofine P / UmFeed 131 / Nomcort PHS", "synonymsKr": "하이드록시 오일(팜) / 하이드록시오일(팜) / 하이드록시오일(팜) / 하이드로제네이티드팜오일", + "synonymsEn": "Oils, palm, hydrogenated / GV 60 / PW 50 / IHP 58 / Dub HPH / F 3 Oil / Nutresca / DUB-PPE 3 / Akofine P / UmFeed 131 / Nomcort PHS", "unNumber": "", "casNumber": "68514-74-9", "transportMethod": "", @@ -42549,359 +28219,25 @@ { "code": "FHPS", "name": "Fully hydrogeterated palm stearine", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 620, - "abbreviation": "FRPO", - "nameKr": "완전 정제된 팜유", - "nameEn": "Fully refined palm oil", - "synonymsEn": "PALM OIL / palm / oils,palm / ELAEIS GUINEENSIS (PALM) OIL / PALMFAT / PALM OIL / REDPALMOIL / PALM BUTTER / Oele, Palm- / CRUDEPALMOIL / Palmoilrefined", - "synonymsKr": "아메리카오일팜열매오일 / 아메리카오일팜열매오일 / 오일팜버터 / 오일팜오일 / 야자유(과실로 부터)", - "unNumber": "1169", - "casNumber": "8002-75-3", - "transportMethod": "", - "sebc": "", - "usage": "식용유, 화장품, 세제, 의약품 제조 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "FRPO", - "name": "Fully refined palm oil", - "company": "", - "source": "화물적부도" + "code": "HPL", + "name": "Hydrogenated palm olein", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 621, - "abbreviation": "FRPL", - "nameKr": "완전 정제된 팜 올레인", - "nameEn": "Fully refined palm olein", - "synonymsEn": "PALM OIL / palm / oils,palm / ELAEIS GUINEENSIS (PALM) OIL / PALMFAT / PALM OIL / REDPALMOIL / PALM BUTTER / Oele, Palm- / CRUDEPALMOIL / Palmoilrefined", - "synonymsKr": "아메리카오일팜열매오일 / 아메리카오일팜열매오일 / 오일팜버터 / 오일팜오일 / 야자유(과실로 부터)", - "unNumber": "1169", - "casNumber": "8002-75-3", - "transportMethod": "", - "sebc": "", - "usage": "식용유, 화장품, 세제, 의약품 제조 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "FRPL", - "name": "Fully refined palm olein", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 622, - "abbreviation": "FRPS", - "nameKr": "완전 정제된 파인 스테아린", - "nameEn": "Fully refined palm stearin", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "1", - "casNumber": "91079-14-0", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "FRPS", - "name": "Fully refined palm stearin", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 623, - "abbreviation": "FRRSO", - "nameKr": "완전 정제된 채종유", - "nameEn": "Fully refined rapeseed oil", - "synonymsEn": "RAPESEED OIL / Rapeoil / Rapsoel / AKOREX L / rapedoil / COLZAOIL / RAPESEED OIL / rapessed oil / USRAPESEEDOIL / LIPEX CANOLA-U / NEWRAPESEEDOIL", - "synonymsKr": "RAPE종자 기름 / RAPE종자기름 / 유채기름 / 유채기름 / 유채씨오일 / 카놀라오일", - "unNumber": "", - "casNumber": "8002-13-9", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "FRRSO", - "name": "Fully refined rapeseed oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 624, - "abbreviation": "FRSBO", - "nameKr": "완전 정제된 대두유", - "nameEn": "Fully refined soya bean oil", - "synonymsEn": "Soybean oil / soybean / SOYASAPONIN / Soy oil / SOYA OIL / CAP 18 (oil) / SOYBEAN POLAR LIPID EXTRACT / A6OIL / CAP 18 / D04962 / HY 3050", - "synonymsKr": "대두 기름 / 대두기름 / 대두기름(SOYBEANOIL) / 돌콩오일 / 대두유", - "unNumber": "", - "casNumber": "8001-22-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "FRSBO", - "name": "Fully refined soya bean oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 625, + "id": 347, "abbreviation": "FFL", "nameKr": "푸르푸랄", "nameEn": "Furfural", - "synonymsEn": "Furfural / Furan-2-carbaldehyde / 2-FURANCARBOXALDEHYDE / 2-FURALDEHYDE / 2-Furfural / Furol / FURALDEHYDE / FURFURALDEHYDE / furfurol / 2-FURANCARBOXYALDEHYDE / FCHO", "synonymsKr": "푸르푸랄 / 푸르푸랄 / 2-푸란알데히드 / 2-푸릴-메탄알 / 2-푸릴알데히드 / 아티피샬안트오일 / 푸랄 / 푸르푸르롤 / 푸르푸르알데히드 / 푸르푸르올 / 피로뮤식알데히드 / 2-포르밀푸란 / 2-푸란카르보날 / 2-푸란카르복알데히드 / 2-푸르알데히드 / 2-푸르푸랄 / 알파-푸르올 / 퍼퓨랄", + "synonymsEn": "Furfural / Furan-2-carbaldehyde / 2-FURANCARBOXALDEHYDE / 2-FURALDEHYDE / 2-Furfural / Furol / FURALDEHYDE / FURFURALDEHYDE / furfurol / 2-FURANCARBOXYALDEHYDE / FCHO", "unNumber": "", "casNumber": "98-01-1", "transportMethod": "", @@ -42944,9 +28280,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.17, 15.19", "emsCode": "", @@ -42957,19 +28293,19 @@ { "code": "FFL", "name": "Furfural", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 626, + "id": 348, "abbreviation": "FUSEL", "nameKr": "퓨젤 오일", "nameEn": "Fusel oil", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "8013-75-0", "transportMethod": "", @@ -43025,59 +28361,59 @@ { "code": "FUSEL", "name": "Fusel oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 627, - "abbreviation": "GSLN", - "nameKr": "휘발유", - "nameEn": "Gasoline", - "synonymsEn": "gasoline / GASOLINE / PIANO Gasoline / Cleaning solven / RFA Gasoline@Blank / TIANFU-CHEM gasoline / RF-A Gasoline(Technical) / PIANO Gasoline (with MtBE) / GASOLINE(FROM50-100OCTANE) / PIANO Gasoline (with Ethanol) / Gasoline - Premium@0.5 mg/mL in MeOH", - "synonymsKr": "휘발유 / 가솔린 / 휘발유 / 가솔린, 천연 / 경질 가솔린", + "id": 349, + "abbreviation": "GASOIL", + "nameKr": "경유", + "nameEn": "Gas oil", + "synonymsKr": "가스 기름 / 가스기름 / 가스기름,경 / 가스기름,경 / 유분(석유),중간중간", + "synonymsEn": "Distillates (petroleum), straight-run middle / VDFGASOIL / Gas oil, blend / KERMAC 600 SOLVENT) / STRAIGHTRUNMIDDLEDISTILLATE / Distillates (petroleum), straight-run middle", "unNumber": "", - "casNumber": "8006-61-9", - "transportMethod": "", - "sebc": "", + "casNumber": "64741-44-2", + "transportMethod": "산적액체(Y류)", + "sebc": "F (Floater)", "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "액체", + "color": "연한 황갈색", + "odor": "유분 냄새", + "flashPoint": "56℃", + "autoIgnition": "254℃", + "boilingPoint": "180~370℃", + "density": "0.82~0.86", + "solubility": "불용", + "vaporPressure": "<10 mmHg (25℃)", + "vaporDensity": "6~7", + "explosionRange": "0.6~7.5%", "nfpa": { "health": 0, - "fire": 0, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "인화성액체, 흡입 유해성", + "ergNumber": "128", "idlh": "", "aegl2": "", "erpg2": "", "responseDistanceFire": "", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "해상부유, 오일 회수 가능", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "인화성, 흡입 유해성, 피부 자극, 발암 의심", + "firstAid": "흡입: 신선한 공기. 피부: 오염의류 제거, 물/비누 세척. 안구: 물로 세척. 경구: 구토유발 금지, 의료조치.", + "fireFighting": "내알코올성 포말/분무주수/CO₂/건조분말.", + "spillResponse": "점화원 제거. 오일펜스/붐으로 확산 방지. 흡착재로 회수.", + "exposure": "TWA 100 mg/㎥", + "regulation": "위험물안전관리법(제4류 제2석유류)" }, "ibcHazard": "", "ibcShipType": "", @@ -43085,163 +28421,27 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { - "code": "GSLN", - "name": "Gasoline", - "company": "", - "source": "화물적부도" + "code": "GASOIL", + "name": "Gas oil", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 628, - "abbreviation": "1TCN", - "nameKr": "휘발유", - "nameEn": "Genklene", - "synonymsEn": "gasoline / GASOLINE / PIANO Gasoline / Cleaning solven / RFA Gasoline@Blank / TIANFU-CHEM gasoline / RF-A Gasoline(Technical) / PIANO Gasoline (with MtBE) / GASOLINE(FROM50-100OCTANE) / PIANO Gasoline (with Ethanol) / Gasoline - Premium@0.5 mg/mL in MeOH", - "synonymsKr": "휘발유 / 가솔린 / 휘발유 / 가솔린, 천연 / 경질 가솔린", - "unNumber": "", - "casNumber": "8006-61-9", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "1TCN", - "name": "Genklene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 629, - "abbreviation": "GCSSRP", - "nameKr": "글루코스 시럽", - "nameEn": "Glucose syrup", - "synonymsEn": "CORN SYRUP / MAIZESYRUP / CORN SYRUP / GLUCOSE SYRUP / Corn sugar syrup / Glucose Syrup, FCC / CORN SYRUP (GLUCOSE) / Corn Syrup DE 42 (2 g) / Syrups,hydrolyzedstarch / FruitglucosesyrupmodelF42 / Corn Syrup:Glucose liquid", - "synonymsKr": "옥수수시럽 / 옥수수시럽", - "unNumber": "", - "casNumber": "8029-43-4", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "GCSSRP", - "name": "Glucose syrup", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 630, + "id": 350, "abbreviation": "GTA", "nameKr": "글루타르알데하드", "nameEn": "Glutaraldehyde", - "synonymsEn": "Glutaraldehyde / Gluteraldehyde / glutaral / GLUTARIC DIALDEHYDE / 1,5-PENTANEDIAL / Pentanedial / GDA / GLUTARDIALDEHYDE / Aqucar / PENTANDIAL / GLUTARADEHYDE", "synonymsKr": "글루탈알데히드 / 글루타르알데하이드 / 글루타르알데히드 / 글루탈알데히드 / 1,5-펜탄디온 / 1,5-펜탄디알 / 글루타르디알데히드 / 글루타랄 / 포텐티 / 글루타랄 / 글루탈알 / 1,3-디포르밀프로판 / 글루타디알데하이드 / 글루타릭 디알데하이드 / 글루타알데하이드 / 글루타알데히드 / 1,5-펜테네디알", + "synonymsEn": "Glutaraldehyde / Gluteraldehyde / glutaral / GLUTARIC DIALDEHYDE / 1,5-PENTANEDIAL / Pentanedial / GDA / GLUTARDIALDEHYDE / Aqucar / PENTANDIAL / GLUTARADEHYDE", "unNumber": "", "casNumber": "111-30-8", "transportMethod": "", @@ -43297,19 +28497,19 @@ { "code": "GTA", "name": "Glutaraldehyde", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 631, + "id": 351, "abbreviation": "GOX", "nameKr": "글리옥살(40%)", "nameEn": "Glyoxal solution (40%)", - "synonymsEn": "Glyoxal / Oxalaldehyde / Oxaldehyde / GLYOXA / ETHANEDIAL / GLYOXAL SOLUTION / (CHO)2 / Ethandial / DIFORMYL / Ethanedione / Glyoxal aqueous solution", "synonymsKr": "글리옥살 / 글리옥살 / 디포밀,질산디알데히드 / 글리옥살알데히드 / 옥살알데히드 / 1,2-에탄디온 / 에탄디온 / 비포르말 / 디포르밀 / 글라이옥살", + "synonymsEn": "Glyoxal / Oxalaldehyde / Oxaldehyde / GLYOXA / ETHANEDIAL / GLYOXAL SOLUTION / (CHO)2 / Ethandial / DIFORMYL / Ethanedione / Glyoxal aqueous solution", "unNumber": "", "casNumber": "107-22-2", "transportMethod": "", @@ -43365,19 +28565,19 @@ { "code": "GOX", "name": "Glyoxal solution (40%)", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 632, - "abbreviation": "GRJUC", - "nameKr": "농축포도주스", - "nameEn": "Grape juice concentrate", - "synonymsEn": "", + "id": 352, + "abbreviation": "SSL40", + "nameKr": "파라핀계 용매(제품명) / 페인트 용도", + "nameEn": "Sarasol 40", "synonymsKr": "", + "synonymsEn": "", "unNumber": "", "casNumber": "-", "transportMethod": "", @@ -43433,19 +28633,49 @@ { "code": "GRJUC", "name": "Grape juice concentrate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "INK", + "name": "INK solvent", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "JETADD", + "name": "Jet fuel additive", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "JUICE", + "name": "Juice concentrate (i.e. apple, grape)", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SSL40", + "name": "Sarasol 40", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "SSL85", + "name": "Sarasol 85", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 633, + "id": 353, "abbreviation": "GRSO", "nameKr": "포도씨오일", "nameEn": "Grapeseed oil", - "synonymsEn": "Grape seed oil / Oils,grape / Traubenkernoel / Grape seed oil / Grape seed oil / Raw Grapeseed Oil / Grape stem extract / 98% Raw Grapeseed Oil / VITIS VINIFERA (GRAPE) SEED OIL / Wholesale price cold pressed Grape seed oil _8024-22-4", "synonymsKr": "포도씨오일 / 포도씨오일", + "synonymsEn": "Grape seed oil / Oils,grape / Traubenkernoel / Grape seed oil / Grape seed oil / Raw Grapeseed Oil / Grape stem extract / 98% Raw Grapeseed Oil / VITIS VINIFERA (GRAPE) SEED OIL / Wholesale price cold pressed Grape seed oil _8024-22-4", "unNumber": "", "casNumber": "8024-22-4", "transportMethod": "", @@ -43487,12 +28717,12 @@ "exposure": "", "regulation": "" }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", + "ibcHazard": "S/P", + "ibcShipType": "2(k)", + "ibcTankType": "2G", + "ibcDetection": "O", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -43501,19 +28731,19 @@ { "code": "GRSO", "name": "Grapeseed oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 634, - "abbreviation": "GNO", - "nameKr": "땅콩 기름", - "nameEn": "Ground nut oil", + "id": 354, + "abbreviation": "RGNO", + "nameKr": "정제된 땅콩 오일", + "nameEn": "Refined Groundnut oil", + "synonymsKr": "식물성 오일", "synonymsEn": "PEANUT OIL / PEANUT OIL / ARACHIS OIL / katchungoil / earthnutoil / ARACHIDICOIL / OIL OF PEANUT / GROUND NUT OIL / REFINEDPEANUTOIL / Peanut Oil (AS) / Peanut Oil (1 g)", - "synonymsKr": "땅콩 기름 / 땅콩기름 / 땅콩기름(PEANUTOIL) / 땅콩오일 / 땅콩 기름", "unNumber": "", "casNumber": "8002-03-7", "transportMethod": "", @@ -43569,19 +28799,25 @@ { "code": "GNO", "name": "Ground nut oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "RGNO", + "name": "Refined Groundnut oil", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 635, + "id": 355, "abbreviation": "GTPT", "nameKr": "고무 테레빈유", "nameEn": "Gum turpentine", + "synonymsKr": "고무 테레빈유 / 고무테레빈유 / 고무테레빈유(GUMSPIRITSOFTURPENTINE) / 과산화물가가10mmol / L을초과하는터펜틴검(소나무(Pinus)속) / 터펜틴검", "synonymsEn": "Turpentine / Galipot / Pine gum / Petropine / Turpentine / Pine resin / TURPENTINEGUM / Fema no. 3088 / Einecs 232-688-5 / Turpentine (Gum based) / TAINFUCHEM: Turpentine", - "synonymsKr": "고무 테레빈유 / 고무테레빈유 / 고무테레빈유(GUMSPIRITSOFTURPENTINE) / 과산화물가가10mmol/L을초과하는터펜틴검(소나무(Pinus)속) / 터펜틴검", "unNumber": "", "casNumber": "9005-90-7", "transportMethod": "", @@ -43637,19 +28873,19 @@ { "code": "GTPT", "name": "Gum turpentine", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 636, + "id": 356, "abbreviation": "HZLNUT", "nameKr": "헤이즐넛 오일", "nameEn": "Hazelnut oil", - "synonymsEn": "Hazel, Corylus avellana, ext. / Hazel extract / Hazelnutextract / HAZELNUT BUTTER / Unii-iw0om96F6o / Einecs 281-667-7 / Extract of hazel / European hazel extract / CORYLUSAVELLANASEEDEXTRACT / CORYLUSAVELLANALEAFEXTRACT / european hazelnut absolute", "synonymsKr": "유럽개암씨추출물 / 유럽개암씨추출물 / 유럽개암잎추출물 / 개암씨추출물 / 개암잎추출물 / 유럽개암껍질가루 / 개암잎수", + "synonymsEn": "Hazel, Corylus avellana, ext. / Hazel extract / Hazelnutextract / HAZELNUT BUTTER / Unii-iw0om96F6o / Einecs 281-667-7 / Extract of hazel / European hazel extract / CORYLUSAVELLANASEEDEXTRACT / CORYLUSAVELLANALEAFEXTRACT / european hazelnut absolute", "unNumber": "", "casNumber": "84012-21-5", "transportMethod": "", @@ -43705,19 +28941,19 @@ { "code": "HZLNUT", "name": "Hazelnut oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 637, + "id": 357, "abbreviation": "HBR", "nameKr": "브롬화수소산", "nameEn": "HBR", - "synonymsEn": "Hydrogen bromide / HBR / HBR/ACOH / bromane / Hydrobromic / hydrobroMic acid in acetic acid / Bromwasserstoff / hydrobromic acid 48% / Hydrogen bromide solution / Hydrogen bromide in acetic acid / Hydrog", "synonymsKr": "브롬화수소 / 브롬화수소산 / 브로민화수소(브롬화수소) / 브롬화수소 / 브롬화수소산수용액 / 브롬산 / 하이드로브롬산 / 무수하이드로브롬산 / 하이드로브로믹애씨드 / 브롬화 수소", + "synonymsEn": "Hydrogen bromide / HBR / HBR / ACOH / bromane / Hydrobromic / hydrobroMic acid in acetic acid / Bromwasserstoff / hydrobromic acid 48% / Hydrogen bromide solution / Hydrogen bromide in acetic acid / Hydrog", "unNumber": "", "casNumber": "10035-10-6", "transportMethod": "", @@ -43773,155 +29009,19 @@ { "code": "HBR", "name": "HBR", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 638, - "abbreviation": "HCAO", - "nameKr": "HEA 카놀라 오일", - "nameEn": "HEA Canola oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "1", - "casNumber": "120962-03-0", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "HCAO", - "name": "HEA Canola oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 639, - "abbreviation": "HEARSO", - "nameKr": "HEA 채종유", - "nameEn": "HEA Rapeseed oil", - "synonymsEn": "RAPESEED OIL / Rapeoil / Rapsoel / AKOREX L / rapedoil / COLZAOIL / RAPESEED OIL / rapessed oil / USRAPESEEDOIL / LIPEX CANOLA-U / NEWRAPESEEDOIL", - "synonymsKr": "RAPE종자 기름 / RAPE종자기름 / 유채기름 / 유채기름 / 유채씨오일 / 카놀라오일", - "unNumber": "", - "casNumber": "8002-13-9", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "HEARSO", - "name": "HEA Rapeseed oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 640, + "id": 358, "abbreviation": "HEATOIL", "nameKr": "보일러 등유", "nameEn": "Heating oil", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "", "casNumber": "68410-29-9", "transportMethod": "", @@ -43977,57 +29077,57 @@ { "code": "HEATOIL", "name": "Heating oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 641, + "id": 359, "abbreviation": "BAB", "nameKr": "도데실벤젠", "nameEn": "Heavy detergent feedstock", - "synonymsEn": "DODECYLBENZENE / ALKYLBENZENE / LAURYLBENZENE / PHENYLDODECANE / N-LAURYLBENZENE / N-DODECYLBENZENE / 1-PHENYLDODECANE / Tetrapropylenbenzol / tetrapropylene-benzen / tetrapropylene-Benzene / Benzene, tetrapropylene-", - "synonymsKr": "도데실벤젠 / 테트라프로필렌벤젠", + "synonymsKr": "벤젠 도데실- / 라우릴벤젠 / N-도데실벤젠", + "synonymsEn": "DODECYLBENZENE / ALKYLBENZENE / LAURYLBENZENE / PHENYLDODECANE / N-LAURYLBENZENE / N-DODECYLBENZENE / 1-PHENYLDODECANE / Tetrapropylenbenzol / tetrapropylene-benzen / tetrapropylene-Benzene / Benzene, tetrapropylene- / ALKYLATE P 1 / BENZENE, DODECYL- / DETERGENT ALKYLATE NO 2 / DODECANE, 1-PHENYL- / N-DODECYLBENZENE / DODECYLBENZENE (LINEAR) / LAURYLBENZENE / MARLICAN / NALKYLENE 500 / 1-PHENYLDODECANE / PHENYLDODECAN (GERMAN) / UCANE ALKYLATE 12 / dodecylbenzene / nonionic surfactant / detergent alkylate", "unNumber": "3077", - "casNumber": "25265-78-5", - "transportMethod": "", - "sebc": "", - "usage": "합성 세제, 유지화학물질, 윤활유, 방수제 등 플라스틱 가소제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "casNumber": "123-01-3", + "transportMethod": "산적액체(Y류)", + "sebc": "F (Floater)", + "usage": "합성 세제, 유지화학물질, 윤활유, 방수제 등\n플라스틱 가소제 등 사용", + "state": "액체", + "color": "무색", + "odor": "약한", + "flashPoint": "i3(rc", + "autoIgnition": "자료없음", + "boilingPoint": "266-303℃", + "density": "0.8551", + "solubility": "불용", + "vaporPressure": "5.11mmHg(25‘t:)", + "vaporDensity": "8.47", + "explosionRange": "0.4~2.9%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "유해액체물질/Z", + "ergNumber": "171", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "인화점", + "responseDistanceSpillDay": "25m", + "responseDistanceSpillNight": "100m", + "marineResponse": "부유증발 (FE)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "수생환경 유해성, 피부/흡입 자극", + "firstAid": "흡입노출 • 즉시 의료조치 피부접촉 • 뜨거운 물질의 경우 찬물로 식힐 것, 긴급 의료조치. 20분 이상 흐르는 물에 씻을 것 안구접촉 • 긴급 의료조치, 즉시 20분 이상 흐르는 물에 씻을 것 경구섭취 • 구강대구강 인공호흡 하지 말 것, 긴급 의료조치", + "fireFighting": "포말/분무주수/CO₂.", + "spillResponse": "오일펜스/흡착재 회수.", "exposure": "", "regulation": "" }, @@ -44037,231 +29137,33 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "BAB", "name": "Heavy detergent feedstock", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 642, - "abbreviation": "HDF", - "nameKr": "도데실벤젠", - "nameEn": "Heavy detergent feedstock", - "synonymsEn": "DODECYLBENZENE / ALKYLBENZENE / LAURYLBENZENE / PHENYLDODECANE / N-LAURYLBENZENE / N-DODECYLBENZENE / 1-PHENYLDODECANE / Tetrapropylenbenzol / tetrapropylene-benzen / tetrapropylene-Benzene / Benzene, tetrapropylene-", - "synonymsKr": "도데실벤젠 / 테트라프로필렌벤젠", - "unNumber": "3077", - "casNumber": "25265-78-5", - "transportMethod": "", - "sebc": "", - "usage": "합성 세제, 유지화학물질, 윤활유, 방수제 등 플라스틱 가소제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "HDF", "name": "Heavy detergent feedstock", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 643, - "abbreviation": "HEND", - "nameKr": "", - "nameEn": "Heavy end", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "HEND", - "name": "Heavy end", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 644, - "abbreviation": "HEPTANE", - "nameKr": "헵테인", - "nameEn": "Heptane", - "synonymsEn": "Heptane / N-HEPTANE / heptanes / Heptan / 1-HEPTANE / NORMAL HEPTANE / Aliphatic hydrocarbon / Gettysolve-C / Dipropylmethane / heptane(n-heptane) / Eptani", - "synonymsKr": "헵테인 / 노르말헵탄 / 노르말헵탄(NORMALHEPTANE) / 헵탄 / 헵테인 / 헵테인(헵탄) / n-헵탄", - "unNumber": "1206", - "casNumber": "142-82-5", - "transportMethod": "", - "sebc": "", - "usage": "고무 생산 및 가고처리 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "HEPTANE", - "name": "Heptane", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 645, + "id": 360, "abbreviation": "HEPACID", "nameKr": "헵틸릭 산", "nameEn": "Heptanoic acid", - "synonymsEn": "Heptanoic acid / N-HEPTANOIC ACID / C7 / ENANTHIC ACID / heptanoic / HEPTYLIC ACID / OENANTHIC ACID / Enanthoic Acid / FEMA 3348 / hexacidc-7 / Amylacetat", "synonymsKr": "헵틸릭 산 / 헵탄산 / 헵틸릭산 / 헵틸릭산", + "synonymsEn": "Heptanoic acid / N-HEPTANOIC ACID / C7 / ENANTHIC ACID / heptanoic / HEPTYLIC ACID / OENANTHIC ACID / Enanthoic Acid / FEMA 3348 / hexacidc-7 / Amylacetat", "unNumber": "", "casNumber": "111-14-8", "transportMethod": "", @@ -44317,155 +29219,19 @@ { "code": "HEPACID", "name": "Heptanoic acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 646, - "abbreviation": "HPTNL", - "nameKr": "n-햅탄올", - "nameEn": "Heptanol", - "synonymsEn": "1-Heptanol / HEPTANOL / N-HEPTANOL / HEPTAN-1-OL / HEPTYL ALCOHOL / Enanthol / ALCOHOL C7 / 1-HeptanoI / n-Heptan-1-ol / Gentanol / n-C7H15OH", - "synonymsKr": "n-헵탄올 / 1-헵탄올 / n-헵탄올 / n-헵틸알코올", - "unNumber": "", - "casNumber": "111-70-6", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "HPTNL", - "name": "Heptanol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 647, - "abbreviation": "HERO", - "nameKr": "", - "nameEn": "Herring oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "HERO", - "name": "Herring oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 648, + "id": 361, "abbreviation": "HMDADI", "nameKr": "헥사메틸렌디아민아디페이트", "nameEn": "Hexamethylenediamine adipate solution", - "synonymsEn": "hexamethylenediamine adipate / Hexane-1,6-diamine xadipate / hexamethylenediamine adipate / Hexanedioic acid/1,6-hexanediamine / 1,6-Hexanediamine/adipic acid,(1:x)", "synonymsKr": "헥사메틸렌디아민아디페이트 / 헥사메틸렌디아민아디페이트", + "synonymsEn": "hexamethylenediamine adipate / Hexane-1,6-diamine xadipate / hexamethylenediamine adipate / Hexanedioic acid / 1,6-hexanediamine / 1,6-Hexanediamine / adipic acid,(1:x)", "unNumber": "", "casNumber": "15511-81-6", "transportMethod": "", @@ -44521,19 +29287,19 @@ { "code": "HMDADI", "name": "Hexamethylenediamine adipate solution", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 649, + "id": 362, "abbreviation": "HMI", "nameKr": "헥사메틸렌이민", "nameEn": "Hexamethyleneimine", - "synonymsEn": "Hexamethyleneimine / Azepan / HMI / AZACYCLOHEPTANE / g0 / 0402 / PERHYDROAZEPINE / HEXAHYDROAZEPINE / HEXAMETHYLENIMINE / 1-Azacycloheptane / G 0", "synonymsKr": "헥사메틸렌이민 / 헥사메틸렌이민", + "synonymsEn": "Hexamethyleneimine / Azepan / HMI / AZACYCLOHEPTANE / g0 / 0402 / PERHYDROAZEPINE / HEXAHYDROAZEPINE / HEXAMETHYLENIMINE / 1-Azacycloheptane / G 0", "unNumber": "", "casNumber": "111-49-9", "transportMethod": "", @@ -44576,9 +29342,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "R", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12.3, 15.12.4, 15.19", "emsCode": "", @@ -44589,57 +29355,57 @@ { "code": "HMI", "name": "Hexamethyleneimine", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 650, + "id": 363, "abbreviation": "HXN1", "nameKr": "1-헥센", "nameEn": "Hexane-1", - "synonymsEn": "1-Hexene / Hexene / Hexen / Hexene-1 / HEX-1-ENE / Hexylene / Hexedrone / N-HEXENE / 1-Hexen / 1-C6H12 / 1-HEXENE", - "synonymsKr": "1-헥센 / 1-헥센 / 헥실렌", + "synonymsKr": "1-헥센 / 1-헥센 / 헥실렌 / 뷰틸 에틸렌 / 헥센 / 1-N-헥센 / 헥센-1 / 헥실렌 / 노말 헥센", + "synonymsEn": "1-Hexene / Hexene / Hexen / Hexene-1 / HEX-1-ENE / Hexylene / Hexedrone / N-HEXENE / 1-Hexen / 1-C6H12 / 1-HEXENE / BUTYL ETHYLENE / HEXENE / 1-N-HEXENE / HEXENE-1 / HEXYLENE / Normal hexene", "unNumber": "2370", "casNumber": "592-41-6", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", "usage": "고밀도 플리에틸렌 등 제조", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "액체", + "color": "무색", + "odor": "석유냄새", + "flashPoint": "-26.rc", + "autoIgnition": "253℃", + "boilingPoint": "64℃", + "density": "0.67", + "solubility": "0.05g/L(25“C)", + "vaporPressure": "(물 23.8inniHg)", + "vaporDensity": "3", + "explosionRange": "1.2~6.9%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "128", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발 (E)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "인화성, 증발(E), 해상수거 불가", + "firstAid": "흡입노출 피부접촉 안구접촉 경구섭취 • 즉시 의료조치, 산소공급, 인공호흡, 토하게 하지 말 것 • 긴급 의료조치, 화상의 경우 찬물로 씻을 것, 비누와 물로 씻을 것 • 몇 분간 물로 조심해서 씻을 것, 콘택트렌즈 제거 • 즉시 의료조치, 토하게 하지 말 것 초동 대응방법 보호복 호홉구 보안경 보호장갑 기타장비 대응장비 3,4형식 (C급) 방독마스크(반면, 전면) 1형식 (1B) 공기호흡기 으 O 열화상카메라 ►유출물질은 고안화성 물질로 증기의 이동에 의한 폭발 가능성이 높으며, 삼켜서 기도로 유입되면 치명적일 수 있고 호흡기 자극과 두통, 현기증을 일으킬 수 있으므로 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 해상유춬시 주변선박 통제 (홉연’ 불꽃- 스파크 등 모든 점화원 제거) ►출동 경비정(방제정〉복합가스용 방독마스크를 포함한 최소 3,4형식 보호의 착용(사고선 근접 시 1B이상 착용), 증기흡입과 피부와 눈에 접촉을 피할 것 ►유출물질은 증발하므로 방제조치 불필요 느 화학방제함 유출물질 농도 탐지. 안전확보 시까지 지속적인 모니터링 I 화재 시대피거리(m) 800 — + ►유출물잘은 연소시 유독가스", + "fireFighting": "내알코올성 포말/분무주수/CO₂. 직사주수 금지.", + "spillResponse": "점화원 제거. 주변 해상 통제. 분무주수로 증기운 이동 억제.", "exposure": "", "regulation": "" }, @@ -44649,163 +29415,101 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { "code": "HXN1", "name": "Hexane-1", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "HEXENE", + "name": "Hexene", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 651, + "id": 364, "abbreviation": "HEXACID", "nameKr": "헥산산", "nameEn": "Hexanoic acid", - "synonymsEn": "Hexanoic acid / CAPROIC ACID / C6 / N-CAPROIC ACID / N-HEXANOIC ACID / 1-Hexanoic acid / N-CAPROATE / Natural Caproic Acid / CAPROIC ACID, NATURAL / Hexanoic Acid 〔n-Caproic Acid〕 / NA-1706", "synonymsKr": "핵산산 / n-카프론산 / 카프로인산 / 핵산산 / 카프로산 / 카프론산 / 헥산오익산 / 부틸아세틱산 / N-헥산오익산 / 펜티포름산 / 부틸아세트산 / 카프로익애씨드", + "synonymsEn": "Hexanoic acid / CAPROIC ACID / C6 / N-CAPROIC ACID / N-HEXANOIC ACID / 1-Hexanoic acid / N-CAPROATE / Natural Caproic Acid / CAPROIC ACID, NATURAL / Hexanoic Acid 〔n-Caproic Acid〕 / NA-1706", "unNumber": "", "casNumber": "142-62-1", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "액체", + "color": "무색", + "odor": "과일향", + "flashPoint": "22℃", + "autoIgnition": "425℃", + "boilingPoint": "126℃", + "density": "0.88", + "solubility": "6.8 g/L (25℃)", + "vaporPressure": "11.5 mmHg (25℃)", + "vaporDensity": "4", + "explosionRange": "1.7~7.6%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 3, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "고인화성, 부유증발, 해상수거 불가", + "ergNumber": "129", + "idlh": "1,700 ppm", "aegl2": "", "erpg2": "", "responseDistanceFire": "", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "해상부유, 증발", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "고인화성, 호흡기/피부/안구 자극", + "firstAid": "흡입: 신선한 공기. 피부/안구: 물로 세척. 경구: 구토유발 금지, 의료조치.", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제.", + "exposure": "TWA 150 ppm, STEL 200 ppm, IDLH 1,700 ppm", "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "T", + "ibcDetection": "C", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.12, 15.17, 15.19", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "HEXACID", "name": "Hexanoic acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 652, - "abbreviation": "HEXENE", - "nameKr": "헥실렌", - "nameEn": "Hexene", - "synonymsEn": "1-Hexene / Hexene / Hexen / Hexene-1 / HEX-1-ENE / Hexylene / Hexedrone / N-HEXENE / 1-Hexen / 1-C6H12 / 1-HEXENE", - "synonymsKr": "1-헥센 / 1-헥센 / 헥실렌", - "unNumber": "2370", - "casNumber": "592-41-6", - "transportMethod": "", - "sebc": "", - "usage": "고밀도 플리에틸렌 등 제조", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "HEXENE", - "name": "Hexene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 653, + "id": 365, "abbreviation": "HXG", "nameKr": "헥실렌 글리콜", "nameEn": "Hexylene glycol", - "synonymsEn": "2-Methyl-2,4-pentanediol / HEXYLENE GLYCOL / MPD / 2-METHYLPENTANE-2,4-DIOL / 3-METHYL-2,4-PENTANEDIOL / 4-MPD / Hexalene glycol / Isol / HEXASOL / Diolane / Pinadon", "synonymsKr": "헥실렌글리콜 / 헥실렌글리콜 / 헥실렌글라이콜 / 2-메틸-2,4-펜탄디올 / 2,4-디하이드록시-2-메틸펜탄 / 1,2-헥산디올 / 2-메틸-2,4-펜탄다이올 / 2-메틸-2,4-펜타네다이올", + "synonymsEn": "2-Methyl-2,4-pentanediol / HEXYLENE GLYCOL / MPD / 2-METHYLPENTANE-2,4-DIOL / 3-METHYL-2,4-PENTANEDIOL / 4-MPD / Hexalene glycol / Isol / HEXASOL / Diolane / Pinadon", "unNumber": "", "casNumber": "107-41-5", "transportMethod": "", @@ -44848,9 +29552,9 @@ "regulation": "" }, "ibcHazard": "S", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "T", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.17, 15.19", "emsCode": "", @@ -44861,223 +29565,19 @@ { "code": "HXG", "name": "Hexylene glycol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 654, - "abbreviation": "HOCAN", - "nameKr": "고올레산 캔OLA유", - "nameEn": "High oleic canola oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "1", - "casNumber": "120962-03-0", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "HOCAN", - "name": "High oleic canola oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 655, - "abbreviation": "HOSAFF", - "nameKr": "잇꽃씨오일", - "nameEn": "High oleic safflowerseed oil", - "synonymsEn": "Safflower oil / Safloroel / safflower / thistleoil / SAFFLOWER OIL / SAFFLOWEROIL,USP / HYBRIDSAFFLOWEROIL / Oil Of Safflower / SAFFLOWER SEED OIL / Hi-oleicsaffloweroil / organic safflower oil", - "synonymsKr": "잇꽃씨오일 / 잇꽃씨오일", - "unNumber": "", - "casNumber": "8001-23-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "HOSAFF", - "name": "High oleic safflowerseed oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 656, - "abbreviation": "HTC9300", - "nameKr": "", - "nameEn": "HiTEC 9300", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "HTC9300", - "name": "HiTEC 9300", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 657, + "id": 366, "abbreviation": "HONEY", "nameKr": "꿀", "nameEn": "Honey", - "synonymsEn": "Honey / mel / HONEY / SOYHONEY / MANUKAHONEY / FORESTHONEY / CLOVERHONEY / Honey [JAN] / TUPELOHONEY / ACACIAHONEY / CANADIANHONEY", "synonymsKr": "꿀 / 꿀 / 벌꿀", + "synonymsEn": "Honey / mel / HONEY / SOYHONEY / MANUKAHONEY / FORESTHONEY / CLOVERHONEY / Honey [JAN] / TUPELOHONEY / ACACIAHONEY / CANADIANHONEY", "unNumber": "", "casNumber": "8028-66-8", "transportMethod": "", @@ -45133,19 +29633,19 @@ { "code": "HONEY", "name": "Honey", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 658, + "id": 367, "abbreviation": "HVI160B", "nameKr": "파라핀계 베이스 오일", "nameEn": "HVI 160B", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "", "casNumber": "", "transportMethod": "", @@ -45201,331 +29701,77 @@ { "code": "HVI160B", "name": "HVI 160B", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 659, - "abbreviation": "HVI60", - "nameKr": "파라핀계 베이스 오일", - "nameEn": "HVI 60", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "HVI60", "name": "HVI 60", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 660, - "abbreviation": "HVI65", - "nameKr": "파라핀계 베이스 오일", - "nameEn": "HVI 65", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "HVI65", "name": "HVI 65", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 661, - "abbreviation": "HVI650", - "nameKr": "파라핀계 베이스 오일", - "nameEn": "HVI 650", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "HVI650", "name": "HVI 650", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 662, - "abbreviation": "HPHNL", - "nameKr": "이온 페놀", - "nameEn": "Hydrated phenol", - "synonymsEn": "Phenol / PhOH / CARBOLIC ACID / Fenol / PHENOL CRYSTALS / Phenol, water saturated, stabilized / Benzophenol / HYDROXYBENZENE / LIQUEFIEDPHENOL,LIQUEFIED,USP / PHENIC ACID / LIQUIFIED PHENOL", - "synonymsKr": "페놀 / 페놀 / 모노페놀 / 모노히드록시벤젠 / 벤젠올 / 페닌산 / 페닐수산화물 / 페닐알코올 / 히드록시벤젠 / 모노하이드록시벤젠 / 석탄산 / 옥시벤젠 / 카르볼산 / 페닐산 / 펜산 / 하이드록시벤젠", - "unNumber": "", - "casNumber": "108-95-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "HPHNL", - "name": "Hydrated phenol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 663, + "id": 368, "abbreviation": "HF", "nameKr": "불산 용액", "nameEn": "Hydrofluoric acid solution", - "synonymsEn": "Hydrogen fluoride / HF / HYDROFLUORIC ACID / Anhydrous hydrofluoric acid / hydrofluoric / Urea Hydrofluoride / HydrofL / Fluoric acid / Hydrofluoride / Hydrofluoric acid(HF) / Hydrofluoric Acid, TraceGrade", "synonymsKr": "불산 / 플루오르화수소산 / OHS여301 / 히드로플루오릭산(HYDROFLUORICACID) / 불산 / 불화수소 / 불화수소산 / 수소플루오르화 / 하이드로플루오릭산 / 무수불화수소산 / 하이드로플루오릭애씨드 / 하이드로플루오릭애씨드,그노르말염,그착화합물및하이드로플루오라이드 / 플루오르화 수소 / 플루오르화수소", + "synonymsEn": "Hydrogen fluoride / HF / HYDROFLUORIC ACID / Anhydrous hydrofluoric acid / hydrofluoric / Urea Hydrofluoride / HydrofL / Fluoric acid / Hydrofluoride / Hydrofluoric acid(HF) / Hydrofluoric Acid, TraceGrade", "unNumber": "", "casNumber": "7664-39-3", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(8급), 산적액체(X류)", + "sebc": "D (Dissolver)", "usage": "", - "state": "", - "color": "", - "odor": "", + "state": "액체", + "color": "무색", + "odor": "자극성", "flashPoint": "", "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", + "boilingPoint": "112℃", + "density": "1.18 (48%)", + "solubility": "완전 혼화", + "vaporPressure": "121 mmHg (25℃)", + "vaporDensity": "1.27", "explosionRange": "", "nfpa": { - "health": 0, + "health": 4, "fire": 0, - "reactivity": 0, + "reactivity": 1, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "맹독성 부식성 산, 피부/안구 심각한 손상", + "ergNumber": "157", + "idlh": "30 ppm", + "aegl2": "24 ppm", "erpg2": "", "responseDistanceFire": "", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "해수에 용해, 회수 곤란 (생태독성)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "맹독성, 피부/안구/호흡기 심각한 손상, 뼈·심장 독성", + "firstAid": "흡입: 신선한 공기, 산소공급. 피부: 즉시 다량 물 세척, 칼슘글루콘산 젤 도포. 안구: 30분 이상 물 세척. 경구: 즉시 의료조치.", + "fireFighting": "다량 물로 희석. CO₂/건조분말. 금속과 접촉 시 수소가스 위험.", + "spillResponse": "다량 물로 희석. 점화원 제거. 금속과 격리.", + "exposure": "TWA 0.5 ppm, STEL 2 ppm, AEGL-2 24 ppm, IDLH 30 ppm", + "regulation": "유해화학물질관리법, 사고대비물질" }, "ibcHazard": "", "ibcShipType": "", @@ -45533,67 +29779,67 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-B", + "emsFire": "F-A", + "emsSpill": "S-B", "emsFirstAid": "", "cargoCodes": [ { "code": "HF", "name": "Hydrofluoric acid solution", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 664, + "id": 369, "abbreviation": "HPEROXD", "nameKr": "과산화수소", "nameEn": "Hydrogen peroxide", - "synonymsEn": "·Hydrogen peroxide solution 60-90 % ·Albone ·Albone DS ·Hioxyl ·Hydrogen dioxide ·Hydrogen dioxide solution ·Hydrogen peroxide solution ·Hydroperoxide ·Inhibine ·Perhydrol ·Perossido di idrogeno(ITALIAN) ·Peroxaan ·Peroxan ·Peroxide ·Peroxyde d'hydrogene(FRENCH) ·Superoxol ·Wasserstoffperoxid(GERMAN) ·Waterstofperoxyde(DUTCH) ·Dihydrogen dioxide ·Hydrogen peroxide, solution(over 52 % peroxide) ·Hydrogen peroxide, stabilised(over 60 % peroxide) ·Oxydol ·Perone ·T-stuff", - "synonymsKr": "·과산화수소 용액 60-90 % ·알본 ·알본 DS ·하이옥실 ·이산화수소 ·이산화수소 용액 ·과산화수소 용액 ·하이드로퍼옥사이드 ·인히빈 ·농축 과산화수소 ·퍼로사안 ·퍼옥산 ·과산화물 ·수퍼옥살 ·이산화 이수소 ·과산화수소 용액 (약 52 %의 과산화수소) ·안정된 과산화수소 (약 60 %의 과산화수소) ·옥시돌 ·페론 ·T-스터프", - "unNumber": "1", + "synonymsKr": "과산화수소 용액 60-90 % / 알본 / 알본 DS / 하이옥실 / 이산화수소 / 이산화수소 용액 / 과산화수소 용액 / 하이드로퍼옥사이드 / 인히빈 / 농축 과산화수소 / 퍼로사안 / 퍼옥산 / 과산화물 / 수퍼옥살 / 이산화 이수소 / 과산화수소 용액 (약 52 %의 과산화수소) / 안정된 과산화수소 (약 60 %의 과산화수소) / 옥시돌 / 페론 / T-스터프", + "synonymsEn": "Hydrogen peroxide solution 60-90 % / Albone / Albone DS / Hioxyl / Hydrogen dioxide / Hydrogen dioxide solution / Hydrogen peroxide solution / Hydroperoxide / Inhibine / Perhydrol / Perossido di idrogeno(ITALIAN) / Peroxaan / Peroxan / Peroxide / Peroxyde d'hydrogene(FRENCH) / Superoxol / Wasserstoffperoxid(GERMAN) / Waterstofperoxyde(DUTCH) / Dihydrogen dioxide / Hydrogen peroxide, solution(over 52 % peroxide) / Hydrogen peroxide, stabilised(over 60 % peroxide) / Oxydol / Perone / T-stuff", + "unNumber": "2015", "casNumber": "7722-84-1", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "transportMethod": "산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "로켓연료의 성분, 폐수처리의 염소 대체물. 풀라스틱 산업. 표백 살균 = 산화성액체 (구분 1) 급성독성-경구(구분4) 피부부식성/자극성(구분1) 심한 눈 손상성/자극성(구분1) 발암성 (구분2) 특정표적장기독성(1회노출) -구분3(호흡기계 자극) 만성 수생환경 유해성(구분3)", + "state": "액체 (-11.11 ℃ 고체)", + "color": "무색투명", + "odor": "무취,", + "flashPoint": "자료없음", "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", + "boilingPoint": "150℃", + "density": "0.99", + "solubility": "완전 혼화", + "vaporPressure": "(물 23.8nnnnHg)", + "vaporDensity": "0.65", "explosionRange": "", "nfpa": { - "health": 0, + "health": 3, "fire": 0, - "reactivity": 0, + "reactivity": 1, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질(Y) / 국가긴급방제계획 포함 위험•유해물질", + "ergNumber": "143", + "idlh": "3oe) 乃으끄", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", + "responseDistanceFire": "800m", "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceSpillNight": "50m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "산화성, 부식성, 폭발성 (고농도), 피부/안구 심각한 손상", + "firstAid": "흡입노출 • 신선한 곳으로 옮김, 인공호흡, 호흡곤란 시 산소투입 피부접촉 . 의복 제거, 물과 비누로 세척, 병원이송 안구접촉 • 미지근한 물로 15분 이상, 흐르는 물에 20분 이상 씻을 것 경구섭취 • 환자에게 물이나 우유틀 줄 것, 의사치료", + "fireFighting": "다량 물로 희석 및 냉각. 가연물과 분리.", + "spillResponse": "다량 물로 희석. 가연물과 분리. 통풍 확보. 흡수제 사용 금지(발열·점화 위험).", + "exposure": "TWA 1 ppm, IDLH 75 ppm", + "regulation": "유해화학물질관리법, 위험물안전관리법(제6류)" }, "ibcHazard": "", "ibcShipType": "", @@ -45601,27 +29847,27 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-H, S-Q", + "emsFire": "F-H", + "emsSpill": "S-Q", "emsFirstAid": "", "cargoCodes": [ { "code": "HPEROXD", "name": "Hydrogen peroxide", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 665, + "id": 370, "abbreviation": "HCNO", "nameKr": "수소화 코코넛 오일", "nameEn": "Hydrogenated coconut oil", - "synonymsEn": "Coconut oil, hydrogenated / Einecs 284-283-8 / Kokosnuoel, hydriert / Coconut oil, hardened / Copra oil, hydrogenated / HYDROGENATED COCONUT OIL / FULLYHYDROGENATEDCOCONUTOIL / Coconut oil, hydrogenated ISO 9001:2015 REACH / Hydrogenated vegetable oils, hydrogenated coconut oil", "synonymsKr": "수소화된 코코넛오일 / 수소화된코코넛오일 / 수소화된코코넛오일 / 하이드로제네이티드코코넛오일", + "synonymsEn": "Coconut oil, hydrogenated / Einecs 284-283-8 / Kokosnuoel, hydriert / Coconut oil, hardened / Copra oil, hydrogenated / HYDROGENATED COCONUT OIL / FULLYHYDROGENATEDCOCONUTOIL / Coconut oil, hydrogenated ISO 9001:2015 REACH / Hydrogenated vegetable oils, hydrogenated coconut oil", "unNumber": "", "casNumber": "84836-98-6", "transportMethod": "", @@ -45677,19 +29923,19 @@ { "code": "HCNO", "name": "Hydrogenated coconut oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 666, + "id": 371, "abbreviation": "HCORN", "nameKr": "수소화 옥수수 오일", "nameEn": "Hydrogenated corn oil", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "68525-87-1", "transportMethod": "", @@ -45745,291 +29991,19 @@ { "code": "HCORN", "name": "Hydrogenated corn oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 667, - "abbreviation": "HPFA", - "nameKr": "수소화 아메리카오일팜열매오일", - "nameEn": "Hydrogenated palm fatty acid distillate", - "synonymsEn": "PALM OIL / palm / oils,palm / ELAEIS GUINEENSIS (PALM) OIL / PALMFAT / PALM OIL / REDPALMOIL / PALM BUTTER / Oele, Palm- / CRUDEPALMOIL / Palmoilrefined", - "synonymsKr": "아메리카오일팜열매오일 / 아메리카오일팜열매오일 / 오일팜버터 / 오일팜오일 / 야자유(과실로 부터)", - "unNumber": "1169", - "casNumber": "8002-75-3", - "transportMethod": "", - "sebc": "", - "usage": "식용유, 화장품, 세제, 의약품 제조 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "HPFA", - "name": "Hydrogenated palm fatty acid distillate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 668, - "abbreviation": "HPKFA", - "nameKr": "수소화된 참나무 지방산", - "nameEn": "Hydrogenated palm kernel fatty acid", - "synonymsEn": "Fatty acids, C12-18 / Fatty acids, C12-18", - "synonymsKr": "지방산, / 지방산, / 지방산,(C=12-18)", - "unNumber": "", - "casNumber": "67701-01-3", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "HPKFA", - "name": "Hydrogenated palm kernel fatty acid", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 669, - "abbreviation": "HPKS", - "nameKr": "수소화 팜커널 스테아린 오일", - "nameEn": "Hydrogenated palm kernel stearin", - "synonymsEn": "PALM KERNEL OIL / W 500 / Tefacid / palmnutoil / W 500 (oil) / Palm seed oil / palm-kemel oil / PALMKERNELOILS / Oele, Palmkern- / PALM KERNEL OIL / Oils, palm kernel", - "synonymsKr": "오일팜커넬오일 / 오일팜커넬오일 / 야자핵유 / 팜커널오일", - "unNumber": "", - "casNumber": "8023-79-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "HPKS", - "name": "Hydrogenated palm kernel stearin", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 670, - "abbreviation": "HPL", - "nameKr": "수소화 팜오일", - "nameEn": "Hydrogenated palm olein", - "synonymsEn": "Oils, palm, hydrogenated / GV 60 / PW 50 / IHP 58 / Dub HPH / F 3 Oil / Nutresca / DUB-PPE 3 / Akofine P / UmFeed 131 / Nomcort PHS", - "synonymsKr": "하이드록시 오일(팜) / 하이드록시오일(팜) / 하이드록시오일(팜) / 하이드로제네이티드팜오일", - "unNumber": "", - "casNumber": "68514-74-9", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "HPL", - "name": "Hydrogenated palm olein", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 671, + "id": 372, "abbreviation": "HRSO", "nameKr": "수소화 유채유 오일", "nameEn": "Hydrogenated rapeseed oil", - "synonymsEn": "Rape oil, hydrogenated / Rapsoel, hydriert / Rape oil, hydrogenated", "synonymsKr": "하이드로제네이티드채종유 / 하이드로제네이티드채종유 / 유채기름,수소화", + "synonymsEn": "Rape oil, hydrogenated / Rapsoel, hydriert / Rape oil, hydrogenated", "unNumber": "", "casNumber": "84681-71-0", "transportMethod": "", @@ -46085,55 +30059,55 @@ { "code": "HRSO", "name": "Hydrogenated rapeseed oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 672, + "id": 373, "abbreviation": "HN40HT", "nameKr": "변압기유(제품명)", "nameEn": "Hynap N40HT", - "synonymsEn": "·8, distillates (petroleum), hydrotreated (severe) light naphthenic, hydrotreated (severe) light naphthenic distillate, mineral oil, petroleum distillates, hydrotreated, severe, light naphthenic", "synonymsKr": "히드로처리된 경 나프텐 증류액 / 수소처리된경질나프텐정제유(석유) / 히드로처리된경나프텐증류액 / 수소처리된경질나프텐정제유(석유)(DISTILLATES(PETROLEUM),HYDROTREATEDLIGHTNAPHTHENIC) / 디메칠설폭사이드(DMSO)로추출한성분을3%초과하여함유하고있는석유유래물질(Distillates(petroleum),hydrotreatedlightnaphthenic) / 석유유래물질(Distillates(petroleum),hydrotreatedlightnaphthenic) / 미네랄 오일, 석유 증류액, (심하게) 수소처리된 경질 나프텐 / 수소처리된 경질 나프텐 (석유) / 수소처리된 경질 나프텐 증류액 / 유압 석유 오일 / 증류액 (석유), 수소처리, 경질 나프텐 / 증류액 (석유), 수소처리된 경질 나프텐 / 증류액, 석유, 수소처리된 경질 나프텐", + "synonymsEn": "TRANSFORMER OIL / OILN11 / Ccris 7179 / Einecs 265-156-6 / Transformer oil # 45 / Distillates petoroleum / 3146 HYDRAULIC OIL BASE / Transformer Oil (PCB Free) / Transformer Oil(Technical) / HYDROTREATEDLIGHTNAPHTHENICDISTILLATE / hydrotreated(mild)lightnaphthenicdistillate", "unNumber": "", "casNumber": "64742-53-6", "transportMethod": "", "sebc": "", "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", + "state": "액체", + "color": "갈색", + "odor": "석유 냄새", + "flashPoint": "146℃", + "autoIgnition": "260℃", "boilingPoint": "", - "density": "", + "density": "0.89", "solubility": "", - "vaporPressure": "", + "vaporPressure": "(물 23,8nmHg)", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "해양환경관리법/기름", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "풍하 방향으로 최소 300m", + "marineResponse": "부유 (F)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 •긴급 의료조치 피부접촉 • 20분 이상 흐르는 물에 씻을 것, 긴급 의료조치. 화상의 경우 다량의 찬물로 씻을 것 안구접촉 • 물로 조심해서 씻을 것, 콘택트렌즈 제거 경구섭취 • 구강대구강법 인공호흡 하지 말 것, 호흡의료장비 이용. 의료조치", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -46153,19 +30127,19 @@ { "code": "HN40HT", "name": "Hynap N40HT", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 673, + "id": 374, "abbreviation": "ILPBUT", "nameKr": "일립 버터", "nameEn": "Illipe butter", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "91770-65-9", "transportMethod": "", @@ -46221,291 +30195,19 @@ { "code": "ILPBUT", "name": "Illipe butter", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 674, - "abbreviation": "IFM1284", - "nameKr": "", - "nameEn": "Infineum D1284", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "IFM1284", - "name": "Infineum D1284", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 675, - "abbreviation": "IFM1688", - "nameKr": "", - "nameEn": "Infineum D1688", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "IFM1688", - "name": "Infineum D1688", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 676, - "abbreviation": "IFM2281", - "nameKr": "", - "nameEn": "Infineum D2281", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "IFM2281", - "name": "Infineum D2281", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 677, - "abbreviation": "INK", - "nameKr": "잉크 용매", - "nameEn": "INK solvent", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "-", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "INK", - "name": "INK solvent", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 678, + "id": 375, "abbreviation": "IESUN", "nameKr": "식물성 기름", "nameEn": "Inter-esterfied sunflower oil", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "97593-59-4", "transportMethod": "", @@ -46561,19 +30263,19 @@ { "code": "IESUN", "name": "Inter-esterfied sunflower oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 679, + "id": 376, "abbreviation": "IAACE", "nameKr": "이소아밀 아세테이트", "nameEn": "Isoamyl acetate", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "123-92-2", "transportMethod": "", @@ -46629,19 +30331,19 @@ { "code": "IAACE", "name": "Isoamyl acetate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 680, + "id": 377, "abbreviation": "IAA", "nameKr": "이소아밀 알코올", "nameEn": "Isoamyl alcohol", - "synonymsEn": "3-Methyl-1-butanol / ISOAMYL ALCOHOL / 3-METHYLBUTAN-1-OL / ISOPENTYL ALCOHOL / ISOPENTANOL / FUSEL OIL / 3-METHYL BUTANOL / i-Amyl Alcohol / Isoamylol / 3-methyl-1-butano / 3-methylbutanoI", "synonymsKr": "아이소아밀 알코올 / 이소아밀알코올 / 3-메틸뷰타놀 / 3-메틸부탄-1-올 / 아이소부틸카르비놀 / 아이소펜타놀 / 이소펜틸알코올 / 페르멘테이션아밀알코올 / 2-메틸-4-뷰타놀 / 3-메틸-1-부탄올,이소펜틸알코올 / 3-메틸-1-뷰타놀 / 아이소아밀알코올 / 아이소아밀알콜 / 아이소아밀올 / 이소아밀알콜 / 이소아밀알코올 / 아이소아밀 알코올 / 3-메틸-1-부탄올", + "synonymsEn": "3-Methyl-1-butanol / ISOAMYL ALCOHOL / 3-METHYLBUTAN-1-OL / ISOPENTYL ALCOHOL / ISOPENTANOL / FUSEL OIL / 3-METHYL BUTANOL / i-Amyl Alcohol / Isoamylol / 3-methyl-1-butano / 3-methylbutanoI", "unNumber": "", "casNumber": "123-51-3", "transportMethod": "", @@ -46684,9 +30386,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "R", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", "emsCode": "", @@ -46697,58 +30399,126 @@ { "code": "IAA", "name": "Isoamyl alcohol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 681, - "abbreviation": "IBACE", - "nameKr": "이소부틸 아세트산", - "nameEn": "Isobutyl acetate", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "110-19-0", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "id": 378, + "abbreviation": "IBA", + "nameKr": "이소부탄올", + "nameEn": "Isobutanol", + "synonymsKr": "아이소부탄올 / 1-하이드록시메틸프로페인 / 2-메틸프로필 알코올 / 2-메틸-1-프로판을", + "synonymsEn": "2-Methyl-1-propanol / ISOBUTANOL / IBA / ISOBUTYL ALCOHOL / 2-METHYLPROPAN-1-OL / i-Butanol / 2-Methyl propanol / NATURAL ISO BUTYL ALCOHOL / 1-propanol,2-methyl- / isobutano / 2-methyl-1-propano", + "unNumber": "1212", + "casNumber": "78-83-1", + "transportMethod": "포장(2급), 산적액화가스", + "sebc": "G (Gas)", + "usage": "도료 용매, 에스테르의 전구체, 향료, 변성제 등 사용", + "state": "오일류 액체", + "color": "무색, 투명", + "odor": "알코올 냄새", + "flashPoint": "arc", + "autoIgnition": "415。0", + "boilingPoint": "-0.5℃", + "density": "0.8", + "solubility": "0.06 g/L (25℃)", + "vaporPressure": "(물 17.5mmHg)", + "vaporDensity": "2.07", + "explosionRange": "1.7-10.9%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 3, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Z", + "ergNumber": "115", + "idlh": "1,600 ppm", + "aegl2": "17,000 ppm", + "erpg2": "", + "responseDistanceFire": "위험도", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", + "msds": { + "hazard": "고인화성, 질식성, 동상 위험", + "firstAid": "흡입: 신선한 공기, 산소공급. 동상(액화): 미온수 해동. 긴급 의료조치.", + "fireFighting": "가스 차단 우선. 차단 불가 시 화재 유지. CO₂/건조분말. 용기 냉각.", + "spillResponse": "점화원 제거. 환기 확보. 가스검지기. 증기운 형성 시 대피.", + "exposure": "TWA 800 ppm, AEGL-2 17,000 ppm, IDLH 1,600 ppm", + "regulation": "고압가스안전관리법" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-D, S-U", + "emsFire": "F-D", + "emsSpill": "S-U", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "IBA", + "name": "Isobutanol", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 379, + "abbreviation": "IBACE", + "nameKr": "이소부틸 아세트산", + "nameEn": "Isobutyl acetate", + "synonymsKr": "IBA / 초산 이소부틸 / 아세트산, 아이소뷰틸 에스터 / 뷰틸 아세테이트", + "synonymsEn": "", + "unNumber": "1213", + "casNumber": "110-19-0", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", + "usage": "페인트류 용매,음식향료류 험 해 류 위 유 11= 인화성 액체(구분2 물질툭성", + "state": "액체", + "color": "무색, 투명", + "odor": "건포도, 매니큐어", + "flashPoint": "18℃", + "autoIgnition": "421℃", + "boilingPoint": "118℃", + "density": "0.87", + "solubility": "6.7g/L(20“C)", + "vaporPressure": "13.3mmHg(20t)", + "vaporDensity": "4.14", + "explosionRange": "2.4~10.5%", + "nfpa": { + "health": 2, + "fire": 4, + "reactivity": 0, + "special": "" + }, + "hazardClass": "유해액체물질/Y", + "ergNumber": "129", + "idlh": "1,300 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "인화점", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유증발용해 (FED)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "고인화성, 호흡기/피부/안구 자극, 중추신경계", + "firstAid": "흡입노출 • 긴급 의료조치, 산소공급, 인공호흡 피부접촉 • 화상의 경우 차가운 물로 씻을 것, 비누와 물로 씻을 것 안구접촉 • 긴급 의료조치, 20분 이상 흐르는 물에 씻을 것 경구섭취 •간급의료조치 초통대몽방법 보호복 호흐구 보안경 보호장갑 기타장비 대응장비 3,4형식 (C급) 1 형식 (1B) 방독마스크(반면, 전면) 공기호흡기 O 0 열화상카메라 1 초기 이격거리(m) 50 방호거리 (m) 300 ►유출물질은 고인화성 물질로 증기의 이동에 의한 폭발 가능성이 높으며. 두통, 현기증을 일으킬 수 있으므로 둬!사。모든 출동세력 풍상에 위치’ 최소 50m 이격거리 유지, 주변선박 봉제 (흡연, 불꽃, 스파크 등 모든 점화원 제거) 해상TT줄시 ►출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용(사고선 근접 시 1B급 착용), 증기흡입과 피부와 눈에 접촉을 피할 것 ►유출물질은 부유하면서 증발, 용해되므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 1 화쟤 시 대파거리 (m) 而 + ►유출물질은 연소시 유독가스 방출. 풍상에 위치. 최소 이격거리 유지하고 내알콜포 이용 화재진", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제.", + "exposure": "TWA 150 ppm, STEL 187 ppm, IDLH 1,300 ppm", "regulation": "" }, "ibcHazard": "", @@ -46757,27 +30527,27 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "IBACE", "name": "Isobutyl acetate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 682, + "id": 380, "abbreviation": "IBACR", "nameKr": "이소부틸아크릴레이트", "nameEn": "Isobutyl acrylate", - "synonymsEn": "Isobutyl acrylate / IBA / isobutylpropenoate / 2-methylpropylacrylate / 2-methylpropyl prop-2-enoate / Isobutylacrylat / ISOBUTYL ACRYLATE / acrylated’isobutyle / Isobutyl propenoate / isobutyl2-propenoate / Acrylic acid isobutyl", "synonymsKr": "이소부틸아크릴레이트 / 아이소뷰틸아크릴레이트 / 아크릴산,이소부틸에스테르 / 이소부틸아크릴레이트 / 이소뷰틸아크릴레이트 / 아이소뷰틸아크릴레이트 / 이소뷰틸아크릴레이트 / 아이소뷰틸 아크릴레이트 / 2-페틸프로필 아크리에이트 / 2-프로펜오익 산, 2-메틸프로필 에스테르 / 2-프로펜오익 산-2-메틸 프로필 에스테르 / 아크릴 산, 이소뷰틸 에스테르 / 이소-뷰틸 아크릴레이트 / 이소뷰틸 프로펜오에이트 / 이소뷰틸-2-프로펜오에이트", + "synonymsEn": "Isobutyl acrylate / IBA / isobutylpropenoate / 2-methylpropylacrylate / 2-methylpropyl prop-2-enoate / Isobutylacrylat / ISOBUTYL ACRYLATE / acrylated’isobutyle / Isobutyl propenoate / isobutyl2-propenoate / Acrylic acid isobutyl", "unNumber": "", "casNumber": "106-63-8", "transportMethod": "", @@ -46833,87 +30603,19 @@ { "code": "IBACR", "name": "Isobutyl acrylate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 683, - "abbreviation": "IBAL", - "nameKr": "이소부틸 아데히드", - "nameEn": "Isobutyl aldehyde", - "synonymsEn": "Isobutyraldehyde / 2-METHYLPROPANAL / methylpropanal / ISOBUTYLALDEHYDE / Isobutanal / isobutyral / sobutyraldehyde / Isobutyraldehyd / 2-methyl-propana / Propanal,2-methyl- / ISOBUTYRIC ALDEHYDE", - "synonymsKr": "이소부틸알데히드 / 아이소뷰티르알데하이드 / 아이소뷰틸알데하이드 / 이소부틸알데히드 / 이소부탄알 / 2-메틸프로판알 / 2-메틸-1-프로판알 / 2-메틸프로피안알데하이드 / LC-메틸프로피안알데하이드 / 발린 알데하이드 / 이소부티랄데히드 / 이소-부티랄데히드 / 이소부티르산 알데하이드 / 이소뷰틸알데하이드 / 이소프로필포름알데하이드", - "unNumber": "", - "casNumber": "78-84-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "IBAL", - "name": "Isobutyl aldehyde", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 684, + "id": 381, "abbreviation": "IBAMN", "nameKr": "이소부틸아민", "nameEn": "Isobutyl amine", - "synonymsEn": "Isobutylamine / IBA / MIBA / 2-Methylpropanamine / sobutylaMine / 2-METHYL-1-PROPANAMINE / 2-Methyl-1-propylamine / C02787 / nsc8028 / Valamine / iso-C4H9NH2", "synonymsKr": "이소부틸아민 / 아이소뷰틸아민 / 이소부틸아민 / 1-아미노-2-메틸프로판 / 1-아미노-2-메틸프로페인 / 2-메틸-1-아미노프로페인 / 2-메틸-1-프로판아민 / 2-메틸프로판-1-아민 / 2-메틸프로판아민 / 2-메틸프로필아민 / 3-메틸-2-프로필아민", + "synonymsEn": "Isobutylamine / IBA / MIBA / 2-Methylpropanamine / sobutylaMine / 2-METHYL-1-PROPANAMINE / 2-Methyl-1-propylamine / C02787 / nsc8028 / Valamine / iso-C4H9NH2", "unNumber": "", "casNumber": "78-81-9", "transportMethod": "", @@ -46969,155 +30671,19 @@ { "code": "IBAMN", "name": "Isobutyl amine", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 685, - "abbreviation": "IDAL", - "nameKr": "", - "nameEn": "Isodecaldehyde", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "IDAL", - "name": "Isodecaldehyde", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 686, - "abbreviation": "IDA", - "nameKr": "이소데칸올", - "nameEn": "Isodecanol", - "synonymsEn": "Isodecanol / Isodecanol / Einecs 271-234-0 / isocapric alcohol / Alcohol (Isodecanol) / c9-11-iso-alcoholc10-rich / Alcohols,C9-11-iso,C10-rich / Alcohols,C9-11-iso-,C10-rich / Alcohols, C9-11-iso-, C1o-rich / Low foam isomeric alcohol ether / 8-Methylnonan-1-ol,98%(mixtures)", - "synonymsKr": "알코올, C9-11-이소-, C10-RICH / 알코올,C9-11-아이소-,C10-리치 / 알코올,C9-11-이소-,C10-RICH / 알코올,C9-11-아이소-,C10-리치", - "unNumber": "3082", - "casNumber": "68526-85-2", - "transportMethod": "", - "sebc": "", - "usage": "가소제, 세제, 향수, 조미료 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "IDA", - "name": "Isodecanol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 687, + "id": 382, "abbreviation": "IDM", "nameKr": "아이소데실 메타크릴레이트", "nameEn": "Isodecyl methacrylate", - "synonymsEn": "ISO-DECYL METHACRYLATE / IDMA / ageflexfm-10 / Isodecylmethacrylat / ISO-DECYL METHACRYLATE / Sodium 2 minosulphanilate / Isodecyl2-methylpropenoate / 8-Methylnonyl methacrylate / lsodecyl methacrylate IDMA / ISODECYL METHACRYLATE, 97.5+% / Isodecyl2-methyl-2-propenoate", "synonymsKr": "아이소데실 메타크릴레이트 / 아이소데실메타크릴레이트 / 아이소데실 메타크릴레이트 / ISO-데실메타크릴레이트", + "synonymsEn": "ISO-DECYL METHACRYLATE / IDMA / ageflexfm-10 / Isodecylmethacrylat / ISO-DECYL METHACRYLATE / Sodium 2 minosulphanilate / Isodecyl2-methylpropenoate / 8-Methylnonyl methacrylate / lsodecyl methacrylate IDMA / ISODECYL METHACRYLATE, 97.5+% / Isodecyl2-methyl-2-propenoate", "unNumber": "", "casNumber": "29964-84-9", "transportMethod": "", @@ -47173,19 +30739,19 @@ { "code": "IDM", "name": "Isodecyl methacrylate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 688, + "id": 383, "abbreviation": "IDACR", "nameKr": "이소데실 아크릴산염", "nameEn": "Isodecylacrylate", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "1330-61-6", "transportMethod": "", @@ -47241,19 +30807,19 @@ { "code": "IDACR", "name": "Isodecylacrylate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 689, + "id": 384, "abbreviation": "IDDCN", "nameKr": "이소도데케인", "nameEn": "Isododecene", - "synonymsEn": "Isododecane / Isodoecane / ISODODECANE / isododecane, mixture of isomers / Isododecane ISO 9001:2015 REACH / Isododecane, mixture of isomers, tech. 80% / Isododecane mixture of isomers, technical, >=80% (GC)", "synonymsKr": "이소도데칸 / 2,2,4,6,6-펜타메틸헵탄 / 이소도데칸 / 아이소도데케인 (이성질체 혼합물)", + "synonymsEn": "Isododecane / Isodoecane / ISODODECANE / isododecane, mixture of isomers / Isododecane ISO 9001:2015 REACH / Isododecane, mixture of isomers, tech. 80% / Isododecane mixture of isomers, technical, >=80% (GC)", "unNumber": "", "casNumber": "31807-55-3", "transportMethod": "", @@ -47309,19 +30875,19 @@ { "code": "IDDCN", "name": "Isododecene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 690, + "id": 385, "abbreviation": "IHXN", "nameKr": "이소헥산", "nameEn": "Isohexane", - "synonymsEn": "2-methylpentane / METHYLPENTANE / pentane,2-methyl- / NSC 66496 / Kyowazol C 600 / 2-METHYLPENTANE / Kyowasol C 600M / Methylpentane,99% / (CH3)2CH(CH2)2CH3 / 1,1-dimethylbutane / 2-Methylpentane>", "synonymsKr": "2-메틸펜탄 / 2-메틸펜탄 / 이소핵산 / 이소헥산 / 2-메틸펜테인", + "synonymsEn": "2-methylpentane / METHYLPENTANE / pentane,2-methyl- / NSC 66496 / Kyowazol C 600 / 2-METHYLPENTANE / Kyowasol C 600M / Methylpentane,99% / (CH3)2CH(CH2)2CH3 / 1,1-dimethylbutane / 2-Methylpentane>", "unNumber": "", "casNumber": "107-83-5", "transportMethod": "", @@ -47377,57 +30943,57 @@ { "code": "IHXN", "name": "Isohexane", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 691, - "abbreviation": "IOA", - "nameKr": "이소옥틸 알코올", - "nameEn": "Isooctyl alcohol", - "synonymsEn": "2-Ethylhexanol / 2-ETHYL-1-HEXANOL / OCTANOL / 2-Ethylhexan-1-ol / OCTYL ALCOHOL / ISOOCTYL ALCOHOL / 2EH / ISOOCTANOL / 1-hexanol,2-ethyl- / ALCOHOL C8 / 2-ETHYLHEXYL ALCOHOL", - "synonymsKr": "2-에틸-1-핵산올 / 2-에틸헥산올 / 2-에틸-1-핵산올 / 2-에틸-1-헥산올 / 이소옥타놀 / 옥탄올 / 옥탄올(OCOH) / 2-에틸헥산올", + "id": 386, + "abbreviation": "INA", + "nameKr": "이소노난올", + "nameEn": "Isononanol", + "synonymsKr": "이소노나놀", + "synonymsEn": "isononyl alcohol / 7-Methyloctan-1-ol / isononanols / Isononylalkohol / Isononanol (9CI) / Einecs 248-471-3 / Isononyl alcohol", "unNumber": "", - "casNumber": "104-76-7", - "transportMethod": "", - "sebc": "", + "casNumber": "68526-84-1", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "F (Floater)", "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "state": "액체", + "color": "무색", + "odor": "독특한 냄새", + "flashPoint": "93。0℃", + "autoIgnition": "자료없음", + "boilingPoint": "200-207℃", + "density": "0.84", + "solubility": "거의 불용", + "vaporPressure": "0.03mmHg(20“C)", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "131", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "※화재위험등급기준", + "responseDistanceSpillDay": "반경 50m 이상", + "responseDistanceSpillNight": "중 50m 이상", + "marineResponse": "휘발성", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "인화성, 피부 부식/자극, 안구 심각한 손상", + "firstAid": "흡입노출 • 신선한 곳으로 이동, 산소공급, 인공호흡 피부접촉 • 뜨거운 물질의 경우 차가운 물로 씻을 것, 20분 이상 흐르는 물에 씻을 것 안구접촉 • 몇 분간 물로 씻을 것, 콘택트렌즈 제거, 의료초치 경구섭취 •긴급의료조치 초동 대옹방법 보호복 : 호흡구 보안경 보호장갑 기타장비 대응장비 3.4 형식 (C급) 방독마스크(반면.전면) O O 열화상카메라 I 초기 이격거리(m) 자료없음 방호거리(m) 자료없음 ►유출물질은 눈. 피부자극을 일으킬 수 있으므로, 모든 출동세력 풍상에 위치, 최소 이격거리 유지. 주변선박 통제 해상유출시 ►출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용, 증기흡입과 피부와 눈에 접촉을 피할 것 ►유출물질은 해상에 부유하므로 방제조치 필요 (오일펜스 설치 유출물질 확산방지, 유흡착재 등 이용 흅착회수) I 1|재 시 CII피거리(m) ' 자료없음 + ►유출물질은 연소시 유독가스 방출. 풍상에 위치, 최소 이격거리 유지하고 소화포 이용 화재진압 화재•폭발시 ► 열화상카메라 운용(결과전파), 소화포 이용 사고선 냉각조치 할 것 ►직수분사 금지(화재를 번지게 할 수 있음) ►", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 내알코올 포말.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 해수에 유출시 지속성부유(Fp)되어 내화학흡착재 등 이용 흡착제거.", "exposure": "", "regulation": "" }, @@ -47437,338 +31003,66 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { - "code": "IOA", - "name": "Isooctyl alcohol", - "company": "", - "source": "화물적부도" + "code": "INA", + "name": "Isononanol", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 692, - "abbreviation": "ISOPARG", - "nameKr": "히드로처리된 중 나프타(휘발성 및 인화성 있는 액체용매)", - "nameEn": "Isopar G", - "synonymsEn": "·Isopar E G B H K V C generichydrocarbon heavy synthetic hydrocarbons C10-C13 n-alkanes isoalkanes cyclics <2% aromatics hydrotreated light steam cracked naphtha residuum petroleum isoparaffinic hydrocarbons low boiling hydrogen treated naphthaalkanes C11-13-iso- naphtha petroleum hydrotreated", - "synonymsKr": "히드로처리된 중 나프타 / 수소처리된중질나프타(석유) / 히드로처리된중나프타 / 수소처리된중질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDHEAVY) / C10-11아이소파라핀 / C10-12알케인/사이클로알케인 / C10-13아이소파라핀 / C11-12아이소파라핀 / C11-13아이소파라핀", - "unNumber": "3295", - "casNumber": "64742-48-9", - "transportMethod": "", - "sebc": "", - "usage": "산업용 용제, 페인트, 방향제", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "ISOPARG", - "name": "Isopar G", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 693, - "abbreviation": "ISOPARH", - "nameKr": "히드로처리된 중 나프타(휘발성 및 인화성 있는 액체용매)", - "nameEn": "Isopar H", - "synonymsEn": "·Isopar E G B H K V C generichydrocarbon heavy synthetic hydrocarbons C10-C13 n-alkanes isoalkanes cyclics <2% aromatics hydrotreated light steam cracked naphtha residuum petroleum isoparaffinic hydrocarbons low boiling hydrogen treated naphthaalkanes C11-13-iso- naphtha petroleum hydrotreated", - "synonymsKr": "히드로처리된 중 나프타 / 수소처리된중질나프타(석유) / 히드로처리된중나프타 / 수소처리된중질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDHEAVY) / C10-11아이소파라핀 / C10-12알케인/사이클로알케인 / C10-13아이소파라핀 / C11-12아이소파라핀 / C11-13아이소파라핀", - "unNumber": "3295", - "casNumber": "64742-48-9", - "transportMethod": "", - "sebc": "", - "usage": "산업용 용제, 페인트, 방향제", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "ISOPARH", - "name": "Isopar H", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 694, - "abbreviation": "ISOPARL", - "nameKr": "히드로처리된 중 나프타(휘발성 및 인화성 있는 액체용매)", - "nameEn": "Isopar L", - "synonymsEn": "·Isopar E G B H K V C generichydrocarbon heavy synthetic hydrocarbons C10-C13 n-alkanes isoalkanes cyclics <2% aromatics hydrotreated light steam cracked naphtha residuum petroleum isoparaffinic hydrocarbons low boiling hydrogen treated naphthaalkanes C11-13-iso- naphtha petroleum hydrotreated", - "synonymsKr": "히드로처리된 중 나프타 / 수소처리된중질나프타(석유) / 히드로처리된중나프타 / 수소처리된중질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDHEAVY) / C10-11아이소파라핀 / C10-12알케인/사이클로알케인 / C10-13아이소파라핀 / C11-12아이소파라핀 / C11-13아이소파라핀", - "unNumber": "3295", - "casNumber": "64742-48-9", - "transportMethod": "", - "sebc": "", - "usage": "산업용 용제, 페인트, 방향제", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "ISOPARL", - "name": "Isopar L", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 695, - "abbreviation": "ISOPARM", - "nameKr": "히드로처리된 중 나프타(휘발성 및 인화성 있는 액체용매)", - "nameEn": "Isopar M", - "synonymsEn": "·Isopar E G B H K V C generichydrocarbon heavy synthetic hydrocarbons C10-C13 n-alkanes isoalkanes cyclics <2% aromatics hydrotreated light steam cracked naphtha residuum petroleum isoparaffinic hydrocarbons low boiling hydrogen treated naphthaalkanes C11-13-iso- naphtha petroleum hydrotreated", - "synonymsKr": "히드로처리된 중 나프타 / 수소처리된중질나프타(석유) / 히드로처리된중나프타 / 수소처리된중질나프타(석유)(NAPHTHA(PETROLEUM),HYDROTREATEDHEAVY) / C10-11아이소파라핀 / C10-12알케인/사이클로알케인 / C10-13아이소파라핀 / C11-12아이소파라핀 / C11-13아이소파라핀", - "unNumber": "", - "casNumber": "64742-48-9", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "ISOPARM", - "name": "Isopar M", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 696, + "id": 387, "abbreviation": "IPTN", "nameKr": "이소펜탄", "nameEn": "Isopentane", - "synonymsEn": "2-Methylbutane / ISOPENTANE / Isopentan / methylbutane / 3-Methylbutane / JJDW / R 601A / iso-C5H12 / iso-Pentan / NSC 119476 / 2Methylbutan", "synonymsKr": "이소펜탄 / 이소펜탄 / 2-메틸부탄 / 이소펜탄(2-메틸부탄) / 에틸디메틸메탄 / 이소아밀수소화물 / 2-메틸부탄 / 펜탄 / 1,1,2-트리메틸에탄 / 아이소펜탄 / 아이소펜테인", - "unNumber": "", + "synonymsEn": "2-Methylbutane / ISOPENTANE / Isopentan / methylbutane / 3-Methylbutane / JJDW / R 601A / iso-C5H12 / iso-Pentan / NSC 119476 / 2Methylbutan", + "unNumber": "1265", "casNumber": "78-78-4", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(2급), 산적액체(Y류)", + "sebc": "E (Evaporator)", "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "액체", + "color": "무색투명", + "odor": "취면성", + "flashPoint": "-40℃", + "autoIgnition": "225℃", + "boilingPoint": "36℃", + "density": "0.63", + "solubility": "0.04 g/L (25℃)", + "vaporPressure": "(물 23.8mnHg)", + "vaporDensity": "2.49", + "explosionRange": "1.4~8.0%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질 / Y (1S0-PENTANE)", + "ergNumber": "128", + "idlh": "0분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "인화첨", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발 (E)", + "ppeClose": "근거리(레벨 A)", + "ppeFar": "원거리(레벨 C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "고인화성, 증기운 폭발 위험, 해상 유출 시 증발(E)", + "firstAid": "흡입노출 • 신선한 공기가 있는 곳으로 옮길 것 필요시 의사 조치 피부접촉 • 많은 양이 물과 비누로 최소 15분 이상 씻어낼 것 안구접촉 • 15분 이상 다량의 물로 씻어 낼 것 경구셥취 • 즉시 의사조치", + "fireFighting": "모든 점화원 제거, 복합가스탐지기 이용. 먼 곳에서 분무주수·드라이케미컬·CO2·포말 사용, 직사주수 금지. 사고선 냉각 및 예인 조치", + "spillResponse": "점화원 제거하고 주변 해상 통제. 분무 주수로 증기 억제. 해수에 유출 시 증발(E)되어 해상수거 불가. 안전 확보 시까지 지속 모니터링", + "exposure": "TWA 600 ppm, STEL 750 ppm, IDLH 1500 ppm", "regulation": "" }, "ibcHazard": "", @@ -47777,27 +31071,27 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "IPTN", "name": "Isopentane", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 697, + "id": 388, "abbreviation": "IPRN", "nameKr": "이소포론", "nameEn": "Isophorone", - "synonymsEn": "Isophorone / Izoforon / 3,5,5-TRIMETHYL-2-CYCLOHEXEN-1-ONE / Isophoron / 3,5,5-trimethylcyclohex-2-en-1-one / IPHO / Isoforon / FEMA 3553 / Isoforone / isooctopherone / 3,5,5-TRIMETHYL-2-CYCLOHEXENONE", "synonymsKr": "아이소포론 / 아이소포론 / 이소포론 / 이소포론(I.P.R) / 3,5,5-트라이메틸사이클로헥스-2-엔온 / 3,5,5-트리메틸사이클로헥스-2-에논", + "synonymsEn": "Isophorone / Izoforon / 3,5,5-TRIMETHYL-2-CYCLOHEXEN-1-ONE / Isophoron / 3,5,5-trimethylcyclohex-2-en-1-one / IPHO / Isoforon / FEMA 3553 / Isoforone / isooctopherone / 3,5,5-TRIMETHYL-2-CYCLOHEXENONE", "unNumber": "", "casNumber": "78-59-1", "transportMethod": "", @@ -47840,9 +31134,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "T", + "ibcDetection": "R", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", "emsCode": "", @@ -47853,19 +31147,19 @@ { "code": "IPRN", "name": "Isophorone", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 698, + "id": 389, "abbreviation": "IPACE", "nameKr": "이소프로필 아세테이트", "nameEn": "Isopropyl acetate", - "synonymsEn": "Isopropyl acetate / IPAC / IPrOAc / propan-2-yl acetate / CH3COOCH(CH3)2 / Ispropyl acetate / 2-propylacetate / Isopropylacetat / 2-acetoxypropane / 2-Propyl acetate / ACETIC ACID ISOPROPYL ESTER", "synonymsKr": "이소 프로필 아세테이트 / 아이소프로필아세테이트 / 2-프로필아세트산 / 1-메틸에틸아세트산 / 2-아세톡시프로판 / ㅡ아세트산,이소프로필에스테르 / 아세트산,1-에티에틸에스테르 / 아세트산아이소프로필 / 이소프로필에탄오에이트 / 초산이소프로필 / 이소프로필아세트산 / 초산이소프로필 / 이소 프로필 아세테이트 / 아이소프로필 아세테이트", + "synonymsEn": "Isopropyl acetate / IPAC / IPrOAc / propan-2-yl acetate / CH3COOCH(CH3)2 / Ispropyl acetate / 2-propylacetate / Isopropylacetat / 2-acetoxypropane / 2-Propyl acetate / ACETIC ACID ISOPROPYL ESTER", "unNumber": "", "casNumber": "108-21-4", "transportMethod": "", @@ -47908,9 +31202,9 @@ "regulation": "" }, "ibcHazard": "P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "F", + "ibcDetection": "R", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.19.6", "emsCode": "", @@ -47921,19 +31215,19 @@ { "code": "IPACE", "name": "Isopropyl acetate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 699, + "id": 390, "abbreviation": "IPAMN", "nameKr": "이소프로필아민", "nameEn": "Isopropyl amine", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "75-31-0", "transportMethod": "", @@ -47975,12 +31269,12 @@ "exposure": "", "regulation": "" }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", + "ibcHazard": "S/P", + "ibcShipType": "3", + "ibcTankType": "2G", + "ibcDetection": "C", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12.3.2, 15.14, 15.19", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -47989,87 +31283,19 @@ { "code": "IPAMN", "name": "Isopropyl amine", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 700, - "abbreviation": "IPBZN", - "nameKr": "이소프로필 벤젠", - "nameEn": "Isopropyl benzene", - "synonymsEn": "Cumene / ISOPROPYLBENZENE / 2-PHENYLPROPANE / Cumeen / Isopropylbenzen / Isopropilbenzene / (1-METHYLETHYL)BENZENE / CUMOL / CUMENE / NSC 8776 / Cumene,99%", - "synonymsKr": "큐멘 / 쿠멘 / 큐멘 / (1-메틸에틸)벤젠 / 메틸 에틸 벤젠 / 아이소프로필벤젠 / 큐몰 / 프로판-2-일벤젠 / 쿠메네", - "unNumber": "", - "casNumber": "98-82-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "IPBZN", - "name": "Isopropyl benzene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 701, + "id": 391, "abbreviation": "IPE", "nameKr": "이소프로필 에테르", "nameEn": "Isopropyl ether", - "synonymsEn": "Diisopropyl ether / DIISOPROPYL ETHER / DIPE / 2-ISOPROPOXYPROPANE / 2,2'-Oxybispropane / 2-propan-2-yloxypropane / ISOPROPYL ETHER, 1000MG, NEAT / (iso-C3H7)2O / Isoprpyl ether / Isopropyl ethe / Diisopropyleth", "synonymsKr": "이소프로필에테르 / 이소프로필에테르 / 디이소프로필산화물 / 디이소프로필에테르 / 2,2-옥시비스프로판 / 2-이소프로폭시프로판 / 디이소프로필옥시드 / 비스(이소프로필)에테르 / 프로판,2,2$$@@-옥시비스- / 이소프로필에테르 / 아이소프로필 에테르", + "synonymsEn": "Diisopropyl ether / DIISOPROPYL ETHER / DIPE / 2-ISOPROPOXYPROPANE / 2,2'-Oxybispropane / 2-propan-2-yloxypropane / ISOPROPYL ETHER, 1000MG, NEAT / (iso-C3H7)2O / Isoprpyl ether / Isopropyl ethe / Diisopropyleth", "unNumber": "", "casNumber": "108-20-3", "transportMethod": "", @@ -48112,11 +31338,11 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "F", + "ibcDetection": "R", "ibcFireFighting": "AC", - "ibcMinRequirement": "15.4.6, 15.13, 15.19.6, 16.6.1, 16.6.2", + "ibcMinRequirement": "15.4.6, 15.13, 15.19.6,\n16.6.1, 16.6.2", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -48125,699 +31351,19 @@ { "code": "IPE", "name": "Isopropyl ether", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 702, - "abbreviation": "ISORENE", - "nameKr": "이소프렌", - "nameEn": "Isorene", - "synonymsEn": "Isoprene / 2-METHYL-1,3-BUTADIENE / ACETATE BUFFER / BUFFER SOLUTION / SODIUM ACETATE BUFFER / lsoprene / BUFFER PH7.20 / BUFFER PH 4.65 / Isoprene, stabilized / 2-Methyl-1,3-butadien / nsc9237", - "synonymsKr": "이소프렌(2-메틸-1,3-부타디엔) / 펜탄디엔 / 2-메틸-1,3-부타디엔 / 이소프렌 / 이소프렌(2-메틸-1,3-부타디엔) / 아이소프렌(2-메틸-1,3-부타디엔) / 아이소프렌 / 1,3-부타디엔, 2-메틸-", - "unNumber": "", - "casNumber": "78-79-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "ISORENE", - "name": "Isorene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 703, - "abbreviation": "HPN150", - "nameKr": "", - "nameEn": "J150 SUS HPN", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "HPN150", - "name": "J150 SUS HPN", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 704, - "abbreviation": "HPN500", - "nameKr": "", - "nameEn": "J500 SUS HPN", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "HPN500", - "name": "J500 SUS HPN", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 705, - "abbreviation": "JHG", - "nameKr": "", - "nameEn": "Japanese hog grease", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "JHG", - "name": "Japanese hog grease", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 706, - "abbreviation": "JETADD", - "nameKr": "항공유 첨가제", - "nameEn": "Jet fuel additive", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "-", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "JETADD", - "name": "Jet fuel additive", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 707, - "abbreviation": "JETJP1", - "nameKr": "항공유(군사용 제트 연료 유형 / 민간 항공 JET A표기)", - "nameEn": "Jet fuel JP-1", - "synonymsEn": "Kerosene / KEROSINE / jp-5 / KEROSENE OIL / jeta / jp-8 / Kerosene(Technical) / nafta / Avtur / jeta-1 / deobase", - "synonymsKr": "케로신 / 등유,연료오일,콜오일,레인지오일,모빌케로신 / 케로신 / 등유 / 케로센 / 레인지오일 / 콜오일 / 모빌케로신 / 케로센제트연료 / 케로센오돌레스 / 디오도라이즈드케로신 / 케로젠", - "unNumber": "", - "casNumber": "8008-20-6", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "JETJP1", - "name": "Jet fuel JP-1", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 708, - "abbreviation": "JETJP4", - "nameKr": "항공유(군사용 제트 연료 유형 / 민간 항공 JET A표기)", - "nameEn": "Jet fuel JP-4", - "synonymsEn": "Kerosene / KEROSINE / jp-5 / KEROSENE OIL / jeta / jp-8 / Kerosene(Technical) / nafta / Avtur / jeta-1 / deobase", - "synonymsKr": "케로신 / 등유,연료오일,콜오일,레인지오일,모빌케로신 / 케로신 / 등유 / 케로센 / 레인지오일 / 콜오일 / 모빌케로신 / 케로센제트연료 / 케로센오돌레스 / 디오도라이즈드케로신 / 케로젠", - "unNumber": "", - "casNumber": "8008-20-6", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "JETJP4", - "name": "Jet fuel JP-4", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 709, - "abbreviation": "JETJP5", - "nameKr": "항공유(군사용 제트 연료 유형 / 민간 항공 JET A표기)", - "nameEn": "Jet fuel JP-5", - "synonymsEn": "Kerosene / KEROSINE / jp-5 / KEROSENE OIL / jeta / jp-8 / Kerosene(Technical) / nafta / Avtur / jeta-1 / deobase", - "synonymsKr": "케로신 / 등유,연료오일,콜오일,레인지오일,모빌케로신 / 케로신 / 등유 / 케로센 / 레인지오일 / 콜오일 / 모빌케로신 / 케로센제트연료 / 케로센오돌레스 / 디오도라이즈드케로신 / 케로젠", - "unNumber": "", - "casNumber": "8008-20-6", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "JETJP5", - "name": "Jet fuel JP-5", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 710, - "abbreviation": "JETJP6", - "nameKr": "항공유(군사용 제트 연료 유형 / 민간 항공 JET A표기)", - "nameEn": "Jet fuel JP-6", - "synonymsEn": "Kerosene / KEROSINE / jp-5 / KEROSENE OIL / jeta / jp-8 / Kerosene(Technical) / nafta / Avtur / jeta-1 / deobase", - "synonymsKr": "케로신 / 등유,연료오일,콜오일,레인지오일,모빌케로신 / 케로신 / 등유 / 케로센 / 레인지오일 / 콜오일 / 모빌케로신 / 케로센제트연료 / 케로센오돌레스 / 디오도라이즈드케로신 / 케로젠", - "unNumber": "", - "casNumber": "8008-20-6", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "JETJP6", - "name": "Jet fuel JP-6", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 711, - "abbreviation": "JUICE", - "nameKr": "쥬스 농축액", - "nameEn": "Juice concentrate (i.e. apple, grape)", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "-", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "JUICE", - "name": "Juice concentrate (i.e. apple, grape)", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 712, + "id": 392, "abbreviation": "KAOLIN", "nameKr": "카올린 슬러리", "nameEn": "Kaolin slurry", - "synonymsEn": "KAOLIN / Kaolin clay / CLAY / Sericite / HYDRATED ALUMINUM SILICATE / Kaoline / Anhydrol / CHINA CLAY / White clay / COLLOIDAL KAOLIN / Buca", "synonymsKr": "카올린 / 규산알루미늄 / 도자기점토 / 아르길라 / 알루미늄실리케이트(수화물) / 중국점토 / 테라알바 / 볼루스알바 / 카올린 / 흰색교회점토 / 카오린 / 할로이사이트 / 점토 / 고령토", + "synonymsEn": "KAOLIN / Kaolin clay / CLAY / Sericite / HYDRATED ALUMINUM SILICATE / Kaoline / Anhydrol / CHINA CLAY / White clay / COLLOIDAL KAOLIN / Buca", "unNumber": "", "casNumber": "1332-58-7", "transportMethod": "", @@ -48873,19 +31419,19 @@ { "code": "KAOLIN", "name": "Kaolin slurry", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 713, + "id": 393, "abbreviation": "KA0810", "nameKr": "카프릴릭(옥탄산) 또는 카프릭 애씨드(테칸산)", "nameEn": "KORTACID 0810", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "", "casNumber": "", "transportMethod": "", @@ -48941,19 +31487,19 @@ { "code": "KA0810", "name": "KORTACID 0810", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 714, + "id": 394, "abbreviation": "LCTA", "nameKr": "젖산", "nameEn": "Lactic acid", - "synonymsEn": "Lactic acid / 2-Hydroxypropanoic acid / DL-Lactic acid / Lactic / 2-HYDROXYPROPIONIC ACID / dl-lactate / Purac / actic acid / LACTIC ACID POWDER / Biolac / FEMA 2611", "synonymsKr": "유산 / 락트산 / DL-젖산 / 밀크산 / 젖산-DL / 2-히드록시프로판산 / 2-히드록시프로피오닌산 / LC-히드록시프로판산 / 라세믹젖산 / 아세톤산 / 알파-히드록시프로피온산 / 에틸리덴젖산 / 오르디나리젖산 / 젖산 / -히드록시에탄카복실산 / 락틱애씨드 / 젖산(LACTICACID) / 2-하이드록시프로판산", + "synonymsEn": "Lactic acid / 2-Hydroxypropanoic acid / DL-Lactic acid / Lactic / 2-HYDROXYPROPIONIC ACID / dl-lactate / Purac / actic acid / LACTIC ACID POWDER / Biolac / FEMA 2611", "unNumber": "", "casNumber": "50-21-5", "transportMethod": "", @@ -48996,9 +31542,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "T", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.17, 15.19", "emsCode": "", @@ -49009,87 +31555,19 @@ { "code": "LCTA", "name": "Lactic acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 715, - "abbreviation": "LARD", - "nameKr": "돼지기름", - "nameEn": "Lard Oil", - "synonymsEn": "LARD OIL / Larex Ex / LARD OIL / oils,lard / Larex prime / Larex No. 1 / Larex extra / lardoilporcine / LARD OIL, PRIME / REFINED-LARDOIL / Larex extra No. 1", - "synonymsKr": "LARD 기름 / LARD기름 / 라드기름 / 라드기름", - "unNumber": "", - "casNumber": "8016-28-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "LARD", - "name": "Lard Oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 716, + "id": 395, "abbreviation": "LTX", "nameKr": "라텍스", "nameEn": "Latex (Natural rubber)", - "synonymsEn": "RUBBER LATEX / UNITEX / VS 65 / WB 60 / V 145 / Vultex / Ulacol / TTR 5L / TTR 20 / Toptex / Taytex", "synonymsKr": "자연산 고무 / 자연산고무 / 자연산고무 / 고무라텍스", + "synonymsEn": "RUBBER LATEX / UNITEX / VS 65 / WB 60 / V 145 / Vultex / Ulacol / TTR 5L / TTR 20 / Toptex / Taytex", "unNumber": "", "casNumber": "9006-04-6", "transportMethod": "", @@ -49145,223 +31623,25 @@ { "code": "LTX", "name": "Latex (Natural rubber)", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 717, - "abbreviation": "LTXS", - "nameKr": "라텍스", - "nameEn": "Latex (Synthetic)", - "synonymsEn": "RUBBER LATEX / UNITEX / VS 65 / WB 60 / V 145 / Vultex / Ulacol / TTR 5L / TTR 20 / Toptex / Taytex", - "synonymsKr": "자연산 고무 / 자연산고무 / 자연산고무 / 고무라텍스", - "unNumber": "", - "casNumber": "9006-04-6", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "LTXS", "name": "Latex (Synthetic)", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 718, - "abbreviation": "LRA", - "nameKr": "라우르산", - "nameEn": "Lauric acid", - "synonymsEn": "Lauric acid / DODECANOIC ACID / C12 / Emery651 / Vulvic acid / FEMA 2614 / lauric acid, pure / N-DODECANOIC ACID / LAUROSTEARIC ACID / Lauric acid 98-101 % (acidimetric) / Fatty acid methyl ester sulfonate (MES)", - "synonymsKr": "라우르산 / 라우르산 / 도데카노익산 / 라우릭산 / 라우릭애씨드 / 도데칸산 / 1-운데케인카복실산 / n-도데칸산 / 데다콘산 / 도데실산 / 도데칸 산 / 도데코 산 / 도데크산 / 듀오-디시클릭 산 / 라우로스테아르 산 / 로로스테아르산 / 로르산 / 하이드로폴 산 1255", - "unNumber": "", - "casNumber": "143-07-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "T", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6, 16.2.6, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "LRA", - "name": "Lauric acid", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 719, - "abbreviation": "LAL12", - "nameKr": "라우릴 알코올", - "nameEn": "Lauryl alcohol C12", - "synonymsEn": "1-Dodecanol / Fatty alcohol / LAURYL ALCOHOL / DODECANOL / dodecyl / lauryl / DODECAN-1-OL / Pisol / Lauric Alcohol / DODECYL ALCOHOL / Lorol", - "synonymsKr": "라우릴알코올 / 1-히드록시도데칸 / 도데킬알코올 / 라우린산알코올 / 1-도데칸올 / 1-도데킬알코올 / 도데칸올 / 라우르산알코올 / 라우릴알코올 / 로릴알코올 / 페티알콜 / 라우릴알콜 / 납 / C.I.염료금속4 / 납플레이크 / 로릴알코올 / 1-도데실 알코올 / 1-도데카놀 / 1-하이드록시도데케인 / n-도데실 알코올 / 도데실 알코올", - "unNumber": "", - "casNumber": "112-53-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "LAL12", - "name": "Lauryl alcohol C12", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 720, + "id": 396, "abbreviation": "LEMON", "nameKr": "레몬 오일", "nameEn": "Lemon oil", - "synonymsEn": "Citrus Oil / Lemon Oil / Lemon oil/lime oil / LEMONOIL,CALIFORNIATYPE,COLDPRESSED,FCC / cedrooil / FEMA 2308 / Limon Oil / Citrus Oil / oiloflemon / Oils,lemon / ninmengsuan", "synonymsKr": "레몬 기름 / 레몬기름 / 레몬기름(LEMONOIL) / 레몬껍질오일", + "synonymsEn": "Citrus Oil / Lemon Oil / Lemon oil / lime oil / LEMONOIL,CALIFORNIATYPE,COLDPRESSED,FCC / cedrooil / FEMA 2308 / Limon Oil / Citrus Oil / oiloflemon / Oils,lemon / ninmengsuan", "unNumber": "", "casNumber": "8008-56-8", "transportMethod": "", @@ -49417,223 +31697,19 @@ { "code": "LEMON", "name": "Lemon oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 721, - "abbreviation": "LIAL123", - "nameKr": "", - "nameEn": "LIALCHEM 123", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "LIAL123", - "name": "LIALCHEM 123", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 722, - "abbreviation": "LIAL145", - "nameKr": "", - "nameEn": "LIALCHEM 145", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "LIAL145", - "name": "LIALCHEM 145", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 723, - "abbreviation": "LIAL23/75", - "nameKr": "", - "nameEn": "LIALCHEM 23-75", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "LIAL23/75", - "name": "LIALCHEM 23-75", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 724, + "id": 397, "abbreviation": "LDF", "nameKr": "세제 원료", "nameEn": "Light detergent feedstock", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "132778-08-6", "transportMethod": "", @@ -49689,87 +31765,19 @@ { "code": "LDF", "name": "Light detergent feedstock", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 725, - "abbreviation": "BON60", - "nameKr": "base oil", - "nameEn": "Light neutral 60 base oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "BON60", - "name": "Light neutral 60 base oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 726, + "id": 398, "abbreviation": "LIG100", "nameKr": "트라이이소부틸알루미늄", "nameEn": "Lignosite 100", - "synonymsEn": "Triisobutylaluminum / TRIISOBUTYLALUMINUM / tibal / TriisobutyL / tiba solution / triisobutylalane / triisobutyl-alane / triisobutyl-aluminu / TriisobutylAmmonium / tris(isobutyl)alane / TRI-I-BUTYLALUMINUM", "synonymsKr": "트리이소부틸알루미늄 / 트라이아이소뷰틸알루미늄 / 트리이소부틸알루미늄", + "synonymsEn": "Triisobutylaluminum / TRIISOBUTYLALUMINUM / tibal / TriisobutyL / tiba solution / triisobutylalane / triisobutyl-alane / triisobutyl-aluminu / TriisobutylAmmonium / tris(isobutyl)alane / TRI-I-BUTYLALUMINUM", "unNumber": "", "casNumber": "100-99-2", "transportMethod": "", @@ -49825,19 +31833,19 @@ { "code": "LIG100", "name": "Lignosite 100", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 727, - "abbreviation": "LIG50", - "nameKr": "리그노설폰산 나트륨", - "nameEn": "Lignosite 50", - "synonymsEn": "Sodium lignosulfonate / SODIUM LIGNINSULFONATE / banirexn / SodiuM lignosulfante / LIGNOSULFONIC ACID, SODIUM SALT / CMN / nosuL / orzans / urzans / betz402 / polyfon", + "id": 399, + "abbreviation": "LIGNO", + "nameKr": "라그노설폰산 나트륨 용액", + "nameEn": "Lignosulphonate solution", "synonymsKr": "리그노술폰산 나트륨 / 리그노설폰산나트륨 / 리그노술폰산나트륨 / 리그닌술폰산나트륨 / 소듐리그노설포네이트 / 리그노설폰산나트륨(SODIUMLIGNOSULFONATE) / 나트륨 염기 소비성 아황산 액 / 리고설폰산 나트륨 / 리고설폰산 나트륨 염 / 리그노설폰 산, 나트륨 염 / 리그노설폰산 나트륨 / 리그노아황산 나트륨 / 리그노황산 나트륨 / 리그닌설폰산 나트륨 / 설폰산 리그닌 나트륨 염", + "synonymsEn": "Sodium lignosulfonate / SODIUM LIGNINSULFONATE / banirexn / SodiuM lignosulfante / LIGNOSULFONIC ACID, SODIUM SALT / CMN / nosuL / orzans / urzans / betz402 / polyfon", "unNumber": "", "casNumber": "8061-51-6", "transportMethod": "", @@ -49893,87 +31901,25 @@ { "code": "LIG50", "name": "Lignosite 50", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 728, - "abbreviation": "LIGNO", - "nameKr": "라그노설폰산 나트륨 용액", - "nameEn": "Lignosulphonate solution", - "synonymsEn": "Sodium lignosulfonate / SODIUM LIGNINSULFONATE / banirexn / SodiuM lignosulfante / LIGNOSULFONIC ACID, SODIUM SALT / CMN / nosuL / orzans / urzans / betz402 / polyfon", - "synonymsKr": "리그노술폰산 나트륨 / 리그노설폰산나트륨 / 리그노술폰산나트륨 / 리그닌술폰산나트륨 / 소듐리그노설포네이트 / 리그노설폰산나트륨(SODIUMLIGNOSULFONATE) / 나트륨 염기 소비성 아황산 액 / 리고설폰산 나트륨 / 리고설폰산 나트륨 염 / 리그노설폰 산, 나트륨 염 / 리그노설폰산 나트륨 / 리그노아황산 나트륨 / 리그노황산 나트륨 / 리그닌설폰산 나트륨 / 설폰산 리그닌 나트륨 염", - "unNumber": "", - "casNumber": "8061-51-6", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "LIGNO", "name": "Lignosulphonate solution", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 729, + "id": 400, "abbreviation": "LNVL769", "nameKr": "알코올 혼합물 (고품질 플라스틱화제 중간체)", "nameEn": "Linevol 769", - "synonymsEn": "Alcohols, C9-11 / Neodol 91 / Dobanol 91 / Linevol 911 / Dobanol 911 / Neodol 91-8t / C9-11 Alcohol / C9-11 ALCOHOLS / Alcohols, C9-11 / Einecs 266-367-6", "synonymsKr": "C9-11알코올 / C9-11알코올 / 알코올,C9-11", + "synonymsEn": "Alcohols, C9-11 / Neodol 91 / Dobanol 91 / Linevol 911 / Dobanol 911 / Neodol 91-8t / C9-11 Alcohol / C9-11 ALCOHOLS / Alcohols, C9-11 / Einecs 266-367-6", "unNumber": "", "casNumber": "66455-17-2", "transportMethod": "", @@ -50029,223 +31975,31 @@ { "code": "LNVL769", "name": "Linevol 769", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 730, - "abbreviation": "LNVL79", - "nameKr": "알코올 혼합물 (고품질 플라스틱화제 중간체)", - "nameEn": "Linevol 79", - "synonymsEn": "Alcohols, C9-11 / Neodol 91 / Dobanol 91 / Linevol 911 / Dobanol 911 / Neodol 91-8t / C9-11 Alcohol / C9-11 ALCOHOLS / Alcohols, C9-11 / Einecs 266-367-6", - "synonymsKr": "C9-11알코올 / C9-11알코올 / 알코올,C9-11", - "unNumber": "", - "casNumber": "66455-17-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "LNVL79", "name": "Linevol 79", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 731, - "abbreviation": "LNVL911", - "nameKr": "알코올 혼합물 (고품질 플라스틱화제 중간체)", - "nameEn": "Linevol 911", - "synonymsEn": "Alcohols, C9-11 / Neodol 91 / Dobanol 91 / Linevol 911 / Dobanol 911 / Neodol 91-8t / C9-11 Alcohol / C9-11 ALCOHOLS / Alcohols, C9-11 / Einecs 266-367-6", - "synonymsKr": "C9-11알코올 / C9-11알코올 / 알코올,C9-11", - "unNumber": "", - "casNumber": "66455-17-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "LNVL911", "name": "Linevol 911", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 732, - "abbreviation": "LINLEIC", - "nameKr": "", - "nameEn": "Linoleic acid", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "LINLEIC", - "name": "Linoleic acid", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 733, + "id": 401, "abbreviation": "LINLENIC", "nameKr": "리놀렌산", "nameEn": "Linolenic acid", - "synonymsEn": "Linolenic acid / α-Linolenic acid / ALPHA-LINOLENIC ACID / 9,12,15-OCTADECATRIENOIC ACID / linolenic / a-Linolenic acid / OCTADECA-9Z,12Z,15Z-TRIENOIC ACID / (Z,Z,Z)-9,12,15-Octadecatrienoic acid / ALPHA-LNN / A-linolenic / α-linolenic acid (ALA)", "synonymsKr": "리놀렌산 / 리놀렌산 / 리놀레닉애씨드", + "synonymsEn": "Linolenic acid / α-Linolenic acid / ALPHA-LINOLENIC ACID / 9,12,15-OCTADECATRIENOIC ACID / linolenic / a-Linolenic acid / OCTADECA-9Z,12Z,15Z-TRIENOIC ACID / (Z,Z,Z)-9,12,15-Octadecatrienoic acid / ALPHA-LNN / A-linolenic / α-linolenic acid (ALA)", "unNumber": "", "casNumber": "463-40-1", "transportMethod": "", @@ -50301,55 +32055,55 @@ { "code": "LINLENIC", "name": "Linolenic acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 734, + "id": 402, "abbreviation": "LPR10/12", "nameKr": "n-파라핀 계열의 용제 및 중간체 물질(제품명)", "nameEn": "Linpar 10-12", - "synonymsEn": "·Paraffins, petroleum, normal C5-20, n-paraffins, n-alkanes, naphtha (petroleum), hydrotreated heavy (CAS RN: 64742-48-9), hydrocarbons, C9-C11, n-alkanes, isoalkanes, cyclics, < 2% aromatic (EC Number 919-857-5), hydrocarbons, C7-9, n-alkanes, isoalkanes, cyclics (EC Number 920-750-0), generichydrocarbon", - "synonymsKr": "노말 파라핀 C5-20 / 노말파라핀C5-20 / 노말파라핀C5-20 / 둥유", - "unNumber": "", + "synonymsKr": "노말파라핀(석유)", + "synonymsEn": "KEROSENE / KEROSINE / n-Paraffins / Normal paraffins(C10-C13) / KEROSENE / Are alkanes / normal(C10+) / Normal alkane / isoparaffinic / KEROSENE WHITE / Normal alkanes", + "unNumber": "1268", "casNumber": "64771-72-8", "transportMethod": "", "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", + "usage": "세척제, 소독제, 용제", + "state": "액체", + "color": "무색 ~흰색", + "odor": "자료없음", + "flashPoint": ">66℃", "autoIgnition": "", "boilingPoint": "", - "density": "", + "density": "0.75(15℃)", "solubility": "", "vaporPressure": "", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Y", "ergNumber": "", - "idlh": "", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유 (F)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 신선한 곳으로 이동, 긴급 의료조치, 산소공급, 인공호흡 피부접촉 • 긴급 의료조치, 20분 이상 흐르는 물에 씻을 것 으급조치 ° 안구접촉 • 긴급 의료조치,20분 이상 흐르는 물에씻을 것 경구섭취 •간급의료조치 _ !", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -50369,359 +32123,37 @@ { "code": "LPR10/12", "name": "Linpar 10-12", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 735, - "abbreviation": "LPR10/13", - "nameKr": "n-파라핀 계열의 용제 및 중간체 물질(제품명)", - "nameEn": "Linpar 10-13", - "synonymsEn": "·Paraffins, petroleum, normal C5-20, n-paraffins, n-alkanes, naphtha (petroleum), hydrotreated heavy (CAS RN: 64742-48-9), hydrocarbons, C9-C11, n-alkanes, isoalkanes, cyclics, < 2% aromatic (EC Number 919-857-5), hydrocarbons, C7-9, n-alkanes, isoalkanes, cyclics (EC Number 920-750-0), generichydrocarbon", - "synonymsKr": "노말 파라핀 C5-20 / 노말파라핀C5-20 / 노말파라핀C5-20 / 둥유", - "unNumber": "", - "casNumber": "64771-72-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "LPR10/13", "name": "Linpar 10-13", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 736, - "abbreviation": "LPR12/14", - "nameKr": "n-파라핀 계열의 용제 및 중간체 물질(제품명)", - "nameEn": "Linpar 12-14", - "synonymsEn": "·Paraffins, petroleum, normal C5-20, n-paraffins, n-alkanes, naphtha (petroleum), hydrotreated heavy (CAS RN: 64742-48-9), hydrocarbons, C9-C11, n-alkanes, isoalkanes, cyclics, < 2% aromatic (EC Number 919-857-5), hydrocarbons, C7-9, n-alkanes, isoalkanes, cyclics (EC Number 920-750-0), generichydrocarbon", - "synonymsKr": "노말 파라핀 C5-20 / 노말파라핀C5-20 / 노말파라핀C5-20 / 둥유", - "unNumber": "", - "casNumber": "64771-72-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "LPR12/14", "name": "Linpar 12-14", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 737, - "abbreviation": "LPR14", - "nameKr": "n-파라핀 계열의 용제 및 중간체 물질(제품명)", - "nameEn": "Linpar 14", - "synonymsEn": "·Paraffins, petroleum, normal C5-20, n-paraffins, n-alkanes, naphtha (petroleum), hydrotreated heavy (CAS RN: 64742-48-9), hydrocarbons, C9-C11, n-alkanes, isoalkanes, cyclics, < 2% aromatic (EC Number 919-857-5), hydrocarbons, C7-9, n-alkanes, isoalkanes, cyclics (EC Number 920-750-0), generichydrocarbon", - "synonymsKr": "노말 파라핀 C5-20 / 노말파라핀C5-20 / 노말파라핀C5-20 / 둥유", - "unNumber": "", - "casNumber": "64771-72-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "LPR14", "name": "Linpar 14", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 738, - "abbreviation": "LSO", - "nameKr": "아마인유", - "nameEn": "Linseed oil", - "synonymsEn": "Linseed oil / FLAXSEED OIL / groco / l-310 / P 1037 / PU 104 / leinol / Flaxoil / Purolin / d= 0.93 / Scan-Oil", - "synonymsKr": "아마인유 / 아마인기름,RAW / 플렉스시드기름 / RAW아마인기름 / 아마씨기름 / 아마인기름,표백한 / 아마인유 / 올레움리니 / 아마인오일 / 아마씨오일 / 아마씨기름(LINSEEDOIL) / 기름, 아마인 / 아마씨 기름 / 아마씨 기름, 표백 / 아마인 기름", - "unNumber": "", - "casNumber": "8001-26-1", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2(k)TYPE", - "ibcTankType": "2G", - "ibcDetection": "No", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "LSO", - "name": "Linseed oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 739, - "abbreviation": "PFN", - "nameKr": "액체 파라핀", - "nameEn": "Liquid parrafin", - "synonymsEn": "Paraffin, liquid / Paraffin oil / LIQUID PARAFFIN / OIL / PARAFFIN LIQUID / NUJOL / paraffins / drakeol / fonoline / LIGHT WHITE OIL / LIQUID PETROLATUM", - "synonymsKr": "미네랄오일 / 광물성기름 / 무거운미네랄기름 / 백무기기름 / 액체페트롤라튬 / 화이트액체파라핀 / 기름미스트,무기 / 미네랄오일 / 액체파라핀 / 파라핀기름 / 파라핀유 / 유동파라핀 / 파라핀오일 / 파라핀유(PARAFFINOIL) / 광물성 기름", - "unNumber": "1270", - "casNumber": "8012-95-1", - "transportMethod": "", - "sebc": "", - "usage": "세제, 화장품 등 원료", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PFN", - "name": "Liquid parrafin", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 740, + "id": 403, "abbreviation": "LSPN", "nameKr": "옥틸페닐폴리에틸렌 글리콜", "nameEn": "Lissapol N", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "123359-41-1", "transportMethod": "", @@ -50777,155 +32209,25 @@ { "code": "LSPN", "name": "Lissapol N", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 741, - "abbreviation": "LSPNX", - "nameKr": "옥틸페닐폴리에틸렌 글리콜", - "nameEn": "Lissapol NX", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "1", - "casNumber": "123359-41-1", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "LSPNX", "name": "Lissapol NX", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 742, - "abbreviation": "LUXWAX", - "nameKr": "", - "nameEn": "Luxco slax wax", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "LUXWAX", - "name": "Luxco slax wax", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 743, + "id": 404, "abbreviation": "MAGCLO", "nameKr": "염화마그네슘", "nameEn": "Magnesium chloride solution", - "synonymsEn": "Magnesium chloride / Magnesiumchlorid / magnesiumdichloride / MAGNESIUM CHLORIDE, 98% ANHYDROUS / MAGNESIUM CHLORIDE SOLUTION, 0.025 M IN WATER, 10X1 ML / dus-top / Slow-Mag / Lys, TMS / Magnogene / Chloromagnesite / MgCl2(anhydrous)", "synonymsKr": "염화마그네슘 / 염화마그네슘 / 마그노겐 / 이염화마그네슘 / 클로로마그네시트 / 마그네슘클로라이드 / 염화마그네슘 / 염화 마그네슘 / 다이메틸글루타레이트 / 메틸글루타르산 / 로우스위트블루베리씨", + "synonymsEn": "Magnesium chloride / Magnesiumchlorid / magnesiumdichloride / MAGNESIUM CHLORIDE, 98% ANHYDROUS / MAGNESIUM CHLORIDE SOLUTION, 0.025 M IN WATER, 10X1 ML / dus-top / Slow-Mag / Lys, TMS / Magnogene / Chloromagnesite / MgCl2(anhydrous)", "unNumber": "", "casNumber": "7786-30-3", "transportMethod": "", @@ -50968,9 +32270,9 @@ "regulation": "" }, "ibcHazard": "P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "No", + "ibcDetection": "O", "ibcFireFighting": "AC", "ibcMinRequirement": "", "emsCode": "", @@ -50981,19 +32283,19 @@ { "code": "MAGCLO", "name": "Magnesium chloride solution", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 744, + "id": 405, "abbreviation": "MRCL52", "nameKr": "경 무기 기름", "nameEn": "MARCOL 52", - "synonymsEn": "Mineral oil / PARAFFIN OIL / white / WHITE MINERAL OIL / Light Mineral Oil / White Oil 26 / LIQUID PETROLATUM / Mineral oil,light white / KF50 / wirt / KF250", "synonymsKr": "경 무기 기름 / 경무기기름 / 경미네랄오일 / 경미네랄오일(LIGHTMINERALOIL)", + "synonymsEn": "Mineral oil / PARAFFIN OIL / white / WHITE MINERAL OIL / Light Mineral Oil / White Oil 26 / LIQUID PETROLATUM / Mineral oil,light white / KF50 / wirt / KF250", "unNumber": "", "casNumber": "8042-47-5", "transportMethod": "", @@ -51049,19 +32351,43 @@ { "code": "MRCL52", "name": "MARCOL 52", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "MOIL", + "name": "Mineral oil", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PMLN352", + "name": "PRIMOL N 352", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PMLN382", + "name": "PRIMOL N 382", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PMLN542", + "name": "PRIMOL N 542", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 745, + "id": 406, "abbreviation": "MCRSL", "nameKr": "m-크레졸", "nameEn": "m-Cresol", - "synonymsEn": "m-Cresol / 3-METHYLPHENOL / META-CRESOL / Phenol,3-methyl- / m-Cresole / m-Kresol / 3-Cresol / M-METHYLPHENOL / m-Cesol / M-CRESOL / m-Toluol", "synonymsKr": "m-크레졸 / m-크레졸 / 1-히드록시-3-메틸벤젠 / 3-히드록시톨루엔 / M-메틸페놀 / M-옥시톨루엔 / M-크레솔 / M-크레시릴릭산 / 3-메틸페놀 / 3-크레솔 / M-톨루올 / M-히드록시톨루엔 / 메타크레졸퍼플수용액 / 크로톤알데히드(M-크레솔) / 1-옥시-3-메틸벤졸 / 1-하이드록시-3-메틸벤젠 / 1-하이드록시-3-메틸벤졸 / 3-하이드록시톨루엔 / 3-하이드록시톨루올 / m-크레실산 / m-하이드록시톨루엔", + "synonymsEn": "m-Cresol / 3-METHYLPHENOL / META-CRESOL / Phenol,3-methyl- / m-Cresole / m-Kresol / 3-Cresol / M-METHYLPHENOL / m-Cesol / M-CRESOL / m-Toluol", "unNumber": "", "casNumber": "108-39-4", "transportMethod": "", @@ -51117,19 +32443,19 @@ { "code": "MCRSL", "name": "m-Cresol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 746, + "id": 407, "abbreviation": "MDVBZN", "nameKr": "디비닐 벤젠", "nameEn": "m-Divinylbenzene", - "synonymsEn": "Divinylbenzene / DVB / 1,2-Divinylbenzene / dvb-55 / dvb-80 / vinylstyrene / dvb-22 / dvb-27 / dvb-100 / divinyl-benzen / o-vinylstyrene", "synonymsKr": "디비닐벤젠 / 디비닐벤젠 / 디비닐벤젠50% / 디비닐벤젠 / 비닐스타이렌 / 다이바이닐벤젠 / 다이바이닐벤젠(이성질체 혼합물) / 다이에텐일벤젠 / 바이닐스타이렌 / 벤젠, 다이바이닐 / 벤젠, 다이에텐일- / 3,4,5-트라이메톡시벤즈알데하이드 / 바이유레아(BIUREA)", + "synonymsEn": "Divinylbenzene / DVB / 1,2-Divinylbenzene / dvb-55 / dvb-80 / vinylstyrene / dvb-22 / dvb-27 / dvb-100 / divinyl-benzen / o-vinylstyrene", "unNumber": "", "casNumber": "1321-74-0", "transportMethod": "", @@ -51185,87 +32511,19 @@ { "code": "MDVBZN", "name": "m-Divinylbenzene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 747, - "abbreviation": "MHDO", - "nameKr": "멘헤이든 오일", - "nameEn": "Menhaden oil", - "synonymsEn": "FISH OIL / z3(oil) / pogyoil / menhaden / FISH OILS / NatureMade / mossbunkeroil / oils,menhaden / Brevoortia oil / Oele, Menhaden- / Boiled oil Y00-1", - "synonymsKr": "멘헤이든오일 / 멘헤이든오일", - "unNumber": "", - "casNumber": "8002-50-4", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MHDO", - "name": "Menhaden oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 748, + "id": 408, "abbreviation": "MO", "nameKr": "산화 메시틸", "nameEn": "Mesityl oxide", - "synonymsEn": "Mesityl oxide / 4-Methylpent-3-en-2-one / mesityl / 4-METHYL-3-PENTEN-2-ONE / METHYL ISOBUTENYL KETONE / 4-Methyl-3-penten-2-one, 9CI / 4-Methyl-3-penten-2-on / Mesityloxid / Mesity oxide / The propyl acetone / isopropyl alcohol-tech", "synonymsKr": "산화 메시틸 / 메시틸옥시드 / 산화메시틸 / 4-메틸-3-펜틴-2-온 / 산화메시틸 / 산화 메시틸 / 2,2-다이메틸바이닐 메틸 케톤 / 2-메틸-2-펜텐-4-온 / 2-메틸-4-옥소-2-펜텐 / 3-펜텐-2-온, 4-메틸- / 4-메틸-3-펜텐-2-온 / 4-메틸-펜트-3-엔-2-온 / 4-메틸펜트-3-엔-2-온 / 메시틸 옥사이드 / 메틸 아이소부테닐 케톤 / 메틸 아이소뷰텐일 케톤 / 아이소프로필리덴아세톤 / 아이소프로필아이딘아세톤", + "synonymsEn": "Mesityl oxide / 4-Methylpent-3-en-2-one / mesityl / 4-METHYL-3-PENTEN-2-ONE / METHYL ISOBUTENYL KETONE / 4-Methyl-3-penten-2-one, 9CI / 4-Methyl-3-penten-2-on / Mesityloxid / Mesity oxide / The propyl acetone / isopropyl alcohol-tech", "unNumber": "", "casNumber": "141-79-7", "transportMethod": "", @@ -51308,9 +32566,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "R", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", "emsCode": "", @@ -51321,223 +32579,87 @@ { "code": "MO", "name": "Mesityl oxide", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 749, - "abbreviation": "MTX", - "nameKr": "메타-자일렌", - "nameEn": "meta-Xylene", - "synonymsEn": "m-Xylene / 1,3-Xylene / 1,3-DIMETHYLBENZENE / 3-xylene / m-Xylol / META-XYLENE / Benzene,1,3-dimethyl- / 2,4-Xylene / 3-methyltoluene / m-XyL / M-XYLENE", - "synonymsKr": "3-자일렌 / 3-자일렌 / M-자일렌 / m-크실렌 / 메타크실렌 / M-크실렌 / 1,3-디메틸벤젠 / M-메틸톨루엔 / 크실렌 / M-크실롤 / 메타자일 / 1,3-다이메틸벤젠 / 1,3-자일렌 / m-자일롤 / 메타-자일렌 / 벤젠, 1,3-다이메틸-", - "unNumber": "", - "casNumber": "108-38-3", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MTX", - "name": "meta-Xylene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 750, + "id": 409, "abbreviation": "MACR", "nameKr": "메킬아크릴레이트", "nameEn": "Methyl acrylate", + "synonymsKr": "메틸아크릴산/다이아콘/페갈렌 취급시설 오드펠터미널코리아(주)", "synonymsEn": "Methyl acrylate / Methacrylate / ACRYLIC ACID METHYL ESTER / Methyl prop-2-enoate / METHYL PROPENOATE / Methyl Acrilate / Methyl propenate / CH2=CHCOOCH3 / curithane103 / methyl ester / Curithane 103", - "synonymsKr": "아크릴산메틸 / 메타크릴산염 / 아크릴산메틸 / 메틸아크릴레이트 / 아크릴산에스테르 / 메틸아크릴레이트 / 2-프로펜오익산,메틸에스테르 / 아크릴산메틸에스테르 / 메톡시 / 메틸아크릴레이트 / 메틸 아크릴레이트", "unNumber": "1919", "casNumber": "96-33-3", - "transportMethod": "", - "sebc": "", - "usage": "접착제, 계면활성제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", + "usage": "접작제, 계면활성제 급초첱어싧需:4) 만성 수행환경 유해성(구분3) 물질툭성 11", + "state": "액체", + "color": "무색", + "odor": "메캐한냄새", + "flashPoint": "-3℃", + "autoIgnition": "468^", + "boilingPoint": "80℃", + "density": "0.95", + "solubility": "49.4g/L", + "vaporPressure": "86.8mmHg(2W", + "vaporDensity": "2.95", + "explosionRange": "2.8~25%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 3, + "fire": 4, + "reactivity": 2, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "129P", + "idlh": "250 ppm", + "aegl2": "14.25 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발용해 (ED)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "고인화성, 호흡기/피부/안구 자극, 중합성", + "firstAid": "흡입노출 피부접촉 안구접촉 경구섭취 • 인공호흡, 호흡이 힘든 경우 산소공급, 의료조치 • 비누와 물로 씻을 것, 이학조치 받을 것 • 몇 분간 물로 조심해서 씻을 것, 콘택트렌즈 제거 • 입을 씻어내고 긴급 의료조치 초동 대응방법 보호복 호흡구 ■ 보안경 보호장갑 기타장비 대응장비 3.4형식 (C급) 방독마스크(반면, 전면) 수 1형삭 (1B) 공기호흡기 . 이 O 열화상카메라 □초기 이격거리(m) 50 방호거리 (m) 300 1 * 유출물질은 고인화성 물질로 증기의 이동에 의한 폭발가능성이 높으며, 눈. 피부 자극과 증기 흡입 시 급성독성이 나타나므로. 모든 출동세력 풍상에 위치. 최소 50m 이격거리 유지, 주변선박 통제 (홉연, 불꽃, 스파크 등 모든 점 해상유출시 화원 제거) ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3,4형식 보호의 착용(사고선 근접 시 1B이상 착용 중기홉입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 증발, 용해되므로 방제조치 불필요 • 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 I 화재 시대피거리(m) 800 + 으 유출물질은 연소시 유독", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제. 분무주수로 증기운 이동 억제.", + "exposure": "TWA 2 ppm, AEGL-2 14.25 ppm, IDLH 250 ppm", "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.17, 15.13, 15.19", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "MACR", "name": "Methyl acrylate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 751, - "abbreviation": "MDISO", - "nameKr": "메틸렌 디페닐 디이소시아네이트", - "nameEn": "Methyl diisocyanate", - "synonymsEn": "4,4'-Diphenylmethane diisocyanate / MDI / methylene / Methylene diphenyl diisocyanate / DIPHENYLMETHANE DIISOCYANATE / DESMODUR / MBI / yiqingsuanzhi / methylenediphenyldiisocyanate / BIS(4-ISOCYANATOPHENYL)METHANE / Isonate", - "synonymsKr": "4,4′-메틸렌 비스(페닐 이소시아네이트)(고체) / 4,4'-디페닐메탄디이소시아네이트 / 4,4′-메틸렌비스(페닐이소시아네 / 4,4′-메틸렌비스(페닐이소시아네이트)(고체) / 메틸렌디(비스)페닐4,4‘-디이소시아네이트 / 메틸렌비스페닐아이소사이안산(메틸렌비스페닐이소시안산) / 4,4'-메틸렌디(비스)페닐디이소시아네이트 / 메틸렌비스(4-페닐아이소사이아네이트) / 4,4'-디이소시안산 디페닐메탄 / 4,4-디이소시안산디페닐메탄 / 메틸렌비스페닐이소시아네이트", - "unNumber": "2206", - "casNumber": "101-68-8", - "transportMethod": "", - "sebc": "", - "usage": "단열재, 건축재, 접착제, 스판덱스. 합성피혁 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MDISO", - "name": "Methyl diisocyanate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 752, + "id": 410, "abbreviation": "MES", "nameKr": "메틸 에스테르", "nameEn": "Methyl ester", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "57153-18-1", "transportMethod": "", @@ -51593,19 +32715,19 @@ { "code": "MES", "name": "Methyl ester", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 753, + "id": 411, "abbreviation": "MIAK", "nameKr": "메틸 이소아밀 케톤", "nameEn": "Methyl isoamyl ketone", - "synonymsEn": "5-Methyl-2-hexanone / 5-Methylhexan-2-one / MIAK / ISOAMYL METHYL KETONE / METHYL ISOAMYL KETONE / 5-methyl-hexan-2-one / 2-Hexanone,5-methyl- / -2-hexanone / Isobutylaceton / 5-Methyl-2-hex / Methyl-2-hexan", "synonymsKr": "메틸이소아밀케톤 / 5-메틸-2-헥사논 / 메틸이소아밀케톤 / 5-메틸헥산-2-온 / 메틸이소아밀케톤 / 2-메틸-5-헥산온 / 3-메틸뷰틸 메틸 케톤 / 5-메틸-2-헥산온 / 5-메틸-헥산-2-온 / 메틸 아이소아밀 케톤 / 메틸헥산온 / 아이소아밀 메틸 케톤", + "synonymsEn": "5-Methyl-2-hexanone / 5-Methylhexan-2-one / MIAK / ISOAMYL METHYL KETONE / METHYL ISOAMYL KETONE / 5-methyl-hexan-2-one / 2-Hexanone,5-methyl- / -2-hexanone / Isobutylaceton / 5-Methyl-2-hex / Methyl-2-hexan", "unNumber": "", "casNumber": "110-12-3", "transportMethod": "", @@ -51661,19 +32783,19 @@ { "code": "MIAK", "name": "Methyl isoamyl ketone", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 754, + "id": 412, "abbreviation": "MIC", "nameKr": "메틸 이소시아네이트", "nameEn": "Methyl isocyanate", - "synonymsEn": "METHYLISOCYANATE 1 X 500MG NEAT / Methyl isocyanate / Isocyanatomethane / CH3NCO / tl1450 / TL 1450 / WLN: OCN1 / Isocyanamethane / methylisocyanat / Methylisokyanat / metilisocianato", "synonymsKr": "메틸 이소시아네이트 / 메틸아이소사이아네이트 / 메탄,이소시안아토 / 메틸탄호이미드 / 메틸이소시아네이트 / 이소시안산메틸에스테르 / 메틸이소시아네이트 / 메틸아이소시아네이트 / 메틸 아이소사이아네이트 / 메테인, 아이소사이아네이토- / 메틸이미노-옥소메테인 / 아이소사이아네이토메테인 / 아이소사이아네이트, 메틸 / 아이소사이안산, 메틸 에스터 / 아이소사이안산의 메틸 에스터", + "synonymsEn": "METHYLISOCYANATE 1 X 500MG NEAT / Methyl isocyanate / Isocyanatomethane / CH3NCO / tl1450 / TL 1450 / WLN: OCN1 / Isocyanamethane / methylisocyanat / Methylisokyanat / metilisocianato", "unNumber": "", "casNumber": "624-83-9", "transportMethod": "", @@ -51729,19 +32851,19 @@ { "code": "MIC", "name": "Methyl isocyanate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 755, + "id": 413, "abbreviation": "MLRATE", "nameKr": "메틸라우레이트", "nameEn": "Methyl laurate", - "synonymsEn": "METHYL LAURATE / METHYL DODECANOATE / DODECANOIC ACID METHYL ESTER / LAURIC ACID METHYL ESTER / Methyl dodecylate / FEMA 2715 / stepanc40 / uniphata40 / Uniphat A40 / Dodecanoic ac / metholene2296", "synonymsKr": "라우릴산메틸에스테르 / 라우릴산메틸에스테르 / 메틸로린산 / 메틸도데카노에이트 / 메틸로린산 / 메틸라우레이트 / 메틸 도데카노에이트", + "synonymsEn": "METHYL LAURATE / METHYL DODECANOATE / DODECANOIC ACID METHYL ESTER / LAURIC ACID METHYL ESTER / Methyl dodecylate / FEMA 2715 / stepanc40 / uniphata40 / Uniphat A40 / Dodecanoic ac / metholene2296", "unNumber": "", "casNumber": "111-82-0", "transportMethod": "", @@ -51797,19 +32919,19 @@ { "code": "MLRATE", "name": "Methyl laurate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 756, + "id": 414, "abbreviation": "MOLETATE", "nameKr": "메틸 올레이트", "nameEn": "Methyl oletate", - "synonymsEn": "Methyl Oleate / OLEIC ACID METHYL ESTER / METHYL OCTADECENOATE / METHYL CIS-9-OCTADECENOATE / Methyl (9Z)-9-octadecenoate / 9-Octadecenoicacid(Z)-,methylester / CIS-9-OCTADECENOIC ACID METHYL ESTER / nsc406282 / Emery 2219 / Emery 2301 / emerest2801", "synonymsKr": "올레인산 메틸 / 올레인산메틸 / 올레인산메틸 / 메틸올리에이트 / (Z)-9-옥타데센산 메틸 에스터 / 메틸 9-옥타데켄오에이트 / 올레인산 메틸", + "synonymsEn": "Methyl Oleate / OLEIC ACID METHYL ESTER / METHYL OCTADECENOATE / METHYL CIS-9-OCTADECENOATE / Methyl (9Z)-9-octadecenoate / 9-Octadecenoicacid(Z)-,methylester / CIS-9-OCTADECENOIC ACID METHYL ESTER / nsc406282 / Emery 2219 / Emery 2301 / emerest2801", "unNumber": "", "casNumber": "112-62-9", "transportMethod": "", @@ -51865,19 +32987,19 @@ { "code": "MOLETATE", "name": "Methyl oletate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 757, + "id": 415, "abbreviation": "MPALM", "nameKr": "메틸 팔미테이트", "nameEn": "Methyl palmitate", - "synonymsEn": "Methyl palmitate / METHYL HEXADECANOATE / C16 / HEXADECANOIC ACID METHYL ESTER / PALMITIC ACID METHYL ESTER / Hexadecanoic / n-Hexadecanoic acid methyl ester / METHYL PALMITATE, STANDARD FOR GC / mitate / Emery 2216 / Radia 7120", "synonymsKr": "메틸 팔미드산 염 / 메틸팔미드산염 / 메틸팔미드산염 / 메틸팔미테이트 / 메틸헥사데카노에이트", + "synonymsEn": "Methyl palmitate / METHYL HEXADECANOATE / C16 / HEXADECANOIC ACID METHYL ESTER / PALMITIC ACID METHYL ESTER / Hexadecanoic / n-Hexadecanoic acid methyl ester / METHYL PALMITATE, STANDARD FOR GC / mitate / Emery 2216 / Radia 7120", "unNumber": "", "casNumber": "112-39-0", "transportMethod": "", @@ -51933,19 +33055,19 @@ { "code": "MPALM", "name": "Methyl palmitate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 758, + "id": 416, "abbreviation": "MSTEAR", "nameKr": "메틸 스테아레이트", "nameEn": "Methyl stearate", - "synonymsEn": "METHYL STEARATE / METHYL OCTADECANOATE / STEARIC ACID METHYL ESTER / OCTADECANOIC ACID METHYL ESTER / Methyl stearate CRS / METHYL N-OCTANDECANOATE / emery2218 / Emery 2218 / kemester9018 / kemester9718 / Methylstearat", "synonymsKr": "메틸 스테아레이트 / 메틸스테아레이트 / 메틸스테아레이트 / 메틸옥타데카노에이트", + "synonymsEn": "METHYL STEARATE / METHYL OCTADECANOATE / STEARIC ACID METHYL ESTER / OCTADECANOIC ACID METHYL ESTER / Methyl stearate CRS / METHYL N-OCTANDECANOATE / emery2218 / Emery 2218 / kemester9018 / kemester9718 / Methylstearat", "unNumber": "", "casNumber": "112-61-8", "transportMethod": "", @@ -52001,155 +33123,19 @@ { "code": "MSTEAR", "name": "Methyl stearate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 759, - "abbreviation": "MSM", - "nameKr": "메틸스티렌", - "nameEn": "Methyl styrene monomer", - "synonymsEn": "2-Phenyl-1-propene / AMS / Α-METHYLSTYRENE / ALPHA-METHYLSTYRENE / 2-PHENYLPROPENE / A-METHYL STYRENE / ISOPROPENYLBENZENE / (1-Methylethenyl)benzene / à-methylstyrene / α-Methylphenylene / (1-methylethenyl)-benzen", - "synonymsKr": "알파-메틸 스타이렌 / α-메틸스티렌 / 알파-메틸스티렌 / 알파-메틸스타이렌 / 알파-메틸스티렌 / 알파-메틸 스타이렌 / 2-페닐-1-프로펜", - "unNumber": "2303", - "casNumber": "98-83-9", - "transportMethod": "", - "sebc": "", - "usage": "접착제, 코팅제 제조 스티렌 중합체와 수지, 에틸렌 프로필렌 수지의 중간체로 주로사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MSM", - "name": "Methyl styrene monomer", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 760, - "abbreviation": "MAACE", - "nameKr": "메틸 테르트-부틸 에테르", - "nameEn": "Methylamyl acetate", - "synonymsEn": "METHYL TERT-BUTYL ETHER / TERT-BUTYL METHYL ETHER METHYL TERT- BUTYL ETHER / 2-METHOXY-2-METHYLPROPANE", - "synonymsKr": "메틸 삼차뷰틸 에테르 / TERT-부틸 메틸 에테르", - "unNumber": "2398", - "casNumber": "1634-04-4", - "transportMethod": "", - "sebc": "", - "usage": "주로 가솔린 첨가제 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "F", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MAACE", - "name": "Methylamyl acetate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 761, + "id": 417, "abbreviation": "MAA", "nameKr": "메틸 아밀 알코올", "nameEn": "Methylamyl alcohol", - "synonymsEn": "2-Methyl-2-butanol / TERT-AMYL ALCOHOL / T-AMYL ALCOHOL / 2-METHYLBUTAN-2-OL / t-amyl / TERT-PENTANOL / AMYLENE HYDRATE / 2-methyl-2-butano / TERT-PENTYL ALCOHOL / Tert-AmylAlcohol,99% / tert-Isoamyl alcohol", "synonymsKr": "삼차-아밀알코올 / 2-메틸-2-뷰탄올 / 삼차-아밀알코올 / 삼차-펜틸알코올 / 삼차-펜틸알코올", + "synonymsEn": "2-Methyl-2-butanol / TERT-AMYL ALCOHOL / T-AMYL ALCOHOL / 2-METHYLBUTAN-2-OL / t-amyl / TERT-PENTANOL / AMYLENE HYDRATE / 2-methyl-2-butano / TERT-PENTYL ALCOHOL / Tert-AmylAlcohol,99% / tert-Isoamyl alcohol", "unNumber": "", "casNumber": "75-85-4", "transportMethod": "", @@ -52192,9 +33178,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "R", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", "emsCode": "", @@ -52205,87 +33191,19 @@ { "code": "MAA", "name": "Methylamyl alcohol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 762, - "abbreviation": "MOIL", - "nameKr": "미네랄 오일", - "nameEn": "Mineral oil", - "synonymsEn": "Mineral oil / PARAFFIN OIL / white / WHITE MINERAL OIL / Light Mineral Oil / White Oil 26 / LIQUID PETROLATUM / Mineral oil,light white / KF50 / wirt / KF250", - "synonymsKr": "경 무기 기름 / 경무기기름 / 경미네랄오일 / 경미네랄오일(LIGHTMINERALOIL)", - "unNumber": "", - "casNumber": "8042-47-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MOIL", - "name": "Mineral oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 763, + "id": 418, "abbreviation": "MVAO", "nameKr": "혼합 식물성 산성 오일", "nameEn": "Mixed vegetable acid oil", - "synonymsEn": "Vegetable fatty acids / exvegetable-oil / Vegetable fatty acids / Destiled Rice Fatty Acid / Vegetable oil fatty acids / Mixed vegetable oil acids / Fatty acids, vegetable-oil / Acidulated vegetable oil soapstock", "synonymsKr": "지방 산, 식물성-기름 / 지방산,식물성-기름 / 지방산,식물성-기름(FATTYACIDS,VEGETABLE-OIL)", + "synonymsEn": "Vegetable fatty acids / exvegetable-oil / Vegetable fatty acids / Destiled Rice Fatty Acid / Vegetable oil fatty acids / Mixed vegetable oil acids / Fatty acids, vegetable-oil / Acidulated vegetable oil soapstock", "unNumber": "", "casNumber": "61788-66-7", "transportMethod": "", @@ -52341,19 +33259,19 @@ { "code": "MVAO", "name": "Mixed vegetable acid oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 764, + "id": 419, "abbreviation": "MWAX", "nameKr": "혼합 왁스", "nameEn": "Mixed wax", - "synonymsEn": "Alkenes, C>10 .alpha.-, polymd. / ET-2428 / ALPHA ALKENES / Alkenes, C$10 .alpha.-, polymd. / ALKENES, C10, ALPHA, POLYMERIZED / alkenes, C>10 alpha-, polymerised", "synonymsKr": "알켄, C>10, 알파, 중합체화된 / 알켄,C>10,알파,중합체화된 / 알켄,C>10,알파,중합체화된(ALKENES,C>10,ALPHA,POLYMERIZED) / 알켄,C>10.alpha.-,polymd.", + "synonymsEn": "Alkenes, C>10 .alpha.-, polymd. / ET-2428 / ALPHA ALKENES / Alkenes, C$10 .alpha.-, polymd. / ALKENES, C10, ALPHA, POLYMERIZED / alkenes, C>10 alpha-, polymerised", "unNumber": "", "casNumber": "68527-08-2", "transportMethod": "", @@ -52409,223 +33327,19 @@ { "code": "MWAX", "name": "Mixed wax", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 765, - "abbreviation": "MXX", - "nameKr": "혼합 자일렌", - "nameEn": "Mixed xylene", - "synonymsEn": "Xylene / XYLENES / XyL / XYLOL / DIMETHYLBENZENE / MIXED XYLENE / xylenen / XYLENES, MIXED / NAPHTHA SOLVENT / benzene,dimethyl- / SCINTILENE COCKTAIL", - "synonymsKr": "자일렌 / 디메틸벤젠(오쏘,메타,파라-이성체) / 자일렌 / 자일렌(크실렌) / 크실렌 / 크실렌(오르토,메타,파라이성체) / 크실렌(오르토,메타,파라이성체)디메틸벤젠(오쏘,메타,파라-이성체)Xylene,o,m,p-isomersXylene(o,m,p-isomers) / 자일렌(XY) / 디메틸벤젠", - "unNumber": "", - "casNumber": "1330-20-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MXX", - "name": "Mixed xylene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 766, - "abbreviation": "MOLRF", - "nameKr": "설탕 찌꺼기", - "nameEn": "Molasses RF", - "synonymsEn": "Molasses / tangmi / Molasses / Cane syrup / CANEMOLASSES / beet molasses / Molasses, beet / Einecs 270-698-1 / Beet sugar molasses / Molasses ISO 9001:2015 REACH", - "synonymsKr": "당밀 / 당밀 / molasses / 당밀", - "unNumber": "", - "casNumber": "68476-78-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MOLRF", - "name": "Molasses RF", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 767, - "abbreviation": "MCBZN", - "nameKr": "클로로벤젠", - "nameEn": "Monochlorobenzene", - "synonymsEn": "Chlorobenzene / MONOCHLOROBENZENE / Chlorobenzen / Chlorbenzol / Chlorbenzene / CHLOROBENZOL / PHENYL CHLORIDE / cp27 / NSC 8433 / U.N. 1134 / orobenzene", - "synonymsKr": "클로로벤젠 / 클로로벤젠 / 모노클로로벤졸 / 벤젠,클로로 / 테트로신SP / 모노클로로벤젠 / 벤젠염화물 / 페닐염화물 / 벤젠 염화물 / 벤젠, 클로로 / 테트로신 SP / 페닐 염화물", - "unNumber": "", - "casNumber": "108-90-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MCBZN", - "name": "Monochlorobenzene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 768, + "id": 420, "abbreviation": "MNTWAX", "nameKr": "몬탄 왁스", "nameEn": "Monta wax", - "synonymsEn": "MONTAN WAX / MONTAN WAX / Montan wax (technical grade) / TIANFU-CHEM 8002-53-7 MONTAN WAX", "synonymsKr": "몬탄 왁스 / 몬탄왁스 / 몬탄왁스(MONTANWAX)", + "synonymsEn": "MONTAN WAX / MONTAN WAX / Montan wax (technical grade) / TIANFU-CHEM 8002-53-7 MONTAN WAX", "unNumber": "", "casNumber": "8002-53-7", "transportMethod": "", @@ -52681,19 +33395,19 @@ { "code": "MNTWAX", "name": "Monta wax", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 769, + "id": 421, "abbreviation": "MPL", "nameKr": "모르폴린", "nameEn": "Morpholine", - "synonymsEn": "Morpholine / MORPHOLIN / 1,4-Oxazinan / TETRAHYDRO-1,4-OXAZINE / 1-Oxa-4-azacyclohexane / basf238 / NA 2054 / BASF 238 / Drewamine / Morphorin / Morpholine", "synonymsKr": "모르폴린 / 모르폴린 / 1-옥사-4-아자시클로헥산 / 디에틸렌옥스이미드 / 디에틸렌이미드산화물 / 디에틸엔이미드산화물 / 몰포린 / 테트라히드로-1,4-옥사진 / 테트라히드로-1,4-이소옥사진 / 테트라-히드로-2H-1,4-옥사진 / 모르포린 / 모르포린및그염류 / 모폴린", + "synonymsEn": "Morpholine / MORPHOLIN / 1,4-Oxazinan / TETRAHYDRO-1,4-OXAZINE / 1-Oxa-4-azacyclohexane / basf238 / NA 2054 / BASF 238 / Drewamine / Morphorin / Morpholine", "unNumber": "", "casNumber": "110-91-8", "transportMethod": "", @@ -52736,9 +33450,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12.3, 15.12.4, 15.19", "emsCode": "", @@ -52749,19 +33463,19 @@ { "code": "MPL", "name": "Morpholine", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 770, + "id": 422, "abbreviation": "MPLE", "nameKr": "모르폴린 에탄올", "nameEn": "Morpholine ethanol", - "synonymsEn": "2-Morpholinoethanol / 2-Morpholinoethan-1-ol / 4-MORPHOLINEETHANOL / 2-MORPHOLIN-4-YL-ETHANOL / 4-(2-HYDROXYETHYL)MORPHOLINE / NSC 1946 / AKOS MSC-0730 / MORPHOLINOETHANOL / AKOS BBS-00004369 / Morpholine ethanol / 2-MORPHOLINETHANOL", "synonymsKr": "하이드록시에틸모르폴린 / 4-(2-하이드록시에틸)모폴린 / 4-(2-하이드록시에틸)모르폴린 / 하이드록시에틸모르폴린 / 2-모르폴리노에탄올", + "synonymsEn": "2-Morpholinoethanol / 2-Morpholinoethan-1-ol / 4-MORPHOLINEETHANOL / 2-MORPHOLIN-4-YL-ETHANOL / 4-(2-HYDROXYETHYL)MORPHOLINE / NSC 1946 / AKOS MSC-0730 / MORPHOLINOETHANOL / AKOS BBS-00004369 / Morpholine ethanol / 2-MORPHOLINETHANOL", "unNumber": "", "casNumber": "622-40-2", "transportMethod": "", @@ -52817,223 +33531,19 @@ { "code": "MPLE", "name": "Morpholine ethanol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 771, - "abbreviation": "MOSM", - "nameKr": "", - "nameEn": "MOSSPAR M", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MOSM", - "name": "MOSSPAR M", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 772, - "abbreviation": "MOS120", - "nameKr": "", - "nameEn": "Mosstanol 120", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MOS120", - "name": "Mosstanol 120", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 773, - "abbreviation": "MPCRSL", - "nameKr": "m-p-크레졸", - "nameEn": "m-p-Cresol", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "108-95-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MPCRSL", - "name": "m-p-Cresol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 774, + "id": 423, "abbreviation": "MURUFAT", "nameKr": "야자씨가루", "nameEn": "Murumuru fat", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "356065-49-1", "transportMethod": "", @@ -53089,19 +33599,19 @@ { "code": "MURUFAT", "name": "Murumuru fat", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 775, + "id": 424, "abbreviation": "MSDSO", "nameKr": "겨자씨 기름", "nameEn": "Mustard seed oil", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "8007-40-7", "transportMethod": "", @@ -53157,291 +33667,19 @@ { "code": "MSDSO", "name": "Mustard seed oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 776, - "abbreviation": "MVIN40", - "nameKr": "", - "nameEn": "MVIN 40", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MVIN40", - "name": "MVIN 40", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 777, - "abbreviation": "MVIN65", - "nameKr": "", - "nameEn": "MVIN 65 NG", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MVIN65", - "name": "MVIN 65 NG", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 778, - "abbreviation": "MVIN170", - "nameKr": "", - "nameEn": "MVIN170", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MVIN170", - "name": "MVIN170", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 779, - "abbreviation": "MYRISTIC", - "nameKr": "", - "nameEn": "Myristic acid", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MYRISTIC", - "name": "Myristic acid", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 780, + "id": 425, "abbreviation": "NDMAA", "nameKr": "n,n-디메틸아세트아미드", "nameEn": "n,n-Dimethylacetamide solution (40% or less)", - "synonymsEn": "N,N-Dimethylacetamide / DMA / DMAC / Dimethyl acetamide / CH3CON(CH3)2 / N,N-Dimethylacetamide, 99%, pure / dimethylacetamid / N,N-Dimethylethanamide / Acetic acid dimethylacetamide / DMAC, Dimethylacetamide / U-5954", "synonymsKr": "N,N-디메틸아세트아미드 / N,N-다이메틸아세트아마이드 / N,N-디메틸아세트아미드 / 다이메틸아세트아마이드 / N-디메틸아세트아미드 / N,N-다이메틸아세타마이드 / DMAC / 다이메틸 아세트아마이드 / 아세트 산 다이에틸아마이드", + "synonymsEn": "N,N-Dimethylacetamide / DMA / DMAC / Dimethyl acetamide / CH3CON(CH3)2 / N,N-Dimethylacetamide, 99%, pure / dimethylacetamid / N,N-Dimethylethanamide / Acetic acid dimethylacetamide / DMAC, Dimethylacetamide / U-5954", "unNumber": "", "casNumber": "127-19-5", "transportMethod": "", @@ -53497,87 +33735,19 @@ { "code": "NDMAA", "name": "n,n-Dimethylacetamide solution (40% or less)", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 781, - "abbreviation": "NALKN10", - "nameKr": "n-알칸", - "nameEn": "n-Alkanes (C10+)", - "synonymsEn": "N-NONANE / NONANE / 1-NONANE / n-C9H20 / nonanes / N-NONANE / ALKANE C9 / Nonane>NONANE(SG) / shellsol140 / #nn-Nonane", - "synonymsKr": "노르말노난 / N-노네인 / 노난 / 노르말노난 / 노네인 / n-노난", - "unNumber": "", - "casNumber": "111-84-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NALKN10", - "name": "n-Alkanes (C10+)", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 782, + "id": 426, "abbreviation": "NAACE", "nameKr": "n-아밀 아세테이트", "nameEn": "n-Amyl acetate", - "synonymsEn": "Amyl acetate / PENTYL ACETATE / N-AMYL ACETATE / ACETIC ACID PENTYL ESTER / N-PENTYL ACETATE / n-amyl / 1-PENTYL ACETATE / normal / PEAR OIL / ai3-02729 / Birnenoel", "synonymsKr": "N-아밀 아세테이트 / N-아밀아세테이트 / 노르말아밀아세트산 / 노말-초산아밀 / 아세트산N-아밀에스테르 / 노말-초산아밀 / 아밀아세테이트 / N-아밀 아세테이트 / 1-아세톡시펜테인 / 1-펜틸 아세테이트 / n-펜틸 아세테이트 / 아밀 아세테이트 / 아세테이트, N-아밀 / 아세트산, 1-펜틸 에스터 / 아세트산, 펜틸 에스터 / 펜틸 아세테이트 / 펜틸 에타노에이트 / 1-펜틸아세테이트", + "synonymsEn": "Amyl acetate / PENTYL ACETATE / N-AMYL ACETATE / ACETIC ACID PENTYL ESTER / N-PENTYL ACETATE / n-amyl / 1-PENTYL ACETATE / normal / PEAR OIL / ai3-02729 / Birnenoel", "unNumber": "", "casNumber": "628-63-7", "transportMethod": "", @@ -53633,123 +33803,123 @@ { "code": "NAACE", "name": "n-Amyl acetate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 783, - "abbreviation": "NAAL", - "nameKr": "노멀-아밀알코올", - "nameEn": "n-Amyl alcohol", - "synonymsEn": "1-Pentanol / AMYL ALCOHOL / PENTAN-1-OL / N-PENTANOL / FUSEL OIL / N-AMYL ALCOHOL / Amylol / PENTYL ALCOHOL / N-PENTYL ALCOHOL / 1-Pentano1 / Pentanol-1", - "synonymsKr": "1-펜타놀 / 1-펜타놀 / N-아밀알코올 / 아밀알코올 / N-펜틸알코올 / N-아밀알코올 / 아밀알코올 / 아밀올 / 펜틸알코올 / 1-펜탄올 / N-부틸카빈올 / 일차아밀알 / N-아밀알코올 / N-펜틸 알코올 / 1-펜틸 알코올 / n-아밀 알코올 / n-펜탄올 / 아밀 알코올 / 펜탄-1-올 / 펜탄올 / 펜틸 알코올", - "unNumber": "1105", - "casNumber": "71-41-0", - "transportMethod": "", - "sebc": "", - "usage": "제약제조 원료, 합성 조미료, 윤활유 첨가제", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "id": 427, + "abbreviation": "NPTH", + "nameKr": "나프타", + "nameEn": "Naphtha", + "synonymsKr": "나프타 용제 / 벤진 / HI-플래시 나프타에틸렌 / 가수소정제 / 가수소제정제 / 경리그로인 / 미네랄 스피릿스 NO 10 / 미네랄 신너 / 미네랄 터펜틴 / 나프타, 석유 / 석유 벤진 / 석유 증류액 (나프타) / 고무 용제 / Skelly-solve H / Skelly-solve R / Skelly-solve S / Skelly-solve S-66 / 석유 나프타 / 나프타 공급원료 / 고무 용제 나프타 / 석유 에테르", + "synonymsEn": "Solvent naphtha / Benzin / Hi-flash naphthayethylen / Hydrofining / Hydrorefining / Light ligroin / Mineral spirits no 10 / Mineral thinner / Mineral turpentine / Naphtha, petroleum / Petroleum benzin / Petroleum distillates (naphtha) / Rubber solvent / Skelly-solve H / Skelly-solve R / Skelly-solve S / Skelly-solve S-66 / Petroleum naphtha / Naphtha feedstock / Rubber solvent naphtha / Petroleum ether", + "unNumber": "", + "casNumber": "64741-42-0", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "FE (Float-Evaporator)", + "usage": "", + "state": "액체", + "color": "투명", + "odor": "독특한 냄새", + "flashPoint": "-18℃ 이하", + "autoIgnition": "자료없음", + "boilingPoint": "-20~220℃", + "density": "0.75~0.773(16t)", + "solubility": "<0.1 g/L (25℃)", + "vaporPressure": "100 mmHg (20℃)", "vaporDensity": "", - "explosionRange": "", + "explosionRange": "1.1~7.6%", "nfpa": { - "health": 0, - "fire": 0, + "health": 3, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "해양환경관리법/기쁨", + "ergNumber": "128", + "idlh": "3O 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발©", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "고인화성, 생식/발암 유해성, 피부/흡입 자극", + "firstAid": "흡입노출 ' • 산소공급.인공호흡.의료조치 피부접촉 • 비누와 물로 씻을 것, 화상의 경우 찬물로 식힐 것, 의료조치 읏급조치 안구접촉 • 몇 분간 조심해서씻을 것.콘택트렌즈 제거 경구섭취 • 즉시의료조치 초동 대응방법 대응장비 보호복 호흡구 보안경 보호장갑 기타장비 3.4형식 (C굽) 방독마스크(반면,전면) O O 열화상카메라 초기 이격거리(m) 50 방호거리(m) 300 해상유출시 ► 유출물질은 극인화성 물질로 증기의 이동에 의한 폭발 가능성이 높으며,유전적인 결함을 유발할 수 있고 암을 일 으킬 수 있는 물질이므로 모든 출동세력 풍상에 위치. 최소 50m 이격거리 유지, 주변선박 통제 (홉연. 불꽃, 스파크 등 모든 점화원 제거) ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용, 증기홉입과 피부와 눈에 접촉을 피할 것 > 유출물질은 증발하므로 방제조치 불필요 > 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 화재시대피거리 (m) 800 + 화재 •폭발시 ► 유출물질윤 연소시 유독가스 방출, 풍상에 위치, 최소 이격거리 유지하고 내알콜포 이용 화재진압 느 열화상카메라 운용(결과전", + "fireFighting": "내알코올 포말/분무주수/CO₂/건조분말. 직사주수 금지.", + "spillResponse": "점화원 제거. 오일펜스/흡착재로 회수. 증기운 이동 억제. 안전 확보 시까지 지속 모니터링.", + "exposure": "TWA 300 mg/㎥", + "regulation": "위험물안전관리법(제4류 제1석유류)" }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "FT", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12, 15.17, 15.19", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { - "code": "NAAL", - "name": "n-Amyl alcohol", - "company": "", - "source": "화물적부도" + "code": "NPTH", + "name": "Naphtha", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 784, + "id": 428, "abbreviation": "NPTHS", "nameKr": "솔벤트 나프타", "nameEn": "Naphtha (Solvent)", - "synonymsEn": "Solvent naphtha (petroleum), light arom. / Solvent naphtha (petroleum) / SHELLSOLA / C9-10 AROMATIC HYDROCARBONS / 400N base oil / White oil No.5 / 150BS base oil / AROMATIC SOLVENT S-100 / aromatic naphtha, type I / HIGHFLASHAROMATICNAPHTHA / LIGHTAROMATICSOLVENTNAPHTHA", - "synonymsKr": "경 방향족 화합물 용제 나프타 / 경방향족화합물용제나프타 / 솔벤트나프타(석유),경질방향족화합물 / 솔벤트나프타(석유),경질방향족화합물(SOLVENTNAPHTHA(PETROLEUM),LIGHTAROMATIC) / C9-10아로마틱하이드로카본 / 솔벤트나프타(석유),가벼운방향족.", - "unNumber": "", - "casNumber": "64742-95-6 64742-95-5", + "synonymsKr": "나프타 / 나프타 용제 / 러버 솔벤트 / 벤진/석유 나프타 / 석유 에테르 NFPA 코드(0~4단계) 건강 :1 화재 : 4 반응 :0", + "synonymsEn": "Solvent naphtha (petroleum), light arom. / Solvent naphtha (petroleum) / SHELLSOLA / C9-10 AROMATIC HYDROCARBONS / 400N base oil / White oil No.5 / 150BS base oil / AROMATIC SOLVENT S-100 / aromatic naphtha, type I / HIGHFLASHAROMATICNAPHTHA / LIGHTAROMATICSOLVENTNAPHTHA / Solvent naphtha / Benzin / Hi-flash naphthayethylen / Hydrofining / Hydrorefining / Light ligroin / Mineral spirits no 10 / Mineral thinner / Mineral turpentine / Naphtha, petroleum / Petroleum benzin / Petroleum distillates (naphtha) / Rubber solvent / Skelly-solve H / Skelly-solve R / Skelly-solve S / Skelly-solve S-66 / Petroleum naphtha / Naphtha feedstock / Rubber solvent naphtha / Petroleum ether", + "unNumber": "1268", + "casNumber": "8030-30-6", "transportMethod": "", "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", + "usage": "도료용 용제. 염료 중간체, 인화성 액제(귀문1 흠이 유해서(구부1) 급성독성-경구(구분4) 읍느 \" \"引누느 ) __ r", + "state": "기체", + "color": "무색", + "odor": "가솔린 냄새", "flashPoint": "", "autoIgnition": "", "boilingPoint": "", - "density": "", + "density": "0.6", "solubility": "", - "vaporPressure": "", + "vaporPressure": "(물 23.8mmHg)", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "해양환경관리법/기롬", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발 (E)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 토하게 하지 말 것, 인공호흡, 산소공급 피뚜접촉 - 피부를 물과 비누로 씻을 것, 화상의 경우 찬물로 씻을 것 안구접촉 - 20분 이상 흐르는 물에 씻을 것 경구섭취 • 토하게 하지 말 것, 즉시 의丄기관 진찰", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -53769,19 +33939,19 @@ { "code": "NPTHS", "name": "Naphtha (Solvent)", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 785, + "id": 429, "abbreviation": "NPTHA", "nameKr": "나프텐산", "nameEn": "Naphthenic acid", - "synonymsEn": "NAPHTHENIC ACID / NAPHTHENIC ACIDS / agenap / sunapticacidb / 3-NAPHTHENIC ACID / naphid / NAPHTENIC ACID / NAPHTHENIC ACID / sunaptic acid c / Antiwear agent 1602 / AcidUM TranexaMicuM", "synonymsKr": "나프텐산 / 나프텐산 / 나프텐산 / 나프텐산류", + "synonymsEn": "NAPHTHENIC ACID / NAPHTHENIC ACIDS / agenap / sunapticacidb / 3-NAPHTHENIC ACID / naphid / NAPHTENIC ACID / NAPHTHENIC ACID / sunaptic acid c / Antiwear agent 1602 / AcidUM TranexaMicuM", "unNumber": "", "casNumber": "1338-24-5", "transportMethod": "", @@ -53837,495 +34007,19 @@ { "code": "NPTHA", "name": "Naphthenic acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 786, - "abbreviation": "NBPKS", - "nameKr": "파라핀의 일종(화장품, 플라스틱, 고무제품 원료)", - "nameEn": "NB palm kernel stearin", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "91079-14-0", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NBPKS", - "name": "NB palm kernel stearin", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 787, - "abbreviation": "NBDPKL", - "nameKr": "파라핀의 일종(화장품, 플라스틱, 고무제품 원료)", - "nameEn": "NBD palm kernel olein", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "91079-14-0", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NBDPKL", - "name": "NBD palm kernel olein", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 788, - "abbreviation": "NBDPO", - "nameKr": "", - "nameEn": "NBD palm oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NBDPO", - "name": "NBD palm oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 789, - "abbreviation": "NBDPL", - "nameKr": "", - "nameEn": "NBD palm olein", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NBDPL", - "name": "NBD palm olein", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 790, - "abbreviation": "NBDPS", - "nameKr": "", - "nameEn": "NBD palm stearin", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NBDPS", - "name": "NBD palm stearin", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 791, - "abbreviation": "NBACE", - "nameKr": "아세트산부틸(아세트산의 n-부틸 에스터)", - "nameEn": "n-Butyl acetate", - "synonymsEn": "Butyl acetate / N-BUTYL ACETATE / ACETIC ACID BUTYL ESTER / Acetic acid butyl / Butylacetat / Butyl ethanoate / Butyle / butylacetates / Butile / BUTYLE ACETATE / 1-Butyl acetate", - "synonymsKr": "아세트산부틸 / 아세트산부틸 / n-부틸아세트산 / n-뷰틸아세트산 / 부틸에탄산 / 뷰틸아세트산 / 초산부틸 / 초산n-부틸 / 부틸아세테이트 / 부틸아세테이트(B.A) / 부틸아세트산 / 초산부틸 / N-뷰틸 아세테이트 / 뷰틸 아세테이트 / 뷰틸 에타노에이트 / 아세트산 n-뷰틸 에스터 / 1-부틸아세테이트", - "unNumber": "", - "casNumber": "123-86-4", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NBACE", - "name": "n-Butyl acetate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 792, - "abbreviation": "NBACR", - "nameKr": "아크릴산부탄", - "nameEn": "n-Butyl acrylate", - "synonymsEn": "Butyl acrylate / TBA / T-BUTYL ACRYLATE / 2-Propenoic acid butyl ester / Butyl propenoate / ACRYLIC ACID TERT-BUTYL ESTER / TERTIARY-BUTYL ACRYLATE / ButyAcrylate / Butyl acrylate / Acrylic acid b / 1-butylacrylate", - "synonymsKr": "아크릴산부탄 / N-뷰틸아크릴레이트 / 노말-부틸프로페논염 / 부틸아크릴산 / 아크릴산노말-부틸에스테르 / 2-프로펜산,부틸에스N-BUTYLACRYLATE / n-부틸아크릴레이트 / 노말-부틸아크릴레이트 / 부탄아크릴레이트 / 부틸-2-프로페논염 / 아크릴산부탄 / 아크릴산뷰틸 / n-뷰틸아크릴산 / N-뷰틸 아크릴레이트 / 2-프로펜 산, n-뷰틸 에스터 / n-뷰틸 아크릴 산 / n-뷰틸 프로펜 산 / 뷰틸-2-프로펜 산 / 아크릴 산 뷰틸 에스터", - "unNumber": "2348", - "casNumber": "141-32-2", - "transportMethod": "", - "sebc": "", - "usage": "코팅제, 접착제, 실란트, 섬유 마감재, 플라스틱 등 다양한 분양에서 사용되는 화학물질", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NBACR", - "name": "n-Butyl acrylate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 793, + "id": 430, "abbreviation": "NBAMN", "nameKr": "n-부틸아민", "nameEn": "n-Butyl amine", - "synonymsEn": "Butylamine / BA / N-BUTYLAMINE / Butan-1-amine / MNBA / 1-BUTANAMINE / 1-BUTYLAMINE / MONO-N-BUTYLAMINE / Butylamin / Butanamine / n-Butilamina", "synonymsKr": "모노부틸아민 / N-뷰틸아민 / n-부틸아민 / 모노부틸아민 / 부틸아민 / N-부틸아민 / 부틸아민 / 1-아미노부탄 / 노르발아민 / 모노부틸아민 / 1-부탄아민 / 1-부 / 부탄-1-아민", + "synonymsEn": "Butylamine / BA / N-BUTYLAMINE / Butan-1-amine / MNBA / 1-BUTANAMINE / 1-BUTYLAMINE / MONO-N-BUTYLAMINE / Butylamin / Butanamine / n-Butilamina", "unNumber": "", "casNumber": "109-73-9", "transportMethod": "", @@ -54381,19 +34075,19 @@ { "code": "NBAMN", "name": "n-Butyl amine", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 794, + "id": 431, "abbreviation": "NBE", "nameKr": "이뷰틸 에테르", "nameEn": "n-Butyl ether", - "synonymsEn": "Dibutyl ether / NBE / DIBUTYL ETHER / N-BUTYL ETHER / BUTYL ETHER / 1-BUTOXYBUTANE / DIBUTYL OXIDE / Specifications / N-DIBUTYL ETHER / 1,1’-oxybis-butan / etherbutylique(french)", "synonymsKr": "이뷰틸 에테르 / 다이뷰틸에테르 / 1,1-옥시-비스부탄 / 1-부톡시부탄 / N-디부틸에테르 / N-부틸에테르 / 대부틸산화물부탄 / 디부틸에테르 / 이뷰틸에테르 / 디-N-부틸에테르 / 1,1'-옥시-비스부탄 / 부틸에테르 / 1-부톡시부탄 / 부 / 이뷰틸에테르 / 다이뷰틸 에테르 / DI-n-부틸에테르", + "synonymsEn": "Dibutyl ether / NBE / DIBUTYL ETHER / N-BUTYL ETHER / BUTYL ETHER / 1-BUTOXYBUTANE / DIBUTYL OXIDE / Specifications / N-DIBUTYL ETHER / 1,1’-oxybis-butan / etherbutylique(french)", "unNumber": "", "casNumber": "142-96-1", "transportMethod": "", @@ -54436,9 +34130,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "F", + "ibcDetection": "R", "ibcFireFighting": "AC", "ibcMinRequirement": "15.4.6, 15.19", "emsCode": "", @@ -54449,87 +34143,19 @@ { "code": "NBE", "name": "n-Butyl ether", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 795, - "abbreviation": "NBMA", - "nameKr": "n-뷰틸 메타크릴레이트", - "nameEn": "n-Butyl methacrylate", - "synonymsEn": "Butyl methacrylate / bma / N-BUTYL METHACRYLATE / n-BMA / 2-Propenoic acid, 2-methyl-, butyl ester / 2-Methyl-2-propenoic acid butyl ester / butilmetacrilato / Butil metacrilato / Butylmethacrylaat / BUTYL METHACRYLATE / 1-BUTYLMETHACRYLATE", - "synonymsKr": "N-뷰틸 메타크릴레이트 / N-뷰틸메타크릴레이트 / N-부틸알파-메타크릴산 / 메타크릴METHACRYLICACID,BUTYLESTER / 부틸2-메타크릴산 / 부틸-2-메틸-2-프로펜산 / N-부틸메타크릴산 / 메타아크릴산뷰틸 / 메타크릴산n-부틸 / 메트아크릴산,부틸에스테르 / 부틸메타크릴레이트 / N-뷰틸 메타크릴레이트", - "unNumber": "", - "casNumber": "97-88-1", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NBMA", - "name": "n-Butyl methacrylate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 796, + "id": 432, "abbreviation": "NBALD", "nameKr": "부틸알데히드", "nameEn": "n-Butyl aldehyde", - "synonymsEn": "Butyraldehyde / BUTANAL / N-BUTYRALDEHYDE / N-BUTANAL / propanecarbaldehyde / BUTAL / 1-Butanal / BUTYL ALDEHYDE / Butyraldehyd / BUTARALDEHYDE / N-BUTYL ALDEHYDE", "synonymsKr": "n-뷰탈알데히드 / 부티르알데히드 / n-뷰탈알데히드 / n-뷰틸알데하이드 / n-뷰틸알데히드 / 부틸알데히드 / 뷰틸알데하이드 / n-뷰티르알데하이드 / 뷰탄알 / 뷰탄알데하이드 / 뷰탈 / 뷰트알데하이드 / 뷰티랄 / 뷰티르 알데하이드 / 뷰티르알데하이드 / 뷰티릴알데하이드 / 뷰틸 알데하이드 / n-부탄알", + "synonymsEn": "Butyraldehyde / BUTANAL / N-BUTYRALDEHYDE / N-BUTANAL / propanecarbaldehyde / BUTAL / 1-Butanal / BUTYL ALDEHYDE / Butyraldehyd / BUTARALDEHYDE / N-BUTYL ALDEHYDE", "unNumber": "", "casNumber": "123-72-8", "transportMethod": "", @@ -54585,123 +34211,55 @@ { "code": "NBALD", "name": "n-Butyl aldehyde", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 797, - "abbreviation": "NBRA", - "nameKr": "n-부티르산", - "nameEn": "n-Butyric acid", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "1", - "casNumber": "107-92-6", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NBRA", - "name": "n-Butyric acid", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 798, - "abbreviation": "DCAN", - "nameKr": "데칸", + "id": 433, + "abbreviation": "NDCAN", + "nameKr": "n-데칸", "nameEn": "n-Decane", + "synonymsKr": "데실 하이드라이드 / 노말 데실 하이드라이드 / 노말-데케인", "synonymsEn": "Decane / N-DECANE / Decan / n-Decan / n-Decane, 99.5% / n-Decane for synthesis / DECANE / n-C10H22 / N- Decano / ALKANE C10 / Decane >", - "synonymsKr": "N-데칸 / N-데칸 / 노르말데칸 / 데케인", "unNumber": "2247", "casNumber": "124-18-5", "transportMethod": "", "sebc": "", - "usage": "윤활유, 연료 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "usage": "세제, 소독제. 방염제, 난연제, 합성섬유 꺼 험 해 류 위 유 분 인화성액체 (구분3 몰질특성", + "state": "액체", + "color": "무색", + "odor": "가솔린 냄새", + "flashPoint": "50*C", + "autoIgnition": "205℃", + "boilingPoint": "169-172℃", + "density": "0.73", + "solubility": "0.052mg/L(25r)", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "4.9", + "explosionRange": "0.8~5.4%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "해양환경관리법/기름", "ergNumber": "", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유 (F)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 - 신선한 곳으로 이동, 긴급 의료조치, 산소공급, 인공호흡 피부접촉 • 비누와 물로 씻을 것, 화상의경우 다량의찬물로 씻을 것,의료조치 안구접촉 - 긴급 의료조치, 20분 이상 흐르는 물에 씻을 것 경구섭취 •긴급의료조치 초동 대응방법 대응장비 보호복 호흡구 보안경 보호장갑 3,4형식 (C급) 방독마스크(반면,전면) O O 기타장비 열화상카메라 초기 이격거리 (m) 50 방호거리 (m) 300 해상유출시 > 유출물질은 인화성 물질로 화재위험성이 있으며, 모든 출동세력 풍상에 위치, 최소 bOm 이격거리 유지, 주변선박 통제 (홈연, 불꼬, 스파크 등 모든 점화원 제거) ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 챡용, 증기홉입과 피부와 눈에 저촉을 피 할것 ► 유출물질은 부유하므로 방제조치 필요 (오‘길팬스 설치, 유흡착재 이용 홈착회수) > 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 화재 시대피거리(m) 800 + 화재 ■폭발시 > 유출물질은 연소시 유독가스 방출, 풍상에 위치, 최소 이격거리 유지하고 내알콜포 이용 화재진압 ■’ 열화상카메라 운용(결과전파), 소화포 이용", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -54721,87 +34279,25 @@ { "code": "DCAN", "name": "n-Decane", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 799, - "abbreviation": "NDCAN", - "nameKr": "n-데칸", - "nameEn": "n-Decane", - "synonymsEn": "Decane / N-DECANE / Decan / n-Decan / n-Decane, 99.5% / n-Decane for synthesis / DECANE / n-C10H22 / N- Decano / ALKANE C10 / Decane >", - "synonymsKr": "N-데칸 / N-데칸 / 노르말데칸 / 데케인", - "unNumber": "2247", - "casNumber": "124-18-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "NDCAN", "name": "n-Decane", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 800, + "id": 434, "abbreviation": "NDA", "nameKr": "1-데카놀", "nameEn": "n-Decyl alcohol", - "synonymsEn": "1-Decanol / 1-DECANOL / DECANOL / DECAN-1-OL / Antak / N-DECANOL / n-decyl / Exxal 10 / ALCOHOL C10 / n-Decan-1-ol / CAPRIC ALCOHOL", "synonymsKr": "데실 알코올 / 1-데카놀 / 데실알코올 / 데실알코올 / 1-데칸올 / 1차 데킬 알코올 / C-10 알코올 / EPAL 10 / n-데실 알코올 / N-데카틸 알코올 / N-데칸올 / N-데킬 알코올 / T 148 / 노닐카빈올 / 데실 알코올 / 데칸올 / 데킬 알코올 / 디톨 S-91 / 시폴 L 10 / 안타크 / 알코올 C-10", + "synonymsEn": "1-Decanol / 1-DECANOL / DECANOL / DECAN-1-OL / Antak / N-DECANOL / n-decyl / Exxal 10 / ALCOHOL C10 / n-Decan-1-ol / CAPRIC ALCOHOL", "unNumber": "", "casNumber": "112-30-1", "transportMethod": "", @@ -54857,19 +34353,19 @@ { "code": "NDA", "name": "n-Decyl alcohol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 801, + "id": 435, "abbreviation": "NDL232", "nameKr": "알코올 에툭실레이트", "nameEn": "Neodol 23-2", - "synonymsEn": "C12-13 PARETH-3 / DAN100 / Tomadol 23-1 / Tomadol 23-3 / Tomadol 23-6.5 / C12-13 PARETH-9 / C12-13 PARETH-7 / C12-13 PARETH-6 / C12-13 PARETH-15 / C12-13 PARETH-10 / Alcohols, C12-13, ethoxylated", "synonymsKr": "알코올, C12-13, 에톡실산화 / 알코올,C12-13,에톡실산화 / 알코올,C12-13,에톡실산화(ALCOHOLS,C12-13,ETHOXYLATED) / C12-13파레스-2 / C12-13파레스-3 / C12-13파레스-5 / C12-13파레트-3", + "synonymsEn": "C12-13 PARETH-3 / DAN100 / Tomadol 23-1 / Tomadol 23-3 / Tomadol 23-6.5 / C12-13 PARETH-9 / C12-13 PARETH-7 / C12-13 PARETH-6 / C12-13 PARETH-15 / C12-13 PARETH-10 / Alcohols, C12-13, ethoxylated", "unNumber": "", "casNumber": "66455-14-9", "transportMethod": "", @@ -54925,194 +34421,58 @@ { "code": "NDL232", "name": "Neodol 23-2", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 802, - "abbreviation": "NDL253", - "nameKr": "알코올 에툭실레이트", - "nameEn": "Neodol 25-3", - "synonymsEn": "C12-15 PARETH-2 / AEC-9NA / Primary Alcobol Ethoxylate / C12-15 PARETH-9 / Alcohols, C12-15, ethoxylated / C12-15 PARETH-3 / C12-15 PARETH-12 / C12-15 PARETH-10 / Neodol-12 / Tomadol 25-9 / AEO-3,Mw ~315", - "synonymsKr": "직선상의 에톡시산 알코올 (C12-C15) / 직선상의에톡시산알코올(C12-C15) / 직선상의에톡실산알코올(C12-C15) / 직선상의에톡실산알코올(C12-C15) / C12-15파레스-10 / C12-15파레스-11 / C12-15파레스-12 / C12-15파레스-2 / C12-15파레스-3 / C12-15파레스-4 / C12-15파레스-5 / C12-15파레스-7 / C12-15파레스-9 / C12-15파레트-2", - "unNumber": "", - "casNumber": "68131-39-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NDL253", - "name": "Neodol 25-3", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 803, - "abbreviation": "NDL257", - "nameKr": "알코올 에툭실레이트", - "nameEn": "Neodol 25-7", - "synonymsEn": "C12-15 PARETH-2 / AEC-9NA / Primary Alcobol Ethoxylate / C12-15 PARETH-9 / Alcohols, C12-15, ethoxylated / C12-15 PARETH-3 / C12-15 PARETH-12 / C12-15 PARETH-10 / Neodol-12 / Tomadol 25-9 / AEO-3,Mw ~315", - "synonymsKr": "직선상의 에톡시산 알코올 (C12-C15) / 직선상의에톡시산알코올(C12-C15) / 직선상의에톡실산알코올(C12-C15) / 직선상의에톡실산알코올(C12-C15) / C12-15파레스-10 / C12-15파레스-11 / C12-15파레스-12 / C12-15파레스-2 / C12-15파레스-3 / C12-15파레스-4 / C12-15파레스-5 / C12-15파레스-7 / C12-15파레스-9 / C12-15파레트-2", - "unNumber": "", - "casNumber": "68131-39-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NDL257", - "name": "Neodol 25-7", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 804, + "id": 436, "abbreviation": "NPG", "nameKr": "디메틸프로판디올", "nameEn": "Neopentyl glycol", - "synonymsEn": "neopentyl glycol / NEOPENTYL GLYCOL / 2,2-Dimethylpropane-1,3-diol / 1,3-Dihydroxy-2,2-dimethylpropane / NEOPENTYL GLYCO / Neol / NPG Glycol / 2,2-Dimethyl-1 / NEOPENTYLENE GLYCOL / 2,2-BIS(HYDROXYMETHYL)PROPANE / NEOL®", - "synonymsKr": "네오펜틸 글리콜 / 네오펜틸글리콜 / 네오펜틸글라이콜 / 네오펜틸글리콜 / 2,2-디메틸-1,3-프로판디올 / 디메틸트리메틸렌 글리콜", + "synonymsKr": "테트라나이트로메테인 / NPG 슬러리 / 네오펜틸글리콜", + "synonymsEn": "neopentyl glycol / NEOPENTYL GLYCOL / 2,2-Dimethylpropane-1,3-diol / 1,3-Dihydroxy-2,2-dimethylpropane / NEOPENTYL GLYCO / Neol / NPG Glycol / 2,2-Dimethyl-1 / NEOPENTYLENE GLYCOL / 2,2-BIS(HYDROXYMETHYL)PROPANE / NEOL® / 2,2-Dimethyl-1,3-propanediol / Dimethyltrimethylene glycol / Neopentyl glycol / 1,3-propanediol, 2,2-dimethyl-, 2,2-dimethyl-1,3-propanediol, C5H12O2, NPG, NPG alcohol, Neol, dimethylolpropane, dimethyltrimethylene glycol, / neopentylene glycol", "unNumber": "", "casNumber": "126-30-7", - "transportMethod": "", - "sebc": "", + "transportMethod": "산적액체(Z류)", + "sebc": "D (Dissolver)", "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "state": "액체", + "color": "무색", + "odor": "달콤한 냄새", + "flashPoint": "113.5℃", + "autoIgnition": "388℃", + "boilingPoint": "210℃", + "density": "1.1", + "solubility": "10.3 g/L (20℃)", + "vaporPressure": "(물 23.8mmHg)", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Z", "ergNumber": "", - "idlh": "", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", + "responseDistanceFire": "800m", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "침강용해 (SD)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "피부/안구 자극, 호흡기 자극", + "firstAid": "흡입노출 • 신선한 곳으로 이동, 인공호흡, 산소공급 피부접촉 • 화상의 경우 다량의 찬물로 씻을 것, 긴급 의료조치, 20분 이상 물로 씻을 것 안구접촉 • 긴급 의료조치, 20분 이상 흐르는 물에 씻을 것 경구섭취 •긴급 의료조치 초동대옹방법 대응잠비 보호복 호홉구 보안경 보호장갑 기타장비 3,4형식 (C급) 방독마스크(반면.전면) O O 열화상카메라 초기 이격거리{m) 자료없음 방호거리(m) 자료없음 해상유출시 ’ 유출물질은 피부에 자극을 일으킬 수 있으므로 모든 출동세력 풍상에 위치, 최소 이격거리 유지, 주변선박 통제 ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 최소 3.4형식 보호의 착용, 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 침강, 용해되므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지. 안전확보 시까지 지속적인 모니터링 화재 시대피거리(m) 800 + 화재 •폭발시 > 유출물질은 연소시 유독가스 방출, 풍상에 위치. 최소 이격거리 유지하고 내알콜포 이용 화재진압 ► 열화상카메라 운용(결과전파), 소화포 이용 사고선 냉각조치 할 것 ► 직수분사 금지(화재를 번지게 할 수 있음) > 안전이 확", + "fireFighting": "내알코올 포말/분무주수/CO₂.", + "spillResponse": "흡수제로 회수. 주변 통제.", + "exposure": "TWA 3,200 mg/㎥", "regulation": "" }, "ibcHazard": "", @@ -55121,707 +34481,27 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-D", + "emsFire": "F-A", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "NPG", "name": "Neopentyl glycol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 805, - "abbreviation": "NEAMN", - "nameKr": "모노에탄올아민", - "nameEn": "n-Ethanol amine", - "synonymsEn": "Monoethanolamine / MONOETHANOLAMINE / 2-Aminoethan-1-ol / 2-AMINOETHANOL / Olamine / Aminoethanol / GLYCINOL / 2-Ethanolamine / 2-HYDROXYETHYLAMINE / Ethanolamine, 99%, H2O 0.5% max / MEA 90", - "synonymsKr": "에탄올아민 / 2-아미노에탄올 / 2-아미노에타놀 / 2-에타놀아민 / 글리시놀 / 아미노에타놀 / 콜올아민 / 2-히드록시에탄아민 / 2-히드록시에틸아민 / 모노에타놀아민 / 베타-아미노에타놀 / 베타-아미노에틸알코올 / 베타-에타놀아민 / 베타-히드록시에틸아민 / 에타놀,2-아미노- / 에탄올아민 / 에틸올아민 / 모노에탄올아민 / 2-하이드록시에틸아민 / 콜라민", - "unNumber": "2491", - "casNumber": "141-43-5", - "transportMethod": "", - "sebc": "", - "usage": "가스 세정, 세제, 계면활성제, 유화제, 광택제 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NEAMN", - "name": "n-Ethanol amine", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 806, - "abbreviation": "N150R", - "nameKr": "베이스 오일", - "nameEn": "Neutral oil 150R", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 디메칠설폭사이드(DMSO)로추출한성분을3%초과하여함유하고있는석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 유압유체", - "unNumber": "", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "N150R", - "name": "Neutral oil 150R", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 807, - "abbreviation": "N240R", - "nameKr": "베이스 오일", - "nameEn": "Neutral oil 240R", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 디메칠설폭사이드(DMSO)로추출한성분을3%초과하여함유하고있는석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 유압유체", - "unNumber": "", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "N240R", - "name": "Neutral oil 240R", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 808, - "abbreviation": "N500R", - "nameKr": "베이스 오일", - "nameEn": "Neutral oil 500R", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 디메칠설폭사이드(DMSO)로추출한성분을3%초과하여함유하고있는석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 유압유체", - "unNumber": "", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "N500R", - "name": "Neutral oil 500R", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 809, - "abbreviation": "N600R", - "nameKr": "베이스 오일", - "nameEn": "Neutral oil 600R", - "synonymsEn": "distillates (petroleum) hydrotreated heavy paraffinic heavy paraffinic distillate hydrotreated, mineral oil petroleum distillates hydrotreated heavy paraffinic petroleum distillates hydrotreated heavy paraffinic", - "synonymsKr": "수소처리된 중질 파라핀 정제유 (석유) / 수소처리된중질파라핀정제유(석유) / 윤활유 / 하이드로처리된중파라핀증류액 / 수소처리된중질파라핀정제유(석유) / 디메칠설폭사이드(DMSO)로추출한성분을3%초과하여함유하고있는석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 석유유래물질(Distillates(petroleum),hydrotreatedheavyparaffinic) / 유압유체", - "unNumber": "", - "casNumber": "64742-54-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "N600R", - "name": "Neutral oil 600R", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 810, - "abbreviation": "NHPTN", - "nameKr": "노르말헵탄", - "nameEn": "n-Heptane", - "synonymsEn": "Heptane / N-HEPTANE / heptanes / Heptan / 1-HEPTANE / NORMAL HEPTANE / Aliphatic hydrocarbon / Gettysolve-C / Dipropylmethane / heptane(n-heptane) / Eptani", - "synonymsKr": "헵테인 / 노르말헵탄 / 노르말헵탄(NORMALHEPTANE) / 헵탄 / 헵테인 / 헵테인(헵탄) / n-헵탄", - "unNumber": "1206", - "casNumber": "142-82-5", - "transportMethod": "", - "sebc": "", - "usage": "고무 생산 및 가고처리 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NHPTN", - "name": "n-Heptane", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 811, - "abbreviation": "NHXN", - "nameKr": "n-헥산", - "nameEn": "n-Hexane", - "synonymsEn": "Hexane / n-Hexane / HEXANES / 1-HEXANE / n-Hexan / dipropyl / NAPHTHA SOLVENT / ISOHEXANES / n-Hexane, HPLC, 95.0% min. / OXFORD / HEXANES HPLC", - "synonymsKr": "노르말헥산 / 헥산 / 노르말헥산 / 노말헥세인 / 메틸(2-)펜탄 / 헥산95% / 헥산98% / 헥산99% / 헥산(HEXANE) / N-헥산 / 헥산 / 헥실수소화물 / 노말헥산 / N-헥세인 / 노멀 헥세인", - "unNumber": "", - "casNumber": "110-54-3", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NHXN", - "name": "n-Hexane", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 812, - "abbreviation": "NHXNL", - "nameKr": "n-헥사놀", - "nameEn": "n-Hexanol", - "synonymsEn": "1-Hexanol / HEXANOL / N-HEXANOL / HEXYL ALCOHOL / HEXAN-1-OL / 1-Hexenol / ALCOHOL C6 / 1-Hexyl alcohol / N-HEXYL ALCOHOL / FEMA 2567 / AMYLCARBINOL", - "synonymsKr": "헥사놀(1-) / N-헥산올 / 헥사놀(1-) / 헥산올 / 헥실알코올 / 아밀카빈올 / 카프로일알코올 / 헥산올 / 펜틸알코올 / 1-하이드록시헥 / 헥실알코올 / 1-헥산올", - "unNumber": "", - "casNumber": "111-27-3", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NHXNL", - "name": "n-Hexanol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 813, - "abbreviation": "NPOL", - "nameKr": "", - "nameEn": "Niax polyol", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NPOL", - "name": "Niax polyol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 814, - "abbreviation": "NBZN", - "nameKr": "", - "nameEn": "Nitrobenzene", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "T", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12, 15.17, 15.19, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NBZN", - "name": "Nitrobenzene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 815, + "id": 437, "abbreviation": "NETN", "nameKr": "나트로에탄", "nameEn": "Nitroethane", - "synonymsEn": "Nitroethane / C2H5NO2 / 1-Nitroethane / Nitroparaffin / nitro-ethan / Ethane,nitro- / 2-Nitroethane / Nitroethane,99% / nitroetan(polish) / NITROETHANE,REAGENT / Nitroetan", "synonymsKr": "니트로에탄 / 나이트로에테인 / 니트로에탄 / 나이트로에탄", + "synonymsEn": "Nitroethane / C2H5NO2 / 1-Nitroethane / Nitroparaffin / nitro-ethan / Ethane,nitro- / 2-Nitroethane / Nitroethane,99% / nitroetan(polish) / NITROETHANE,REAGENT / Nitroetan", "unNumber": "", "casNumber": "79-24-3", "transportMethod": "", @@ -55864,11 +34544,11 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "R", "ibcFireFighting": "ABC(f)", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6, 16.6.1, 16.6.2, 16.6.4", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6,\n16.6.1, 16.6.2, 16.6.4", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -55877,87 +34557,19 @@ { "code": "NETN", "name": "Nitroethane", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 816, - "abbreviation": "NPROPANE", - "nameKr": "1-니트로프로판", - "nameEn": "Nitropropane", - "synonymsEn": "1-Nitropropane / 1-NP / ai3-02264 / n-C3H7NO2 / 1-Nitropro / 1-Nitropan / NiPar S-10 / 1-nitro-propan / 1-NITROPROPANE / N-Nitropropane / Propane,1-nitro-", - "synonymsKr": "1-니트로프로판 / 1-나이트로프로판 / 1-나이트로프로페인(1-니트로프로판) / 1-니트로프로판", - "unNumber": "", - "casNumber": "108-03-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NPROPANE", - "name": "Nitropropane", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 817, + "id": 438, "abbreviation": "NMEAMN", "nameKr": "n-메틸에탄올아민", "nameEn": "n-Methyl ethanolamine", - "synonymsEn": "2-Methylaminoethanol / 2-(METHYLAMINO)ETHANOL / N-METHYLETHANOLAMINE / Ethanol, 2-(methylamino)- / N-Methylaminoethanol / Methylethanolamine / Methylaminoethanol / METHYLETHYLOLAMINE / N-Methyl-2-hydroxyethylamine / CL045 / Sar-OL", "synonymsKr": "N-메틸에탄올아민 / 2-메틸아미노에탄올 / N-메틸에탄올아민 / 2-(메틸아미노)에탄올 / 메틸에탄올아민 / (2-하이드록시에틸)메틸아민 / (하이드록시에틸)메틸아민 / 2-(N-메틸아미노)에탄올 / 2-하이드록시-N-메틸에틸아민 / 메틸(베타-하이드록시에틸)아민 / 베타-(메틸아미노)에탄올 / 에탄올, 2-(메틸아미노)-", + "synonymsEn": "2-Methylaminoethanol / 2-(METHYLAMINO)ETHANOL / N-METHYLETHANOLAMINE / Ethanol, 2-(methylamino)- / N-Methylaminoethanol / Methylethanolamine / Methylaminoethanol / METHYLETHYLOLAMINE / N-Methyl-2-hydroxyethylamine / CL045 / Sar-OL", "unNumber": "", "casNumber": "109-83-1", "transportMethod": "", @@ -56013,155 +34625,19 @@ { "code": "NMEAMN", "name": "n-Methyl ethanolamine", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 818, - "abbreviation": "NNNAN", - "nameKr": "n-노난", - "nameEn": "n-Nonane", - "synonymsEn": "N-NONANE / NONANE / 1-NONANE / n-C9H20 / nonanes / N-NONANE / ALKANE C9 / Nonane>NONANE(SG) / shellsol140 / #nn-Nonane", - "synonymsKr": "노르말노난 / N-노네인 / 노난 / 노르말노난 / 노네인 / n-노난", - "unNumber": "", - "casNumber": "111-84-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NNNAN", - "name": "n-Nonane", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 819, - "abbreviation": "NNN", - "nameKr": "n-노난", - "nameEn": "n-Nonene", - "synonymsEn": "N-NONANE / NONANE / 1-NONANE / n-C9H20 / nonanes / N-NONANE / ALKANE C9 / Nonane>NONANE(SG) / shellsol140 / #nn-Nonane", - "synonymsKr": "노르말노난 / N-노네인 / 노난 / 노르말노난 / 노네인 / n-노난", - "unNumber": "", - "casNumber": "111-84-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NNN", - "name": "n-Nonene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 820, + "id": 439, "abbreviation": "NNNA", "nameKr": "n-노난올", "nameEn": "n-Nonyl alcohol", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "", "casNumber": "143-08-8", "transportMethod": "", @@ -56217,19 +34693,19 @@ { "code": "NNNA", "name": "n-Nonyl alcohol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 821, + "id": 440, "abbreviation": "NP40", "nameKr": "에톡실레이티드 노닐페놀", "nameEn": "Nonidet NP40", - "synonymsEn": "Nonylphenol Ethoxylate / Ethoxylated nonylphenol / NP 40 / ethyleneoxy / TX-9 / Nonoxinol / Nonylphenol polyoxyethylene ether / Nonylphenol polyethylene glycol ether / P40 / TX-5 / TX-6", "synonymsKr": "에톡실레이티드 노닐페놀(EO-10) / 에톡실레이티드노닐페놀(EO-10) / 에톡실산화노닐페놀(EO-9) / 노닐페놀(N.P)#8 / 폴리에틸렌 글라이콜 노닐페닐 에테르 / 노닐페녹시폴리(에틸렌옥시)에탄올", + "synonymsEn": "Nonylphenol Ethoxylate / Ethoxylated nonylphenol / NP 40 / ethyleneoxy / TX-9 / Nonoxinol / Nonylphenol polyoxyethylene ether / Nonylphenol polyethylene glycol ether / P40 / TX-5 / TX-6", "unNumber": "", "casNumber": "9016-45-9", "transportMethod": "", @@ -56285,602 +34761,126 @@ { "code": "NP40", "name": "Nonidet NP40", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 822, + "id": 441, "abbreviation": "NPHEN", "nameKr": "노닐페놀", "nameEn": "Nonyl phenol", - "synonymsEn": "NONYLPHENOL / 1-Dodecanethio / 4-Nonylphenol ers / NONYLPHENOL, TECH. / 4-Nonylphenol 4-Nonylphenol,tech. / BRANCHED4-NONYLPHENOL / 4-nonyl-phenobranched / Branchedp-nonylphenol / branched(mixedisomers) / C9-Branchedalkylphenol", - "synonymsKr": "노닐페놀, 4-가지형 / 4-노닐페놀,가지형 / 노닐페놀,4-가지형 / 노닐페놀류 / 페놀,4-노닐-,가지형 / 4-노닐페놀,가지형[2] / 가지있는 4-노닐페놀 / 4-노닐페놀, 가지형 / C9 가지형 알킬페놀 / p-노닐페놀 가지형", - "unNumber": "", - "casNumber": "84852-15-3", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", + "synonymsKr": "NP-8 / 페놀, 노닐- / Hydroxy No.253", + "synonymsEn": "NONYLPHENOL / 1-Dodecanethio / 4-Nonylphenol ers / NONYLPHENOL, TECH. / 4-Nonylphenol 4-Nonylphenol,tech. / BRANCHED4-NONYLPHENOL / 4-nonyl-phenobranched / Branchedp-nonylphenol / branched(mixedisomers) / C9-Branchedalkylphenol / Hydroxy No. 253 / NONYL PHENOL / p-Nonylphenol, branched / NONYL PHENOL (MIXED ISOMERS) / NP (Abbreviation) / PHENOL, NONYL- / PREVOSTSEL VON-100 / o-2, 6-dimethyl-4-heptylphenol / p-2, 6-dimethyl-4-heptylphenol / p-nonyl phenol / o-nonylphenol (CAS RN 136-83-4) / m-nonylphenol (CAS RN 139-84-4)", + "unNumber": "3145", + "casNumber": "25154-52-3", + "transportMethod": "포장(Z류)", + "sebc": "FE (Float-Evaporator)", + "usage": "계면활성제. 합성세제, 가소제, 살균제, 접착제 험 험 해 류 위 유 분 급성독성-경구(구분4) 피부부식성/자극성(구분1) 심한 눈 손상성/자극성(구분1) 생식독성(구분2) 급성 수생환경 유해성(구분1) 만성 수생환경 유해성(구분1)", + "state": "액체", + "color": "연노랑", + "odor": "독특한 냄새", + "flashPoint": "148~165℃", + "autoIgnition": "148-155℃", + "boilingPoint": "293~297℃", + "density": "0.95", + "solubility": "0.006 g/L (25℃)", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "7.6", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 3, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", + "hazardClass": "독성, 해상수거 곤란", + "ergNumber": "153", + "idlh": "0 분)", + "aegl2": "2,000 mg/㎥", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "부유 (F)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "독성, 피부/안구 자극, 생식독성 우려", + "firstAid": "흡입노출 • 즉시 의료조치 물질특성 I 인체 유해성 화재 주 침강 저 용해 ; 증발 증기멸도 급성독성 TWA(8 시간) (위험성) : (몰=1) (믈) ■ (暑중기압) (공기=1) 경구 (LD50) 경피 (LD50) 흡입 (LC50) 노출기준 O (낮음) X O (낮음) o (낮음) 높음 580 >2.000 자료없음 STEL(15 분) 자S 어仁’ 노술\" 자료어흐 인화점 148-155℃ 발화점 370“C mg/kg ng/kg IDLH(30 분) 직첩 위험농도 끓는점 293-297^ 수용해포 0.6g/L(25lC) 일반증상 피부와눈에심한자극 상온상태 점성 액체 색상 연노랑 홉입 점막과 기도자극, 심장혈관, 매스꺼움, 구토, 설사 냄새 독특한 냄새 비중 0.95 피부 화상, 염증, 홍반, 부어오름, 수포, 피부염 증기압 거의 없음 휘발성 낮음 안구 화상, 심한 눈 손상 점도 563cp(20℃) 증기밀도 7.59 경구 소화관 부식, 구역질, 구토, 설人h 복통 응급조치 피부접촉 • 물로 씻어낼 것. 긴급 의료조치, 뜨거운 물질의 경우 찬물로 식힐 것 안구접촉 . 몇 분간 물로 조심해서 씻을 것, 콘택트렌즈 제거 경구섭취 - 구강대구강 인공호흡 하지 말", + "fireFighting": "분무주수/포말/CO₂/건조분말.", + "spillResponse": "점화원 제거. 흡착재로 회수. 주변 해상 통제.", + "exposure": "TWA 580 mg/㎥, AEGL-2 2,000 mg/㎥, IDLH 250 mg/㎥", "regulation": "" }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "ibcHazard": "S/P", + "ibcShipType": "1", + "ibcTankType": "2G", + "ibcDetection": "C", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.12, 15.17, 15.19, 16.2.6,\n16.2.9", + "emsCode": "F-A, S-D", + "emsFire": "F-A", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "NPHEN", "name": "Nonyl phenol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 823, - "abbreviation": "NPPE", - "nameKr": "", - "nameEn": "Nonyl phenol poly ethoxylate", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NPPE", - "name": "Nonyl phenol poly ethoxylate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 824, - "abbreviation": "NOLFN10/13", - "nameKr": "", - "nameEn": "Normal olefins C10-13", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NOLFN10/13", - "name": "Normal olefins C10-13", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 825, - "abbreviation": "NPARA7", - "nameKr": "", - "nameEn": "NORPAR 7", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NPARA7", - "name": "NORPAR 7", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 826, - "abbreviation": "NPARA", - "nameKr": "", - "nameEn": "N-Paraffin", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NPARA", - "name": "N-Paraffin", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 827, - "abbreviation": "NPARA10/13", - "nameKr": "", - "nameEn": "n-Paraffin C10-13", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NPARA10/13", - "name": "n-Paraffin C10-13", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 828, - "abbreviation": "NPARA14", - "nameKr": "", - "nameEn": "n-Paraffin C14", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NPARA14", - "name": "n-Paraffin C14", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 829, - "abbreviation": "NPARA1417", - "nameKr": "", - "nameEn": "n-Paraffin C14-17", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NPARA1417", - "name": "n-Paraffin C14-17", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 830, + "id": 442, "abbreviation": "NPTN", "nameKr": "n-펜탄", "nameEn": "n-Pentane", + "synonymsKr": "Raw-C5 / N-펜탄 / 노말펜탄 / 아밀수화물", "synonymsEn": "Pentane / N-PENTANE / PETANE / Pentan / 1-Pentane / n-C5H12 / N-PENTAN / R601 / NP80 / PENTANE / Pentani", - "synonymsKr": "펜탄 / 펜탄 / N-펜탄 / 노르말펜탄 / 아밀수화물 / 펜테인(펜탄)", "unNumber": "1265", "casNumber": "109-66-0", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(2급), 산적액체(Y류)", + "sebc": "E (Evaporator)", "usage": "인공얼음, 플라스틱 발포제, 살충제", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "액체", + "color": "무색", + "odor": "휘", + "flashPoint": "-49r", + "autoIgnition": "309℃", + "boilingPoint": "36℃", + "density": "0.63", + "solubility": "0.04g/L(25℃)", + "vaporPressure": "53.3mmHg(18.5'C)", + "vaporDensity": "2.49", + "explosionRange": "1.5~7.8%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 4, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "128", + "idlh": "1500 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발 (E)", + "ppeClose": "근거리(레벨 A)", + "ppeFar": "원거리(레벨 C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", + "hazard": "고인화성, 증기운 폭발 위험, 해상 유출 시 증발(E)", + "firstAid": "흡입노출 • 신선한 곳으로 이동, 죡시 의료조치, 산소공급. 인공호흡 피부접촉 • 15분 이상 다량의 비누와 물로 씻을 것, 긴급 의료조치 안구접촉 • 15분 이상 다량의 물로 씻을 것, 의료조치 경구섭취 - 토하게 하지 말 것, 즉시 이료조치", + "fireFighting": "모든 점화원 제거, 복합가스탐지기 이용. 먼 곳에서 분무주수·드라이케미컬·CO2·포말 사용, 직사주수 금지. 사고선 냉각 및 예인 조치", + "spillResponse": "점화원 제거하고 주변 해상 통제. 분무 주수로 증기 억제. 해수에 유출 시 증발(E)되어 해상수거 불가. 안전 확보 시까지 지속 모니터링", + "exposure": "TWA 600 ppm, STEL 750 ppm, IDLH 1500 ppm", "regulation": "" }, "ibcHazard": "", @@ -56889,27 +34889,33 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "NPTN", "name": "n-Pentane", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PNTN", + "name": "Pentane", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 831, + "id": 443, "abbreviation": "NPACE", "nameKr": "n-프로필 아세테이트", "nameEn": "n-Propyl acetate", - "synonymsEn": "Propyl acetate / N-PROPYL ACETATE / PROPYL ETHANOATE / 1-Propyl acetate / ACETIC ACID PROPYL ESTER / n-Propyl acetate, 99% 1LT / FEMA 2925 / octanpropylu / PROPYLACETAT / Octan propylu / PROPYL ACETATE", "synonymsKr": "N- 프로필 아세테이트 / n-프로필아세트산 / 노말프로필아세테이트 / 초산프로필 / 아세트산프로필 / N-프로필아세트산(N.P.A.C) / 프로필아세테이트 / 초산프로필 / N- 프로필 아세테이트 / N-프로필 아세테이트 / 1-아세톡시프로페인 / 1-프로필 아세테이트 / 아세테이트, 프로필 / 아세트산 프로필 / 아세트산, n-프로필 에스터 / 아세트산, 프로필 에스터 / 프로필 에타노에이트", + "synonymsEn": "Propyl acetate / N-PROPYL ACETATE / PROPYL ETHANOATE / 1-Propyl acetate / ACETIC ACID PROPYL ESTER / n-Propyl acetate, 99% 1LT / FEMA 2925 / octanpropylu / PROPYLACETAT / Octan propylu / PROPYL ACETATE", "unNumber": "", "casNumber": "109-60-4", "transportMethod": "", @@ -56952,9 +34958,9 @@ "regulation": "" }, "ibcHazard": "P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "F", + "ibcDetection": "R", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.19.6", "emsCode": "", @@ -56965,19 +34971,93 @@ { "code": "NPACE", "name": "n-Propyl acetate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 832, + "id": 444, + "abbreviation": "PNOL", + "nameKr": "노말-프로필알콜", + "nameEn": "Propanol", + "synonymsKr": "노말 프로필 알콜 / 알코올, 프로필 / 오프탈 / 프로판올 / 프로필 알코올 / 2-메틸 에탄올", + "synonymsEn": "1-Propanol / PROPANOL / N-PROPANOL / PROPAN-1-OL / Propyl alcohol / N-PROPYL ALCOHOL / Propanol-1 / 1-Propyl alcohol / PROPANE-1-OL / n-Propan-1-ol / n-C3H7OH", + "unNumber": "1274", + "casNumber": "71-23-8", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "반도체나 LCD 등 IT 부품 세정액, 페인트나 잉크제거용도", + "state": "액체", + "color": "무색", + "odor": "에탄올 냄새", + "flashPoint": "2*", + "autoIgnition": "371.rc", + "boilingPoint": "gzzc", + "density": "0.81", + "solubility": "용해", + "vaporPressure": "21mmHg(25t)", + "vaporDensity": "2.1", + "explosionRange": "2.1~13.5%", + "nfpa": { + "health": 1, + "fire": 3, + "reactivity": 0, + "special": "" + }, + "hazardClass": "유해액체물질/Y", + "ergNumber": "129", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", + "msds": { + "hazard": "인화성, 해상수거 불가", + "firstAid": "흡입노출 • 의료조치. 산소공급, 인공호흡 __ 피부접촉 - 긴급 의료조치. 화상의 경우 다량의 찬물로 씻을 것, 물과 비누로 씻을 것 ‘’“조지 안구접촉 • 몇 분간 물로 씻을 것. 콘택트렌즈 제거, 긴급 의료조치 경구섭취 • 긴급 의료조치, 입을 씻어낼 것 초동 매응방법 대응장비 보호복 호홉구 보안경 보호장갑 기타장비 3.4형식 (C급) 방독마스크(반면,전면) 주 广, 연호 W 카메가 1형식 (1B) 공기호홉기 O ① 열화상카메라 초기 이격거리 (m) 50 방호거리 (m) 300 해상유출시 ► 유출물질은 고인화성 물질로 증기의 이동에 의한 폭발가능성이 높으며, 눈과 호홉기를 자극할 수 있으므로 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박 통제 (흡연, 불꽃, 스파크 등 모든 정화원 제거) ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 촤소 3,4형식 보호의 착용(사고선 근접 시 1B이상 착용). 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 용해되므로 방제조치 불필요 > 화학방제함 유출물질 농도 탐지, 안전확보 샤까지 지속적인 모니터링 화재 시대피거리(m) 800 + 화재 •폭발시 >", + "fireFighting": "내알코올성 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제. 분무주수.", + "exposure": "TWA 200 ppm, STEL 250 ppm", + "regulation": "" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "NPA", + "name": "n-Propyl alcohol", + "company": "국제공통", + "source": "적부도" + }, + { + "code": "PNOL", + "name": "Propanol", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 445, "abbreviation": "NPAMN", "nameKr": "n-프로필아민", "nameEn": "n-Propylamine", - "synonymsEn": "Propylamine / PA / N-PROPYLAMINE / Propanamine / 1-PROPANAMINE / MNPA / 1-Propylamine / n-Propylaminwe / MONO-N-PROPYLAMINE / HPS9 / BLOS6", "synonymsKr": "프로필아민 / 프로필아민 / n-프로필아민 / 1-프로판아민 / 1-아미노프로판 / MPA / 모노프로필아민 / 프로판-1-아민", + "synonymsEn": "Propylamine / PA / N-PROPYLAMINE / Propanamine / 1-PROPANAMINE / MNPA / 1-Propylamine / n-Propylaminwe / MONO-N-PROPYLAMINE / HPS9 / BLOS6", "unNumber": "", "casNumber": "107-10-8", "transportMethod": "", @@ -57020,9 +35100,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "C", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12, 15.17, 15.19", "emsCode": "", @@ -57033,87 +35113,19 @@ { "code": "NPAMN", "name": "n-Propylamine", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 833, - "abbreviation": "NUSUN", - "nameKr": "해바라기유", - "nameEn": "NU Sunflower", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "1", - "casNumber": "8001-21-6", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NUSUN", - "name": "NU Sunflower", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 834, + "id": 446, "abbreviation": "NUD", "nameKr": "n-운데케인", "nameEn": "n-Undecane", - "synonymsEn": "n-Hendecane / UNDECANE / N-UNDECANE / HENDECANE / Undecan / ALKANE C11 / n-C11H24 / hendecan / 1-UNDECANE / Halpaclean / N-HENDECANE", "synonymsKr": "n-운데케인 / n-운데칸 / 운데칸 / n-운데케인 / 운데케인", + "synonymsEn": "n-Hendecane / UNDECANE / N-UNDECANE / HENDECANE / Undecan / ALKANE C11 / n-C11H24 / hendecan / 1-UNDECANE / Halpaclean / N-HENDECANE", "unNumber": "", "casNumber": "1120-21-4", "transportMethod": "", @@ -57169,19 +35181,19 @@ { "code": "NUD", "name": "n-Undecane", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 835, + "id": 447, "abbreviation": "NUTMG", "nameKr": "육두구 기름", "nameEn": "Nutmeg butter", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "8007-12-3", "transportMethod": "", @@ -57237,87 +35249,19 @@ { "code": "NUTMG", "name": "Nutmeg butter", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 836, - "abbreviation": "NVA", - "nameKr": "", - "nameEn": "n-Valeraldehyde", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NVA", - "name": "n-Valeraldehyde", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 837, + "id": 448, "abbreviation": "NYL6", "nameKr": "나일론", "nameEn": "Nylon 6 by 6 salt", - "synonymsEn": "Nylon 6/6 / Poly[imino(1,6-dioxo-1,6-hexanediyl)imino-1,6-hexanediyl] / Nylon 66 powder / NYLON 6,6 POLYMERS / [-CO(CH2)4CONH(CH2)6NH-]n / POLY(HEXAMETHYLENE ADIPAMIDE) / POLY(HEXAMETHYLENE DODECANEDIAMIDE) / Nylon 6/6,Poly(N,N′-hexamethyleneadipinediamide, Poly(hexamethylene adipamide) / PA-66 / NYLON 6 / NYLON 6/6", - "synonymsKr": "나일론 6/6 / 나일론6/6 / 나일론66 / 나일론66 / 나일론-66", + "synonymsKr": "나일론 6 / 6 / 나일론6 / 6 / 나일론66 / 나일론66 / 나일론-66", + "synonymsEn": "Nylon 6 / 6 / Poly[imino(1,6-dioxo-1,6-hexanediyl)imino-1,6-hexanediyl] / Nylon 66 powder / NYLON 6,6 POLYMERS / [-CO(CH2)4CONH(CH2)6NH-]n / POLY(HEXAMETHYLENE ADIPAMIDE) / POLY(HEXAMETHYLENE DODECANEDIAMIDE) / Nylon 6 / 6,Poly(N,N′-hexamethyleneadipinediamide, Poly(hexamethylene adipamide) / PA-66 / NYLON 6 / NYLON 6 / 6", "unNumber": "", "casNumber": "32131-17-2", "transportMethod": "", @@ -57373,19 +35317,19 @@ { "code": "NYL6", "name": "Nylon 6 by 6 salt", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 838, + "id": 449, "abbreviation": "OCNBZN", "nameKr": "o-클로로니트로벤젠", "nameEn": "o-Chloronitrobenzene", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "88-73-3", "transportMethod": "", @@ -57428,11 +35372,11 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "T", + "ibcDetection": "C", "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.19, 16.2.6, 16.2.9", + "ibcMinRequirement": "15.12.3, 15.12.4, 15.19,\n16.2.6, 16.2.9", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -57441,19 +35385,19 @@ { "code": "OCNBZN", "name": "o-Chloronitrobenzene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 839, + "id": 450, "abbreviation": "OCRSL", "nameKr": "o-크레졸", "nameEn": "o-Cresol", - "synonymsEn": "o-Cresol / 2-METHYLPHENOL / Orthocresol / ortho-cresol / 2-Cresol / Phenol,2-methyl- / o-Creso / ORTHO CRESO / O-HYDROXYTOLUENE / 2-HYDROXYTOLUENE / 1-Methyl-2-hydroxybenzene", "synonymsKr": "O-크레졸 / O-크레졸 / O-크레솔 / 1-메틸-2-하이드록시벤젠 / 1-하이드록시-2-메틸벤젠 / 2-메틸페놀 / 2-크레졸 / 2-하이드록시-1-메틸벤젠 / 2-하이드록시톨루엔 / O-메틸페놀 / O-옥시톨루엔 / O-크레실산 / o-하이드록시톨루엔 / 오쏘-크레솔 / 크레솔, 오쏘 / 페놀, 2-메틸-", + "synonymsEn": "o-Cresol / 2-METHYLPHENOL / Orthocresol / ortho-cresol / 2-Cresol / Phenol,2-methyl- / o-Creso / ORTHO CRESO / O-HYDROXYTOLUENE / 2-HYDROXYTOLUENE / 1-Methyl-2-hydroxybenzene", "unNumber": "", "casNumber": "95-48-7", "transportMethod": "", @@ -57509,57 +35453,57 @@ { "code": "OCRSL", "name": "o-Cresol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 840, + "id": 451, "abbreviation": "OCTACID", "nameKr": "옥탄올", "nameEn": "Octanoic acid", - "synonymsEn": "1-Octanol / OCTANOL / N-OCTANOL / caprylic / OCTAN-1-OL / OCTYL ALCOHOL / N-OCTYL ALCOHOL / 1-Octano / N-CAPRYLIC ALCOHOL / Octilin / n-Octano", - "synonymsKr": "1-옥타놀 / 1-옥타놀 / 1-옥탄올 / 1-히드록시옥탄 / N-옥탄올 / 옥타놀-1 / 옥탄올 / 옥틸알코올 / 일차옥틸알코올 / 카프릴알코올 / 헵틸카빈올 / 카프릴릴알코올 / 1-하이드록시옥탄 / n-옥틸 알코올 / 옥틸 알코올 / 일차 옥틸 알코올 / 카프릴 알코올 / 헵틸 카빈올", - "unNumber": "", + "synonymsKr": "옥틸린 / 옥틸 알코올 / 카릴 알코올 / 카릴릭 알코올", + "synonymsEn": "1-Octanol / OCTANOL / N-OCTANOL / caprylic / OCTAN-1-OL / OCTYL ALCOHOL / N-OCTYL ALCOHOL / 1-Octano / N-CAPRYLIC ALCOHOL / Octilin / n-Octano / USEPA / OPP Pesticide Code: 079037 / ALCOHOL C-8 / ALFOL 8 / CAPRYL ALCOHOL / N-CAPRYL ALCOHOL / CAPRYLIC ALCOHOL / N-CAPRYLIC ALCOHOL / DYTOL M-83 / FEMA NUMBER 2800 / HEPTYL CARBINOL / 1-HYDROXYOCTANE / LOROL 20 / OCTANOL / N-OCTANOL / OCTAN-1-OL / N-OCTAN-1-OL / OCTILIN / OCTYL ALCOHOL / 1-OCTYL ALCOHOL / N-OCTYL ALCOHOL / OCTYL ALCOHOL, NORMAL-PRIMARY / PRIMARY OCTYL ALCOHOL / SIPOL L8 / Epal 8", + "unNumber": "1986", "casNumber": "111-87-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "E (Evaporator)", + "usage": "향수류, 화장품류의 제조 까 아 'S 심한 눈 손상성/자극성(구분2) 생식세포 변이원성(구분2) 특정표적장기독성(1회노출) -구분3(호횹기계 자극) 흡인 유해성(구분2)", + "state": "오일류 액체", + "color": "무색, 투명", + "odor": "오렌지-장미 냄새", + "flashPoint": "81℃", + "autoIgnition": "253℃", + "boilingPoint": "195℃", + "density": "0.83", + "solubility": "0.54 g/L (25℃)", + "vaporPressure": "(물 23.8mnHg)", + "vaporDensity": "4.49", + "explosionRange": "0.2~30%", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "131", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "부유 (F)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "인화성, 해상수거 곤란, 기화 증발(E)", + "firstAid": "흡입노출 • 산소공급, 인공호흡, 의료조치 피부접촉 • 20분간 흐르는 물에 씻을 것, 의료조치 안구접촉 • 몇 분간 물로 조심해서 씻어낼 것, 콘택트렌즈를 제거할 것, 의료조치 경구섭취 • 토하게 하지 말 것, 의료조치 초동대옹방법 대옹장바 해상유출시 + 화재 •폭발시 보호볶 호흡구 보안경 보호장갑 기타장바 3,4형식 (C급) 방독마스크(반면,전면) O O 열화상카메라 I 초기 이격거리(m) 50 방호거리(m) 300 ► 유출물질은 인체노출 시 눈. 호흡기 자극 등 유해성아 있으므로 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박통제 ► 출동 경비정(방제정) 사고선 접근 시 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용. 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 해상에 부유하므로 방제조치 찔요(오일펜스 설치 유출물질 확산방지, 유흡착재 등 이용 흡착회수) ► 화학방제함 유츌물질 농도 탐지, 안전확보 시까지 자속적인 모니터링 I 화재 시 대피거리(m) 而 ►유출물질은 연소시 유독가스 방출, 풍상에 위치, 최소 이격거리 유지하고 내알쿨포(소화포) 이용 화재진압 ► 열화상카메라 운용(결과전", + "fireFighting": "내알코올성 포말/분무주수/CO₂.", + "spillResponse": "점화원 제거. 주변 해상 통제. 증기운 이동 억제.", "exposure": "", "regulation": "" }, @@ -57569,271 +35513,79 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-D", + "emsFire": "F-E", + "emsSpill": "S-D", "emsFirstAid": "", "cargoCodes": [ { "code": "OCTACID", "name": "Octanoic acid", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 841, - "abbreviation": "OA", - "nameKr": "옥탄올", - "nameEn": "Octanol", - "synonymsEn": "1-Octanol / OCTANOL / N-OCTANOL / caprylic / OCTAN-1-OL / OCTYL ALCOHOL / N-OCTYL ALCOHOL / 1-Octano / N-CAPRYLIC ALCOHOL / Octilin / n-Octano", - "synonymsKr": "1-옥타놀 / 1-옥타놀 / 1-옥탄올 / 1-히드록시옥탄 / N-옥탄올 / 옥타놀-1 / 옥탄올 / 옥틸알코올 / 일차옥틸알코올 / 카프릴알코올 / 헵틸카빈올 / 카프릴릴알코올 / 1-하이드록시옥탄 / n-옥틸 알코올 / 옥틸 알코올 / 일차 옥틸 알코올 / 카프릴 알코올 / 헵틸 카빈올", - "unNumber": "", - "casNumber": "111-87-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "OA", "name": "Octanol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 842, - "abbreviation": "OCTN", - "nameKr": "알파옥텐", - "nameEn": "Octene", - "synonymsEn": "1-OCTENE / OCT-1-ENE / Octen / OCTEN-1 / Octylene / Neodene 8 / I-Octen / 1-C8H16 / 1-OCTENE / 1-0ctene / OCTENE-1", - "synonymsKr": "1-옥텐 / 1-옥틸렌 / 1-카프릴렌 / 알파옥텐 / 옥텐 / 옥틸렌 / 카프리렌 / N-1-옥텐 / 1-n-옥텐 / n-옥텐-1 / 알파-옥텐 / 알파-옥틸렌 / 옥트-1-엔 / 카프릴렌", - "unNumber": "1993 3295", - "casNumber": "111-66-0", - "transportMethod": "", - "sebc": "", - "usage": "플라스틱, 합성고무, 윤활유, 표면활성제 등 생산", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { - "code": "OCTN", - "name": "Octene", - "company": "", - "source": "화물적부도" + "code": "OXINOL", + "name": "Oxinol", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 843, - "abbreviation": "ODBZN", - "nameKr": "o-디클로로벤젠", - "nameEn": "o-Dichlorobenzene", - "synonymsEn": "1,2-Dichlorobenzene / O-DICHLOROBENZENE / ODCB / ORTHODICHLOROBENZENE / Chloroben / o-Dichlorbenzene / 2-dichlorobenzene / 1,2-Dichlorbenzene / Dichlorobenzene, o- / Dizene / Cloroben", - "synonymsKr": "1,2-디클로로벤젠 / 도우테름E / 벤젠,O-디클로로- / 0-다이클로로벤젠 / 1,2-디클로로벤젠 / 1벤젠,1,2-디클로로- / o-다이클로로벤젠 / o-디클로로벤젠 / O-디클로로벤젠,액체 / 클로로벤 / 디클로로벤젠 / O-다이클로로벤젠(1,2-다이클로로벤젠) / 1,2-다이클로로벤젠 / o-이염화벤젠", - "unNumber": "", - "casNumber": "95-50-1", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "ODBZN", - "name": "o-Dichlorobenzene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 844, + "id": 452, "abbreviation": "OLE113", "nameKr": "올레핀", "nameEn": "Olefin 113(Shell)", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "68514-35-2", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "F (Floater)", "usage": "", - "state": "", - "color": "", - "odor": "", + "state": "액체", + "color": "무색", + "odor": "은은한 냄새", "flashPoint": "", "autoIgnition": "", - "boilingPoint": "", + "boilingPoint": "235℃", "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", + "solubility": "불용", + "vaporPressure": "0.02 mmHg (25℃)", + "vaporDensity": "5.9", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "지속성 부유(F), 해상수거 필요", + "ergNumber": "171", "idlh": "", "aegl2": "", "erpg2": "", "responseDistanceFire": "", "responseDistanceSpillDay": "", "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "marineResponse": "해상부유, 흡착재 회수", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "경미한 피부/흡입 자극, 수생환경 유해", + "firstAid": "흡입: 신선한 공기. 피부/안구: 물 세척. 경구: 의료조치.", + "fireFighting": "포말/분무주수/CO₂.", + "spillResponse": "오일펜스/흡착재 회수.", "exposure": "", - "regulation": "" + "regulation": "CAS 68514-36-5 (C10-C13 혼합)" }, "ibcHazard": "", "ibcShipType": "", @@ -57841,95 +35593,27 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "OLE113", "name": "Olefin 113(Shell)", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 845, - "abbreviation": "OLSAFF", - "nameKr": "올리산이 많은 해바라기 오일", - "nameEn": "Oleric saflower", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "1", - "casNumber": "8001-21-6", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "OLSAFF", - "name": "Oleric saflower", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 846, + "id": 453, "abbreviation": "OLEALCH", "nameKr": "올레일 알코올", "nameEn": "Oleyl alcohol", - "synonymsEn": "Oleyl alcohol / Satol / oleyl / 9-OCTADECEN-1-OL / OLEIC ALCOHOL / (Z)-9-Octadecen-1-ol / (Z)-Octadec-9-en-1-ol / Olely Alcohol / Olive alcohol / 9-Octadecen-1-ol,(Z)- / 9-Octadecen-1-ol, (Z)-", "synonymsKr": "올레일알코올 / 오레일알코올 / (Z)-9-옥타데켄-1-올 / 9-시스-옥타데켄올 / 9-옥타데켄-1-올,(Z)- / 시스-9-옥타데켄-1-올 / 시스-9-옥타데켄올 / 시스-9-옥타데켄일알코올 / 시스-델타(9)-옥타데켄올 / 올레알코올 / 올레오알코올 / 올레오일알코올 / 올레올 / 올레일알코올 / 올레일알코올 / 올리브알코올", + "synonymsEn": "Oleyl alcohol / Satol / oleyl / 9-OCTADECEN-1-OL / OLEIC ALCOHOL / (Z)-9-Octadecen-1-ol / (Z)-Octadec-9-en-1-ol / Olely Alcohol / Olive alcohol / 9-Octadecen-1-ol,(Z)- / 9-Octadecen-1-ol, (Z)-", "unNumber": "", "casNumber": "143-28-2", "transportMethod": "", @@ -57985,19 +35669,19 @@ { "code": "OLEALCH", "name": "Oleyl alcohol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 847, + "id": 454, "abbreviation": "OLEPAL", "nameKr": "올레일팔미타마이드", "nameEn": "Oleyl palmilate", - "synonymsEn": "OLEYL PALMITATE / OLEYL PALMITATE / PALMITIC ACID OLEYL ESTER / (Z)-octadec-9-enyl palmitate / PALMITIC ACID OLEYL ESTER 99% / Palmitic acid (Z)-9-octadecenyl ester / 9-octadecenylester,(z)-hexadecanoicaci / Palmitic acid (9Z)-9-octadecenyl ester / Hexadecanoic acid (Z)-9-octadecenyl ester / Hexadecanoic acid, (9Z)-9-octadecen-1-yl ester", "synonymsKr": "올레일팔미타마이드 / 올레일팔미타마이드 / 올레팔미테이트", + "synonymsEn": "OLEYL PALMITATE / OLEYL PALMITATE / PALMITIC ACID OLEYL ESTER / (Z)-octadec-9-enyl palmitate / PALMITIC ACID OLEYL ESTER 99% / Palmitic acid (Z)-9-octadecenyl ester / 9-octadecenylester,(z)-hexadecanoicaci / Palmitic acid (9Z)-9-octadecenyl ester / Hexadecanoic acid (Z)-9-octadecenyl ester / Hexadecanoic acid, (9Z)-9-octadecen-1-yl ester", "unNumber": "", "casNumber": "2906-55-0", "transportMethod": "", @@ -58053,19 +35737,19 @@ { "code": "OLEPAL", "name": "Oleyl palmilate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 848, + "id": 455, "abbreviation": "OLIVE", "nameKr": "올리브 오일", "nameEn": "Olive oil", - "synonymsEn": "Olive oil / OLEA EUROPAEA (OLIVE) FRUIT OIL / OLIVE / OLIVE FRUIT EXTRACT / OLIVE POMACE OIL / OLIVE OIL, EXTRA VIRGIN / sweetoil / OLIVE OIL / Luccu oil / Cropure OL / OLIVEOIL,NF", "synonymsKr": "올리브오일 / 사탕기름 / 올리브기름 / 올리브오일 / 올리브유 / 올리브기름(OLIVEOIL) / 올리브불검화물 / 올리브 오일", + "synonymsEn": "Olive oil / OLEA EUROPAEA (OLIVE) FRUIT OIL / OLIVE / OLIVE FRUIT EXTRACT / OLIVE POMACE OIL / OLIVE OIL, EXTRA VIRGIN / sweetoil / OLIVE OIL / Luccu oil / Cropure OL / OLIVEOIL,NF", "unNumber": "", "casNumber": "8001-25-0", "transportMethod": "", @@ -58108,11 +35792,11 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2(k)TYPE", + "ibcShipType": "2(k)", "ibcTankType": "2G", - "ibcDetection": "No", + "ibcDetection": "O", "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7,\n16.2.9", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -58121,835 +35805,19 @@ { "code": "OLIVE", "name": "Olive oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 849, - "abbreviation": "OLA219", - "nameKr": "", - "nameEn": "OLOA 219M,219C", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "OLA219", - "name": "OLOA 219M,219C", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 850, - "abbreviation": "OLA273", - "nameKr": "", - "nameEn": "OLOA 237", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "OLA273", - "name": "OLOA 237", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 851, - "abbreviation": "OLA246B", - "nameKr": "", - "nameEn": "OLOA 246B", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "OLA246B", - "name": "OLOA 246B", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 852, - "abbreviation": "OLA246S", - "nameKr": "", - "nameEn": "OLOA 246S", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "OLA246S", - "name": "OLOA 246S", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 853, - "abbreviation": "OLA247Z", - "nameKr": "", - "nameEn": "OLOA 247Z", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "OLA247Z", - "name": "OLOA 247Z", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 854, - "abbreviation": "OLA249S", - "nameKr": "", - "nameEn": "OLOA 249S", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "OLA249S", - "name": "OLOA 249S", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 855, - "abbreviation": "OLA270", - "nameKr": "", - "nameEn": "OLOA 270", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "OLA270", - "name": "OLOA 270", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 856, - "abbreviation": "OLA271", - "nameKr": "", - "nameEn": "OLOA 271", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "OLA271", - "name": "OLOA 271", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 857, - "abbreviation": "OLA6125", - "nameKr": "", - "nameEn": "OLOA 6125", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "OLA6125", - "name": "OLOA 6125", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 858, - "abbreviation": "OLA758A", - "nameKr": "", - "nameEn": "OLOA 758A", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "OLA758A", - "name": "OLOA 758A", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 859, - "abbreviation": "OLN", - "nameKr": "", - "nameEn": "Olone", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "OLN", - "name": "Olone", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 860, - "abbreviation": "OMC586", - "nameKr": "", - "nameEn": "OMC586", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "OMC586", - "name": "OMC586", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 861, + "id": 456, "abbreviation": "ONTLN", "nameKr": "o-나트로톨루엔", "nameEn": "o-Nitrotoluene", - "synonymsEn": "2-Nitrotoluene / 1-METHYL-2-NITROBENZENE / O-NITROTOLUENE / ONT / 2NT / Ortho Nitrotoluene / 2-METHYLNITROBENZENE / nsc9577 / 2-Nitrotol / 88-72-2 ONT / o-itrotoluene", "synonymsKr": "니트로톨루엔 / 2-나이트로톨루엔 / 0-나이트로톨루엔(니트로톨루엔) / o-니트로톨루엔 / 니트로톨루엔 / 오르토니트로톨루엔 / 오르토메틸니트로벤젠 / O-니트로톨루엔 / 2-메틸니트로벤젠 / 니트로페닐메 / 2-니트로톨루엔 / 1-Methyl-2-nitrobenzene / o-Nitrotoluene", + "synonymsEn": "2-Nitrotoluene / 1-METHYL-2-NITROBENZENE / O-NITROTOLUENE / ONT / 2NT / Ortho Nitrotoluene / 2-METHYLNITROBENZENE / nsc9577 / 2-Nitrotol / 88-72-2 ONT / o-itrotoluene", "unNumber": "", "casNumber": "88-72-2", "transportMethod": "", @@ -59005,19 +35873,19 @@ { "code": "ONTLN", "name": "o-Nitrotoluene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 862, + "id": 457, "abbreviation": "OJUCS", "nameKr": "오렌지 주스 슬러리", "nameEn": "Orange juice slurry", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "68514-75-0", "transportMethod": "", @@ -59073,87 +35941,19 @@ { "code": "OJUCS", "name": "Orange juice slurry", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 863, - "abbreviation": "GA479R", - "nameKr": "", - "nameEn": "Oronte gasoline additive 479R", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "GA479R", - "name": "Oronte gasoline additive 479R", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 864, + "id": 458, "abbreviation": "OTDN", "nameKr": "o-톨루이딘", "nameEn": "o-Toluidine", - "synonymsEn": "o-Toluidine / 2-METHYLANILINE / ORTHO-TOLUIDINE / o-Toluidin / 2-Toluidine / 2-AMINOTOLUENE / toluidines / o-Tolylamine / o-Aminotoluene / o-Methylaniline / NSC 15348", "synonymsKr": "O-톨루이딘 / 2-아미노톨루엔 / 0-톨루이딘 / O-톨루이딘 / 오쏘-톨루이딘 / 2-톨루이딘 / o-톨루이딘 / 2-메틸아닐린 / 2-메틸벤즈아민 / 2-아미노톨루엔 / 1-아미노-2-메틸벤젠 / 2-메틸-1-아미노벤젠 / 2-메틸벤젠아민 / 2-메틸아닐린 / 2-메틸페닐아민 / 2-아미노-1-메틸벤젠 / 2-톨루이딘 / o-메틸벤젠아미나 / o-메틸아닐린 / o-아미노톨루엔 / o-톨리아민 / 벤젠아민. 2-메틸", + "synonymsEn": "o-Toluidine / 2-METHYLANILINE / ORTHO-TOLUIDINE / o-Toluidin / 2-Toluidine / 2-AMINOTOLUENE / toluidines / o-Tolylamine / o-Aminotoluene / o-Methylaniline / NSC 15348", "unNumber": "", "casNumber": "95-53-4", "transportMethod": "", @@ -59196,9 +35996,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "T", + "ibcDetection": "C", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.12, 15.17, 15.19", "emsCode": "", @@ -59209,87 +36009,19 @@ { "code": "OTDN", "name": "o-Toluidine", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 865, - "abbreviation": "OXINOL", - "nameKr": "옥탄올", - "nameEn": "Oxinol", - "synonymsEn": "1-Octanol / OCTANOL / N-OCTANOL / caprylic / OCTAN-1-OL / OCTYL ALCOHOL / N-OCTYL ALCOHOL / 1-Octano / N-CAPRYLIC ALCOHOL / Octilin / n-Octano", - "synonymsKr": "1-옥타놀 / 1-옥타놀 / 1-옥탄올 / 1-히드록시옥탄 / N-옥탄올 / 옥타놀-1 / 옥탄올 / 옥틸알코올 / 일차옥틸알코올 / 카프릴알코올 / 헵틸카빈올 / 카프릴릴알코올 / 1-하이드록시옥탄 / n-옥틸 알코올 / 옥틸 알코올 / 일차 옥틸 알코올 / 카프릴 알코올 / 헵틸 카빈올", - "unNumber": "", - "casNumber": "111-87-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "OXINOL", - "name": "Oxinol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 866, + "id": 459, "abbreviation": "PGMME", "nameKr": "폴리에틸렌글리콜 모노메틸 에테르", "nameEn": "P&G Mono methyl ether", - "synonymsEn": "Methoxypolyethylene glycols / MPEG / MPEG-OH / METHOXYPOLYETHYLENE GLYCOL / MEO-PEG-OH / POLYETHYLENE GLYCOL MONOMETHYL ETHER / MEO-PEG-COOH / POLYETHYLENE GLYCOL MONOMETHYL ETHER 550 / MPEG 500 / MPEG 2000 / MPEG 5000", "synonymsKr": "폴리에틸렌 글리콜 메틸 에테르 / 폴리에틸렌글리콜메틸에테르 / 폴리에틸렌글리콜메틸에테르(POLYETHYLENEGLYCOLMETHYLETHER) / 메톡시피이지-10 / 메톡시피이지-100 / 메톡시피이지-16 / 메톡시피이지-25 / 메톡시피이지-40 / 메톡시피이지-7 / 피이지-4메틸에터 / 피이지-6메틸에터 / 메톡시폴리에틸렌글리콜", + "synonymsEn": "Methoxypolyethylene glycols / MPEG / MPEG-OH / METHOXYPOLYETHYLENE GLYCOL / MEO-PEG-OH / POLYETHYLENE GLYCOL MONOMETHYL ETHER / MEO-PEG-COOH / POLYETHYLENE GLYCOL MONOMETHYL ETHER 550 / MPEG 500 / MPEG 2000 / MPEG 5000", "unNumber": "", "casNumber": "9004-74-4", "transportMethod": "", @@ -59345,19 +36077,19 @@ { "code": "PGMME", "name": "P&G Mono methyl ether", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 867, + "id": 460, "abbreviation": "PAHD", "nameKr": "p-아니스알데히드", "nameEn": "p-Aldehyde", - "synonymsEn": "p-Anisaldehyde / 4-Methoxybenzaldehyde / ANISALDEHYDE / ANISIC ALDEHYDE / P-METHOXYBENZALDEHYDE / PARA ANISIC ALDEHYDE / 4-ANISALDEHYDE / AUBEPINE / P-ANISIC ALDEHYDE / Benzaldehyde,4-methoxy- / Anisaldehyd", "synonymsKr": "아니스알데히드 / P-아니스알데하이드 / 4-메톡시벤즈알데하이드 / 4-메톡시벤즈알데히드 / 아니스알데히드 / 아니스알데하이드", + "synonymsEn": "p-Anisaldehyde / 4-Methoxybenzaldehyde / ANISALDEHYDE / ANISIC ALDEHYDE / P-METHOXYBENZALDEHYDE / PARA ANISIC ALDEHYDE / 4-ANISALDEHYDE / AUBEPINE / P-ANISIC ALDEHYDE / Benzaldehyde,4-methoxy- / Anisaldehyd", "unNumber": "", "casNumber": "123-11-5", "transportMethod": "", @@ -59413,291 +36145,19 @@ { "code": "PAHD", "name": "p-Aldehyde", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 868, - "abbreviation": "POME", - "nameKr": "팜산유", - "nameEn": "Palm acid oil", - "synonymsEn": "·palm butter, palm oil fatty acids", - "synonymsKr": "지방산, 팜오일 / 지방산,팜유", - "unNumber": "3082", - "casNumber": "68440-15-3", - "transportMethod": "", - "sebc": "", - "usage": "비누, 세제, 화장품, 바이오디젤 원료 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "No", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "POME", - "name": "Palm acid oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 869, - "abbreviation": "PCBR", - "nameKr": "팜코코아버터 대체제", - "nameEn": "Palm cocoa butter replacer", - "synonymsEn": "Glycerides, C10-18 / Glycerides, C10-18 / Glyceride, C10-18- / C10-18 TRIGLYCERIDES / Cocoa butter substitute / Glycerides, C10-18 USP/EP/BP / 85665-33-4 Glycerides, C10-18", - "synonymsKr": "C10-18트라이글리세라이즈 / C10-18트라이글리세라이즈", - "unNumber": "", - "casNumber": "85665-33-4", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PCBR", - "name": "Palm cocoa butter replacer", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 870, - "abbreviation": "PFA", - "nameKr": "팜 지방산", - "nameEn": "Palm fatty acid", - "synonymsEn": "·palm butter, palm oil fatty acids", - "synonymsKr": "지방산, 팜오일 / 지방산,팜유", - "unNumber": "3082", - "casNumber": "68440-15-3", - "transportMethod": "", - "sebc": "", - "usage": "비누, 세제, 화장품, 바이오디젤 원료 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PFA", - "name": "Palm fatty acid", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 871, - "abbreviation": "PFAR", - "nameKr": "팜유 지방산 잔류물", - "nameEn": "Palm fatty acid residues", - "synonymsEn": "·palm butter, palm oil fatty acids", - "synonymsKr": "지방산, 팜오일 / 지방산,팜유", - "unNumber": "3082", - "casNumber": "68440-15-3", - "transportMethod": "", - "sebc": "", - "usage": "비누, 세제, 화장품, 바이오디젤 원료 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PFAR", - "name": "Palm fatty acid residues", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 872, + "id": 461, "abbreviation": "PKFA", "nameKr": "팜핵 지방산", "nameEn": "Palm kernel fatty acid", - "synonymsEn": "Fatty acids, palm kernel-oil / Edenor PK 1218 / Einecs 309-936-7 / Palm kernel oil fatty acid / PALM KERNEL OIL FATTY ACIDS / Fatty acids, palm kernel-oil / Distilled palm kernel / coconut fatty acid", "synonymsKr": "팜커넬애씨드 / 팜커넬애씨드 / 지방산,팜커널오일", + "synonymsEn": "Fatty acids, palm kernel-oil / Edenor PK 1218 / Einecs 309-936-7 / Palm kernel oil fatty acid / PALM KERNEL OIL FATTY ACIDS / Fatty acids, palm kernel-oil / Distilled palm kernel / coconut fatty acid", "unNumber": "", "casNumber": "101403-98-9", "transportMethod": "", @@ -59753,359 +36213,19 @@ { "code": "PKFA", "name": "Palm kernel fatty acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 873, - "abbreviation": "PKFAD", - "nameKr": "팜 코어 지방산 증류액", - "nameEn": "Palm kernel fatty acid distillate", - "synonymsEn": "COCONUT OIL FATTY ACIDS / Coconutfattyacids / Fattyacids,C8-18andC18-unsatd. / FATTYACIDS,C8-C18&C18UNSATURATED / C8-18 and C18-unsaturated fatty acids / fatty acids, C8-18 and C18 unsaturated / Fatty acids, unsaturated, C8-C18 and C18 / C8-18-andC18-Unsaturatedalkylcarboxylicacid", - "synonymsKr": "코코넛 지방 산 / 코코넛지방산 / 코코넛지방산(COCONUTFATTYACID)", - "unNumber": "", - "casNumber": "67701-05-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "T", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6, 16.2.6, 16.2.7, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PKFAD", - "name": "Palm kernel fatty acid distillate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 874, - "abbreviation": "PKL", - "nameKr": "팜커넬", - "nameEn": "Palm kernel olein", - "synonymsEn": "PALM KERNEL OIL / W 500 / Tefacid / palmnutoil / W 500 (oil) / Palm seed oil / palm-kemel oil / PALMKERNELOILS / Oele, Palmkern- / PALM KERNEL OIL / Oils, palm kernel", - "synonymsKr": "오일팜커넬오일 / 오일팜커넬오일 / 야자핵유 / 팜커널오일", - "unNumber": "", - "casNumber": "8023-79-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "P", - "ibcShipType": "IMO 2(k)TYPE", - "ibcTankType": "2G", - "ibcDetection": "No", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PKL", - "name": "Palm kernel olein", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 875, - "abbreviation": "PKS", - "nameKr": "팜 핵 스테아린", - "nameEn": "Palm kernel stearin", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "1", - "casNumber": "91079-14-0", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "P", - "ibcShipType": "IMO 2(k)TYPE", - "ibcTankType": "2G", - "ibcDetection": "No", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PKS", - "name": "Palm kernel stearin", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 876, - "abbreviation": "PMF34", - "nameKr": "", - "nameEn": "Palm mid fraction 34", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PMF34", - "name": "Palm mid fraction 34", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 877, - "abbreviation": "PMF45", - "nameKr": "", - "nameEn": "Palm mid fraction 45", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PMF45", - "name": "Palm mid fraction 45", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 878, + "id": 462, "abbreviation": "POFAME", "nameKr": "팜유 지방산 메틸 에스테르", "nameEn": "Palm oil fatty acid methyl ester", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "143-25-5", "transportMethod": "", @@ -60148,9 +36268,9 @@ "regulation": "" }, "ibcHazard": "P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "No", + "ibcDetection": "O", "ibcFireFighting": "AC", "ibcMinRequirement": "15.19.6, 16.2.9", "emsCode": "", @@ -60161,89 +36281,21 @@ { "code": "POFAME", "name": "Palm oil fatty acid methyl ester", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 879, - "abbreviation": "PRO", - "nameKr": "", - "nameEn": "Palm residue oil ?", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PRO", - "name": "Palm residue oil ?", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 880, + "id": 463, "abbreviation": "PSFA", "nameKr": "팜 스테아린 지방산", "nameEn": "Palm stearin fatty acid", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", - "casNumber": "91079-14-0 68002-71-1", + "casNumber": "91079-14-0\n68002-71-1", "transportMethod": "", "sebc": "", "usage": "", @@ -60297,87 +36349,19 @@ { "code": "PSFA", "name": "Palm stearin fatty acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 881, - "abbreviation": "PS50", - "nameKr": "", - "nameEn": "Palm stearin M.P.50", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PS50", - "name": "Palm stearin M.P.50", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 882, + "id": 464, "abbreviation": "PA80", "nameKr": "팔미트산", "nameEn": "Palmitic acid 80%", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "57-10-3", "transportMethod": "", @@ -60433,19 +36417,19 @@ { "code": "PA80", "name": "Palmitic acid 80%", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 883, + "id": 465, "abbreviation": "PALMTLIC", "nameKr": "팔미톨레산", "nameEn": "Palmitoleic acid", - "synonymsEn": "PALMITOLEIC ACID / 9-HEXADECENOIC ACID / C16:1 / Zoomaric acid / CIS-9-HEXADECENOIC ACID / PALM ACID / (Z)-9-hexadecenoic acid / cis-Palmitoleic acid / Palmitoleic Acid(PA) / (Z)-hexadec-9-enoic acid / (E)-hexadec-9-enoic acid", "synonymsKr": "팜애씨드 / 팜애씨드", + "synonymsEn": "PALMITOLEIC ACID / 9-HEXADECENOIC ACID / C16:1 / Zoomaric acid / CIS-9-HEXADECENOIC ACID / PALM ACID / (Z)-9-hexadecenoic acid / cis-Palmitoleic acid / Palmitoleic Acid(PA) / (Z)-hexadec-9-enoic acid / (E)-hexadec-9-enoic acid", "unNumber": "", "casNumber": "373-49-9", "transportMethod": "", @@ -60501,155 +36485,87 @@ { "code": "PALMTLIC", "name": "Palmitoleic acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 884, + "id": 466, "abbreviation": "PB", "nameKr": "폴리부텐", "nameEn": "POLYBUTENE", - "synonymsEn": "POLYBUTENE", - "synonymsKr": "폴리부텐 / 부텐, 호모중합물 / 뷰텐 폴리머 / 폴리-베타-뷰텐", + "synonymsKr": "폴리부텐 / 부텐. 호모중합물 / 뷰텐 폴리머 / 폴리-베타-뷰텐", + "synonymsEn": "POLYBUTENE / H 100 / H 1500 / H 1900 / H 300 / L 14 / L 100 / 15H / 2000H / 300H / AMOCO H 300 / AMOCO 15H / BUTENE, HOMOPOLYMER / BUTENE POLYMER / BUTENE, POLYMERS / CHEVRON 6 / CHEVRON 12 / CHEVRON 16 / CHEVRON 18 / HE 1975 / HE 375 / HV-1900 / HYVIS 10 / HYVIS 7000 / 45 / INDOPOL / INDOPOL H 50 / INDOPOL H 100 / INDOPOL H 300 / INDOPOL L 10 / INDOPOL L 14 / INDOPOL L 100 / LV 50 / OKTOL 600 / ORONITE 6 / PB 2110 / PETROFIN 100 / POLYBUDEN 300H / POLYBUTENE SH 015 / POLYBUTYLENE / L 14 [POLYMER] / POLYVIS 015SH / POLYVIS 2000CH / POLYVIS OO / SH 015 / SV 7000 / WITRON 131 / Poly-beta-butene / Polybutene rubber / Polybutenes", "unNumber": "-", "casNumber": "9003-29-6", - "transportMethod": "", - "sebc": "", - "usage": "윤활유 첨가제, 절연체, 가소제, 필름 및 코팅", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "transportMethod": "산적액체(Y류)", + "sebc": "F (Floater)", + "usage": "윤활유 점가제, 절연체, 가소제. 찔름 및 코팅", + "state": "액체", + "color": "무색", + "odor": "무취", + "flashPoint": "230℃", + "autoIgnition": "자료없음", + "boilingPoint": ">300℃", + "density": "0.87-0.91", + "solubility": "불용", + "vaporPressure": "매우 낮음", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 1, + "fire": 1, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "128", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "25m", + "responseDistanceSpillNight": "100m", + "marineResponse": "부유 (F)", + "ppeClose": "근거리(레벨 B)", + "ppeFar": "원거리(레벨 C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "고점도 윤활유/첨가제 원료. 해상 유출 시 부유(F)", + "firstAid": "흡입노출 - 신선한 곳으로 이동, 산소공급, 인공호흡 피부접촉 • 뜨거운 물질의 경우 찬물로 식힐 것, 긴급 의료조치. 즉시 20문 이상 흐르는 물에 씻을 것 안구접촉 • 몇 분간 물로 조심해서 씻을 것, 콘택트렌즈 제거 경구섭취 •긴급의료조치", + "fireFighting": "드라이케미컬·CO2·포말 사용. 물 분무는 용기 냉각용", + "spillResponse": "해상 유출 시 부유(F)하므로 오일붐으로 포위 후 스키머로 회수. 흡착제 병용 가능", "exposure": "", "regulation": "" }, "ibcHazard": "P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "No", + "ibcDetection": "O", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.19.6, 16.2.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { "code": "PB", "name": "POLYBUTENE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 885, - "abbreviation": "PBR9344", - "nameKr": "", - "nameEn": "Parabar 9344", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PBR9344", - "name": "Parabar 9344", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 886, + "id": 467, "abbreviation": "PWAX", "nameKr": "파라핀 왁스", "nameEn": "Paraffin wax", - "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", + "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", "unNumber": "", "casNumber": "8002-74-2", "transportMethod": "", @@ -60705,1175 +36621,115 @@ { "code": "PWAX", "name": "Paraffin wax", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 887, - "abbreviation": "PW125/130", - "nameKr": "파라핀 왁스", - "nameEn": "Paraffin wax 125/130", - "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", - "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", - "unNumber": "", - "casNumber": "8002-74-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "PW125/130", "name": "Paraffin wax 125/130", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 888, - "abbreviation": "PW135/140", - "nameKr": "파라핀 왁스", - "nameEn": "Paraffin wax 135/140", - "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", - "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", - "unNumber": "", - "casNumber": "8002-74-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "PW135/140", "name": "Paraffin wax 135/140", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 889, - "abbreviation": "PW140/145", - "nameKr": "파라핀 왁스", - "nameEn": "Paraffin wax 140/145", - "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", - "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", - "unNumber": "", - "casNumber": "8002-74-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "PW140/145", "name": "Paraffin wax 140/145", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 890, - "abbreviation": "PW150/155", - "nameKr": "파라핀 왁스", - "nameEn": "Paraffin wax 150/155", - "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", - "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", - "unNumber": "", - "casNumber": "8002-74-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "PW150/155", "name": "Paraffin wax 150/155", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 891, - "abbreviation": "PW155/160", - "nameKr": "파라핀 왁스", - "nameEn": "Paraffin wax 155/160", - "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", - "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", - "unNumber": "", - "casNumber": "8002-74-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "PW155/160", "name": "Paraffin wax 155/160", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 892, - "abbreviation": "PW52/54", - "nameKr": "파라핀 왁스", - "nameEn": "Paraffin wax 52/54", - "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", - "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", - "unNumber": "", - "casNumber": "8002-74-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "PW52/54", "name": "Paraffin wax 52/54", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 893, - "abbreviation": "PW54/56", - "nameKr": "파라핀 왁스", - "nameEn": "Paraffin wax 54/56", - "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", - "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", - "unNumber": "", - "casNumber": "8002-74-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "PW54/56", "name": "Paraffin wax 54/56", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 894, - "abbreviation": "PW54/56E", - "nameKr": "파라핀 왁스", - "nameEn": "Paraffin wax 54/56 (Edible grade)", - "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", - "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", - "unNumber": "", - "casNumber": "8002-74-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "PW54/56E", "name": "Paraffin wax 54/56 (Edible grade)", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 895, - "abbreviation": "PW56/58", - "nameKr": "파라핀 왁스", - "nameEn": "Paraffin wax 56/58", - "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", - "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", - "unNumber": "", - "casNumber": "8002-74-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "PW56/58", "name": "Paraffin wax 56/58", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 896, - "abbreviation": "PW56/58E", - "nameKr": "파라핀 왁스", - "nameEn": "Paraffin wax 56/58 (Edible grade)", - "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", - "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", - "unNumber": "", - "casNumber": "8002-74-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "PW56/58E", "name": "Paraffin wax 56/58 (Edible grade)", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 897, - "abbreviation": "PW58/60", - "nameKr": "파라핀 왁스", - "nameEn": "Paraffin wax 58/60", - "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", - "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", - "unNumber": "", - "casNumber": "8002-74-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "PW58/60", "name": "Paraffin wax 58/60", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 898, - "abbreviation": "PW58/60E", - "nameKr": "파라핀 왁스", - "nameEn": "Paraffin wax 58/60 (Edible grade)", - "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", - "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", - "unNumber": "", - "casNumber": "8002-74-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "PW58/60E", "name": "Paraffin wax 58/60 (Edible grade)", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 899, - "abbreviation": "PW60/62", - "nameKr": "파라핀 왁스", - "nameEn": "Paraffin wax 60/62", - "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", - "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", - "unNumber": "", - "casNumber": "8002-74-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "PW60/62", "name": "Paraffin wax 60/62", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 900, - "abbreviation": "PW60/62E", - "nameKr": "파라핀 왁스", - "nameEn": "Paraffin wax 60/62 (Edible grade)", - "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", - "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", - "unNumber": "", - "casNumber": "8002-74-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "PW60/62E", "name": "Paraffin wax 60/62 (Edible grade)", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 901, - "abbreviation": "PW64/66", - "nameKr": "파라핀 왁스", - "nameEn": "Paraffin wax 64/66", - "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", - "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", - "unNumber": "", - "casNumber": "8002-74-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "PW64/66", "name": "Paraffin wax 64/66", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 902, - "abbreviation": "PW66/68", - "nameKr": "파라핀 왁스", - "nameEn": "Paraffin wax 66/68", - "synonymsEn": "Paraffin wax / PARAFFIN / SYNTHETIC WAX / Parafin wax / Hydrocarbon wax / Fischer-Tropsch Wax / PARAFFIN IN PASTILLE FORM 51-53 PH EUR,B / PARAFFIN IN PASTILLE FORM 56-58 PH EUR,B / IGI 1230 / PARAFFIN / PARAFFIN", - "synonymsKr": "파라핀 왁스 / 고형파라핀흄 / 다단한파라핀 / 파라핀 / 파라핀왁스 / 파라핀왁스와탄화수소왁스 / 화이트부드러운파라핀 / 고형파라핀흄 / 파라핀 왁스 / 합성왁스", - "unNumber": "", - "casNumber": "8002-74-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "PW66/68", "name": "Paraffin wax 66/68", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 903, - "abbreviation": "PFL335", - "nameKr": "", - "nameEn": "Paraflow 335", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PFL335", - "name": "Paraflow 335", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 904, + "id": 468, "abbreviation": "PMSM", "nameKr": "파라-메틸 스티렌", "nameEn": "para-Methyl styrene monomer", - "synonymsEn": "4-Methylstyrene / 1-Methyl-4-vinylbenzene / VINYLTOLUENE / 4-Methylphenylene / P-METHYLSTYRENE / 4-vinyl / 4-methylstyre / 4-VINYLTOLUENE / P-VINYLTOLUENE / 4-METHYLSTYRENE / p-methyl-styren", "synonymsKr": "p-메틸스타이렌 / p-메틸스타이렌 / p-메틸스타이렌(p-METHYLSTYRENE) / p-메틸스티렌", + "synonymsEn": "4-Methylstyrene / 1-Methyl-4-vinylbenzene / VINYLTOLUENE / 4-Methylphenylene / P-METHYLSTYRENE / 4-vinyl / 4-methylstyre / 4-VINYLTOLUENE / P-VINYLTOLUENE / 4-METHYLSTYRENE / p-methyl-styren", "unNumber": "", "casNumber": "622-97-9", "transportMethod": "", @@ -61929,19 +36785,19 @@ { "code": "PMSM", "name": "para-Methyl styrene monomer", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 905, + "id": 469, "abbreviation": "PRNX52", "nameKr": "파라옥스", "nameEn": "Paranox 52", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "16920-94-8", "transportMethod": "", @@ -61997,19 +36853,19 @@ { "code": "PRNX52", "name": "Paranox 52", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 906, + "id": 470, "abbreviation": "PBSYCSO", "nameKr": "목욕용 왁스", "nameEn": "PBSY Cotton seed oil", - "synonymsEn": "COTTONSEED OIL / cotton / LIPEX 109 / cottonoil / nci-c50168 / cottondoil / COTTONSEED OIL / Oils, cottonseed / COTTONSEEDOIL,NF / Baumwollsamenoel / cottonseedoilacid", "synonymsKr": "목욕용 왁스 / 목욕용왁스 / 정제된목화씨오일 / 목화씨오일 / 목화오일 / 육지면씨추출물 / 코튼씨오일 / 목욕용왁스 / 목화씨유", + "synonymsEn": "COTTONSEED OIL / cotton / LIPEX 109 / cottonoil / nci-c50168 / cottondoil / COTTONSEED OIL / Oils, cottonseed / COTTONSEEDOIL,NF / Baumwollsamenoel / cottonseedoilacid", "unNumber": "", "casNumber": "8001-29-4", "transportMethod": "", @@ -62065,19 +36921,19 @@ { "code": "PBSYCSO", "name": "PBSY Cotton seed oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 907, + "id": 471, "abbreviation": "PCTLN", "nameKr": "p-클로로톨루엔", "nameEn": "p-Chlorotoluene", - "synonymsEn": "4-Chlorotoluene / 1-CHLORO-4-METHYLBENZENE / P-CHLOROTOLUENE / chlorotoluenes / 1-chloro-4-methyl-benzen / 4-CHLORO-1-METHYLBENZENE / UPD / p-ChL / 4-Chlortoluol / p-Chlortoluol / 4-Chlorotoluen", "synonymsKr": "p-클로로톨루엔 / 4-클로로톨루엔 / p-클로로톨루엔", + "synonymsEn": "4-Chlorotoluene / 1-CHLORO-4-METHYLBENZENE / P-CHLOROTOLUENE / chlorotoluenes / 1-chloro-4-methyl-benzen / 4-CHLORO-1-METHYLBENZENE / UPD / p-ChL / 4-Chlortoluol / p-Chlortoluol / 4-Chlorotoluen", "unNumber": "", "casNumber": "106-43-4", "transportMethod": "", @@ -62120,9 +36976,9 @@ "regulation": "" }, "ibcHazard": "P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "F", + "ibcDetection": "R", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.19.6, 16.2.9", "emsCode": "", @@ -62133,59 +36989,59 @@ { "code": "PCTLN", "name": "p-Chlorotoluene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 908, + "id": 472, "abbreviation": "PCRSL", "nameKr": "p-크레졸", "nameEn": "p-Cresol", - "synonymsEn": "p-Cresol / 4-METHYLPHENOL / para-cresol / P-HYDROXYTOLUENE / 4-Cresol / P-METHYLPHENOL / p-Tolyl alcohol / Paracresol / Phenol,4-methyl- / Paramethyl phenol / p-Cresol, extra pure", "synonymsKr": "P-크레졸 / P-크레솔 / p-크레졸 / 크레졸 / 1-메틸-4-하이드록시벤젠 / 1-하이드록시-4-메틸벤젠 / 4-메틸페놀 / 4-크레솔 / 4-크레졸 / 4-하이드록시-1-메틸벤젠 / 4-하이드록시톨루엔 / P-하이드록시톨루엔 / 크레솔, P- / 파라-크레실릭산", - "unNumber": "", - "casNumber": "106-44-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "synonymsEn": "p-Cresol / 4-METHYLPHENOL / para-cresol / P-HYDROXYTOLUENE / 4-Cresol / P-METHYLPHENOL / p-Tolyl alcohol / Paracresol / Phenol,4-methyl- / Paramethyl phenol / p-Cresol, extra pure", + "unNumber": "2022", + "casNumber": "1319-77-3", + "transportMethod": "포장(6.1급), 산적액체(Y류)", + "sebc": "D (Dissolver)", + "usage": "유해액체물질/Y 국가긴급방제계획 포합 위험 • 유해물질 노란색. 연갈색의 페놀 특유의 냄새가 나는 액체로서 주로 합성수지, 폭약, 소독제로 사용됨. 해상유출 시에는 침강. 용해되므로 방제조치는 불필요하나, 피부화상, 심한 눈 손상을 일으킬 수 있고, 급성독성이 있으므로 보안경, 방독마스크, 화학", + "state": "액체", + "color": "노란색에서 연갈색", + "odor": "페놀 냄새", + "flashPoint": "86.11", + "autoIgnition": "559℃", + "boilingPoint": "191~202℃", + "density": "1.03-1.04", + "solubility": "23.3 g/L (20℃)", + "vaporPressure": "(물 23.8mmHg)", + "vaporDensity": "3.72", + "explosionRange": "1.4%~", "nfpa": { - "health": 0, - "fire": 0, + "health": 3, + "fire": 2, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "153", + "idlh": "250 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "침강용해 (SD)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "독성 물질로 피부접촉 및 흡입 시 유독하며 연소 시 유독가스 발생, 피부 부식/화상", + "firstAid": "흡입노출 • 즉시 의료조치 피부접촉 • 물로 씻올 것, 화상의 경우 다량의 찬물로 씻을 것 얀구접촉 • 몇 분간 물로 조심해서 씻어낼 것, 콘택트렌즈를 제거할 것 경구섭취 • 입을 씻어낼 것, 토하지 말 것, 즉시 의료조치", + "fireFighting": "독성 물질로 피부접촉 및 흡입 시 유독하며 연소 시 유독가스 발생. 먼 곳에서 분무주수 또는 내알코올 포말.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 해수에 유출시 침전용해(SD)되어 해상수거 불가.", + "exposure": "TWA 22 mg/㎥, IDLH 250 ppm", + "regulation": "유해화학물질관리법" }, "ibcHazard": "", "ibcShipType": "", @@ -62193,27 +37049,27 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-B", + "emsFire": "F-A", + "emsSpill": "S-B", "emsFirstAid": "", "cargoCodes": [ { "code": "PCRSL", "name": "p-Cresol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 909, + "id": 473, "abbreviation": "PCMN", "nameKr": "p-시멘", "nameEn": "p-Cymene", - "synonymsEn": "p-Cymene / Cymene / Cymol / 4-ISOPROPYLTOLUENE / PARA CYMENE / P-ISOPROPYLTOLUENE / 1-METHYL-4-ISOPROPYLBENZENE / P-CYMOL / lsopropyltoluene / 1-Methyl-4-(1-methylethyl)-benzene / 4-CYMENE", "synonymsKr": "파라시멘 / P-사이멘 / 4-아이소프로필톨루엔 / 파라시멘 / p-시멘", + "synonymsEn": "p-Cymene / Cymene / Cymol / 4-ISOPROPYLTOLUENE / PARA CYMENE / P-ISOPROPYLTOLUENE / 1-METHYL-4-ISOPROPYLBENZENE / P-CYMOL / lsopropyltoluene / 1-Methyl-4-(1-methylethyl)-benzene / 4-CYMENE", "unNumber": "", "casNumber": "99-87-6", "transportMethod": "", @@ -62256,9 +37112,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "F", + "ibcDetection": "R", "ibcFireFighting": "AC", "ibcMinRequirement": "15.19.6", "emsCode": "", @@ -62269,359 +37125,19 @@ { "code": "PCMN", "name": "p-Cymene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 910, - "abbreviation": "PDEBZN", - "nameKr": "p-디에틸벤젠", - "nameEn": "p-Diethylbenzene", - "synonymsEn": "1,4-DIETHYLBENZENE / Benzene, 1,4-diethyl- / PDEB / P-DIETHYLBENZENE / 1.4-Diethylben / p-diethylenzene / PDEB )1,4-Diethy / p-diethyl-benzen / 1,4-diethyl-benzen / 1,4-DIETHYLBENZENE / para-Diethylbenzene", - "synonymsKr": "글명:1.4-디에틸벤젠 / 1,4-다이에틸벤젠 / 1,4-디에틸벤젠 / 1.4-디에틸벤젠", - "unNumber": "", - "casNumber": "105-05-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PDEBZN", - "name": "p-Diethylbenzene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 911, - "abbreviation": "PGS1425", - "nameKr": "", - "nameEn": "Pegasol 1425", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PGS1425", - "name": "Pegasol 1425", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 912, - "abbreviation": "PGS3040", - "nameKr": "", - "nameEn": "Pegasol 3040", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PGS3040", - "name": "Pegasol 3040", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 913, - "abbreviation": "PGSR100", - "nameKr": "", - "nameEn": "Pegasol R100", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PGSR100", - "name": "Pegasol R100", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 914, - "abbreviation": "PGSR150", - "nameKr": "", - "nameEn": "Pegasol R150", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PGSR150", - "name": "Pegasol R150", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 915, + "id": 474, "abbreviation": "PELACID", "nameKr": "펠라르곤산", "nameEn": "Pelargonic acid", - "synonymsEn": "Nonanoic acid / NONANE / PELARGONIC ACID / nonanoic / pelargonic / N-NONANOIC ACID / NONOIC ACID / Pelargic acid / pelargonate (9:0) / n-Nonanoic acid,97% / Nonanoic acid (Pelargonic)", "synonymsKr": "펠라곤산 / 노난산 / 펠라곤산 / 펠라곤산 / 펠라고닉애씨드", + "synonymsEn": "Nonanoic acid / NONANE / PELARGONIC ACID / nonanoic / pelargonic / N-NONANOIC ACID / NONOIC ACID / Pelargic acid / pelargonate (9:0) / n-Nonanoic acid,97% / Nonanoic acid (Pelargonic)", "unNumber": "", "casNumber": "112-05-0", "transportMethod": "", @@ -62677,19 +37193,19 @@ { "code": "PELACID", "name": "Pelargonic acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 916, + "id": 475, "abbreviation": "PTCE", "nameKr": "펜타클로로에탄", "nameEn": "Pentachloroethane", - "synonymsEn": "PENTACHLOROETHANE / CHCl2CCl3 / Pentachlorethane / R-120 / freon120 / PENTALIN / Pentaline / NCI-C53894 / Pentaclorethane / Pentachlorethan / Pentacloroetano", "synonymsKr": "펜타클로로에탄 / 펜타클로로에탄 / 펜타클로로에테인", + "synonymsEn": "PENTACHLOROETHANE / CHCl2CCl3 / Pentachlorethane / R-120 / freon120 / PENTALIN / Pentaline / NCI-C53894 / Pentaclorethane / Pentachlorethan / Pentacloroetano", "unNumber": "", "casNumber": "76-01-7", "transportMethod": "", @@ -62745,87 +37261,19 @@ { "code": "PTCE", "name": "Pentachloroethane", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 917, - "abbreviation": "PNTN", - "nameKr": "펜탄", - "nameEn": "Pentane", - "synonymsEn": "Pentane / N-PENTANE / PETANE / Pentan / 1-Pentane / n-C5H12 / N-PENTAN / R601 / NP80 / PENTANE / Pentani", - "synonymsKr": "펜탄 / 펜탄 / N-펜탄 / 노르말펜탄 / 아밀수화물 / 펜테인(펜탄)", - "unNumber": "1265", - "casNumber": "109-66-0", - "transportMethod": "", - "sebc": "", - "usage": "인공얼음, 플라스틱 발포제, 살충제", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PNTN", - "name": "Pentane", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 918, + "id": 476, "abbreviation": "PENTACID", "nameKr": "펜타노산", "nameEn": "Pentanoic acid", - "synonymsEn": "Valeric acid / PENTANOIC ACID / N-VALERIC ACID / valeric / N-PENTANOIC ACID / VALERIANIC ACID / NA 1760 / FEMA 3101 / n-C4H9COOH / N-VALERATE / Pentansαure", "synonymsKr": "펜탄산 / n-펜탄산 / 발레르산 / 펜탄산 / 발레르산", + "synonymsEn": "Valeric acid / PENTANOIC ACID / N-VALERIC ACID / valeric / N-PENTANOIC ACID / VALERIANIC ACID / NA 1760 / FEMA 3101 / n-C4H9COOH / N-VALERATE / Pentansαure", "unNumber": "", "casNumber": "109-52-4", "transportMethod": "", @@ -62868,9 +37316,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "T", + "ibcDetection": "C", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.12, 15.17, 15.19", "emsCode": "", @@ -62881,19 +37329,19 @@ { "code": "PENTACID", "name": "Pentanoic acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 919, + "id": 477, "abbreviation": "PERL", "nameKr": "들기름", "nameEn": "Perilla oil", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "68132-21-8", "transportMethod": "", @@ -62949,19 +37397,19 @@ { "code": "PERL", "name": "Perilla oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 920, + "id": 478, "abbreviation": "PNPTH", "nameKr": "나프타(석유)", "nameEn": "Petroleum naphtha", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "", "casNumber": "64742-66-1", "transportMethod": "", @@ -63017,19 +37465,19 @@ { "code": "PNPTH", "name": "Petroleum naphtha", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 921, + "id": 479, "abbreviation": "SPHN", "nameKr": "석유 솔폰산염", "nameEn": "Petroleum sulphonate", - "synonymsEn": "Sulfonic acids, petroleum, sodium salts / SodiuM petrol / Sodium petrol T702 / Sodium Petroleum sulphonate / SODIUM PETROLEUM SULFONIC ACIDS / Sodium Petroleum sulphonate T702 / Petroleum Sulfonic Acid, Sodium Salt / SULPHONICACIDS,PETROLEUM,SODIUMSALTS / Petroleum sulfonic acids sodium salts / Sulfonic acids, petroleum, sodium salts / TIANFU-CHEM Sulfonic acids, petroleum, sodium salts", "synonymsKr": "나트륨 석유 술폰 산 / 나트륨석유술폰산 / 설폰산나트륨석유 / 설폰산나트륨석유", + "synonymsEn": "Sulfonic acids, petroleum, sodium salts / SodiuM petrol / Sodium petrol T702 / Sodium Petroleum sulphonate / SODIUM PETROLEUM SULFONIC ACIDS / Sodium Petroleum sulphonate T702 / Petroleum Sulfonic Acid, Sodium Salt / SULPHONICACIDS,PETROLEUM,SODIUMSALTS / Petroleum sulfonic acids sodium salts / Sulfonic acids, petroleum, sodium salts / TIANFU-CHEM Sulfonic acids, petroleum, sodium salts", "unNumber": "", "casNumber": "68608-26-4", "transportMethod": "", @@ -63085,155 +37533,25 @@ { "code": "SPHN", "name": "Petroleum sulphonate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 922, - "abbreviation": "SPHNC300", - "nameKr": "석유 솔폰산염", - "nameEn": "Petroleum sulphonate C-300", - "synonymsEn": "Sulfonic acids, petroleum, sodium salts / SodiuM petrol / Sodium petrol T702 / Sodium Petroleum sulphonate / SODIUM PETROLEUM SULFONIC ACIDS / Sodium Petroleum sulphonate T702 / Petroleum Sulfonic Acid, Sodium Salt / SULPHONICACIDS,PETROLEUM,SODIUMSALTS / Petroleum sulfonic acids sodium salts / Sulfonic acids, petroleum, sodium salts / TIANFU-CHEM Sulfonic acids, petroleum, sodium salts", - "synonymsKr": "나트륨 석유 술폰 산 / 나트륨석유술폰산 / 설폰산나트륨석유 / 설폰산나트륨석유", - "unNumber": "", - "casNumber": "68608-26-4", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "SPHNC300", "name": "Petroleum sulphonate C-300", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 923, - "abbreviation": "PCDO", - "nameKr": "", - "nameEn": "Pilchard oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PCDO", - "name": "Pilchard oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 924, + "id": 480, "abbreviation": "PINE", "nameKr": "파인오일", "nameEn": "Pine oil", - "synonymsEn": "Pinitol oil / PINE OIL / GUM TURPENTINE OIL / FIR OIL / FEMA 3089 / terpentinoel / Terpenic oil / yarmorpineoil / PINUS PALUSTRIS OIL / yarmor / unipine", "synonymsKr": "솔 기름 / 솔기름 / 솔기름(PINEOIL) / 대왕소나무오일 / 대왕송오일 / 송유", + "synonymsEn": "Pinitol oil / PINE OIL / GUM TURPENTINE OIL / FIR OIL / FEMA 3089 / terpentinoel / Terpenic oil / yarmorpineoil / PINUS PALUSTRIS OIL / yarmor / unipine", "unNumber": "", "casNumber": "8002-09-3", "transportMethod": "", @@ -63276,9 +37594,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "", + "ibcDetection": "O", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.9", "emsCode": "", @@ -63289,291 +37607,19 @@ { "code": "PINE", "name": "Pine oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 925, - "abbreviation": "PSTL135", - "nameKr": "", - "nameEn": "Plastol 135", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PSTL135", - "name": "Plastol 135", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 926, - "abbreviation": "PSTL172", - "nameKr": "", - "nameEn": "Plastol 172", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PSTL172", - "name": "Plastol 172", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 927, - "abbreviation": "PSTL382", - "nameKr": "", - "nameEn": "Plastol 382", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PSTL382", - "name": "Plastol 382", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 928, - "abbreviation": "PFM", - "nameKr": "", - "nameEn": "Platformate", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PFM", - "name": "Platformate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 929, + "id": 481, "abbreviation": "PAOP", "nameKr": "폴리알킬렌 산화물 폴리올", "nameEn": "Polyalkylene oxidepolyol", - "synonymsEn": "Polyethylene-polypropylene glycol / Poloxamer / PLURONIC F-127 / PLURONIC / POLOXAMER 407 / POLOXAMER 188 / Polyether / P188 / PEG-PPG-PEG / PLURONIC F-68 / poloxalene", "synonymsKr": "폴리프로필렌 글리콜 에틸렌 산화물 중합체 / 폴리에틸렌-폴리프로필렌글리콜 / 폴리프로필렌글리콜에틸렌산화물중합체 / 폴리에틸렌-폴리프로필렌글리콜 / 메록사폴106 / 메록사폴108 / 메록사폴171 / 메록사폴172 / 메록사폴174 / 메록사폴178 / 메록사폴251 / 메록사폴254 / 메록사폴255 / 메록사폴311 / 메록사폴312 / 메록사폴314 / 폴록사머101 / 폴록사머105 / 폴록사머108 / 폴록사머122 / 폴록사머123", + "synonymsEn": "Polyethylene-polypropylene glycol / Poloxamer / PLURONIC F-127 / PLURONIC / POLOXAMER 407 / POLOXAMER 188 / Polyether / P188 / PEG-PPG-PEG / PLURONIC F-68 / poloxalene", "unNumber": "", "casNumber": "9003-11-6", "transportMethod": "", @@ -63629,19 +37675,19 @@ { "code": "PAOP", "name": "Polyalkylene oxidepolyol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 930, + "id": 482, "abbreviation": "PEG", "nameKr": "폴리에틸렌 글리콜", "nameEn": "Polyethylene glycol", - "synonymsEn": "Polyethylene Glycol / PEG / PEO / POLYETHYLENE GLYCOL / PEG 400 / POLY(ETHYLENE OXIDE) / Macrogol / PEG 6000 / PEG-8 / PEG-12 / PEG-20", "synonymsKr": "폴리에틸렌글리콜#300 / 에틸렌글리콜중합물 / 에틸렌산화물중합물 / 에틸렌폴리산화물 / 옥시란중합물 / 옥시에틸렌중합물 / 카르보왁스PEG400 / 카르보왁스폴리에틸렌글리콜400 / 폴리(비닐산화물) / 폴리(에틸렌에테르)글리콜 / 폴리옥시에틸렌디올 / CARBO왁스 / PEG(평균분자량400) / 글리콜스,폴리에틸렌 / 에틸렌글리콜호모중합물 / 카르보왁스300 / 카르보왁스8000 / 카르보왁스PEG600 / 카르보왁스폴리에틸렌글리콜600 / 카르보왁스폴리에틸렌글리콜8000 / 폴리G", + "synonymsEn": "Polyethylene Glycol / PEG / PEO / POLYETHYLENE GLYCOL / PEG 400 / POLY(ETHYLENE OXIDE) / Macrogol / PEG 6000 / PEG-8 / PEG-12 / PEG-20", "unNumber": "", "casNumber": "25322-68-3", "transportMethod": "", @@ -63684,9 +37730,9 @@ "regulation": "" }, "ibcHazard": "P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "No", + "ibcDetection": "O", "ibcFireFighting": "AC", "ibcMinRequirement": "", "emsCode": "", @@ -63697,631 +37743,19 @@ { "code": "PEG", "name": "Polyethylene glycol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 931, - "abbreviation": "PISOBUT", - "nameKr": "폴리이소부텐", - "nameEn": "Polyisobutene", - "synonymsEn": "Polyisobutylene / usb / POLYISOBUTENE / p20 / p118 / p200 / POLY(ISOBUTYLENE) 24'000 / kp5 / oktol / pb150 / pib100", - "synonymsKr": "폴리이소부틸렌 / 폴리아이소뷰틸렌 / 폴리이소부틸렌 / 폴리아이소부텐 / 폴리이소부티렌", - "unNumber": "", - "casNumber": "9003-27-4", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PISOBUT", - "name": "Polyisobutene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 932, - "abbreviation": "POL1342", - "nameKr": "", - "nameEn": "Polyol 1342", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "POL1342", - "name": "Polyol 1342", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 933, - "abbreviation": "POLF3020", - "nameKr": "", - "nameEn": "Polyol F3020", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "POLF3020", - "name": "Polyol F3020", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 934, - "abbreviation": "POLF3022", - "nameKr": "", - "nameEn": "Polyol F3022", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "POLF3022", - "name": "Polyol F3022", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 935, - "abbreviation": "POLF3040", - "nameKr": "", - "nameEn": "Polyol F3040", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "POLF3040", - "name": "Polyol F3040", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 936, - "abbreviation": "PLYLHL108", - "nameKr": "", - "nameEn": "Polyol HL108", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PLYLHL108", - "name": "Polyol HL108", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 937, - "abbreviation": "POLUBAD", - "nameKr": "", - "nameEn": "Polyolefin lub with additive", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "POLUBAD", - "name": "Polyolefin lub with additive", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 938, - "abbreviation": "PPI", - "nameKr": "폴리페닐 폴리메틸렌 이소시아네이트", - "nameEn": "Polyphenyl polymethylene isocyanate", - "synonymsEn": "Polymethylene polyphenyl polyisocyanate / papi / PMDI / pmppi / isocyanuric / papi27 / isocyanatedepolymethyleneetdepolyphenyle / Polymeric Methylene Diphenyl Diisocyanate / e534 / cr200 / mr200", - "synonymsKr": "아이소사이안산 폴리메틸렌 폴리페닐렌에스터 / 아이소사이안산폴리메틸렌폴리페닐렌에스터 / 아이소사이안산폴리메틸렌폴리페닐렌에스터 / 폴리메틸렌 폴리페닐 아이소사이아네이트 / 폴리메틸렌폴리페닐폴리이소시아네이트", - "unNumber": "3080", - "casNumber": "9016-87-9", - "transportMethod": "", - "sebc": "", - "usage": "경질 PU 폼 단열제, 경질 PU 폼, 이소이아누레이트 폼, 도료, 접착제, 구조용 폼, 자동차 펌포 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PPI", - "name": "Polyphenyl polymethylene isocyanate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 939, - "abbreviation": "PPPG", - "nameKr": "폴리프로필렌", - "nameEn": "Polypropylene glycol", - "synonymsEn": "Polypropylene / dlp / PROPYLENE RESIN / POLYPROPYLENE (PP) / HoMopolyMer Polypropylene / soMe / celgard / RPP / j400 / amco / p6500", - "synonymsKr": "폴리프로필렌 / 폴리프로필렌 / 폴리프로필렌(POLYPROPYLENE)", - "unNumber": "", - "casNumber": "9003-07-0", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "No", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PPPG", - "name": "Polypropylene glycol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 940, + "id": 483, "abbreviation": "PTMEG", "nameKr": "폴리테트라메틸렌 에테르 글리콜", "nameEn": "Polytetramethylene ether glycol", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "25190-06-1", "transportMethod": "", @@ -64377,87 +37811,19 @@ { "code": "PTMEG", "name": "Polytetramethylene ether glycol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 941, - "abbreviation": "POPFAT", - "nameKr": "", - "nameEn": "POP FAT", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "POPFAT", - "name": "POP FAT", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 942, + "id": 484, "abbreviation": "PPSO", "nameKr": "양귀비씨 오일", "nameEn": "Poppyseed oil", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "8002-11-7", "transportMethod": "", @@ -64513,59 +37879,59 @@ { "code": "PPSO", "name": "Poppyseed oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 943, + "id": 485, "abbreviation": "KOH", "nameKr": "수산화칼륨", "nameEn": "Potassium hydroxide solution", - "synonymsEn": "Potassium hydroxide / KOH / CAUSTIC POTASH / POTASH / POTTASIUM HYDROXIDE / Potassium hydroxide pellets / Potassio / Kaliumhydroxid / POTASIUM HYDROXIDE / Hydroxyde de potassium / KHO", - "synonymsKr": "수산화칼륨 / 가성알칼리 / 칼륨수산화물,건조고체,플레이크,용구OR과립상 / 1N(1M)수산화칼륨 / N/10(0.1M)수산화칼륨(에탄올) / N/10(0.1N)수산화칼륨 / N/2(0.5M)수산화칼륨 / 가성칼리 / 수산화칼륨 / 수산화칼륨30% / 수산화칼륨45% / 칼륨수화물 / 포타싸 / 수산화칼륨 / 포타슘하이드록사이드 / 포타슘 하이드로옥사이드 / 가성 알칼리 / 수산화 칼륨 / 칼륨 수화물 / 칼륨 알칼리액 / 칼륨수산화물, 건조고체, 플레이크, 용구 또는 과립상", - "unNumber": "1814", + "synonymsKr": "포타슘 하이드로옥사이드 / 포타슘 하이드레이트", + "synonymsEn": "Potassium hydroxide / KOH / CAUSTIC POTASH / POTASH / POTTASIUM HYDROXIDE / Potassium hydroxide pellets / Potassio / Kaliumhydroxid / POTASIUM HYDROXIDE / Hydroxyde de potassium / KHO / CAUSTIC POTASH / HYDROXYDE DE POTASSIUM (FRENCH) / KALIUMHYDROXID (GERMAN) / KALIUMHYDROXYDE (DUTCH) / LYE / POTASSA / POTASSE CAUSTIQUE (FRENCH) / POTASSIO (IDROSSIDO DI) (ITALIAN) / POTASSIUM HYDRATE / POTASSIUM HYDROXIDE (K(OH)) / POTASSIUM (HYDROXYDE DE) (FRENCH) / Caustic potash -flake / Potassa / Hydroxyde de potassium / Potash lye / Sigma Aldrich 306568 / APS / TECH00004753 / UL00001072 / TECH00004435 / TECH00001183 / TECH00004389 / AR00000405 / UL00000406 / BP00005760 / BP00004851 / CAPOTA12 / CPOT.HYD / Potassium hydroxide pellets, Pronalys", + "unNumber": "1813", "casNumber": "1310-58-3", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(8급), 산적액체(Y류)", + "sebc": "D (Dissolver)", "usage": "액체 비누, LCD, 웨이퍼 세정 및 에칭 사용", - "state": "", - "color": "", - "odor": "", + "state": "고체", + "color": "흰색 ~ 연한노란색", + "odor": "무취", "flashPoint": "", "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "boilingPoint": "1,327℃", + "density": "2.04", + "solubility": "1,120 g/L (20℃)", + "vaporPressure": "(물 17.5mmHg)", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, + "health": 3, "fire": 0, - "reactivity": 0, + "reactivity": 1, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "154", + "idlh": "0 분) 자 S 어으", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "25m", + "responseDistanceSpillNight": "25m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "부식성, 피부/안구 심각한 손상, 열에 분해되어 독성 부식성 가스 발생", + "firstAid": "흡입노출 • 즉시의료기관 진찰 피부접촉 • 피부를 물로 씻을 것, 열을 없애기 위해 찬물로 씻을 것 안구접촉 . 몇 분간 물에 조심해서 씻을 것, 콘택트렌즈 제거 경구섭취 • 구강대구강 인공호흡 하지 말 것, 즉시 의료기관 진찰 초동 대응방법 대응장비 보호복 호흡구 3,4형식(C급) 방독마스크(반a 전면) 1형식 (1B) 공기호홉기 보안경 보호장갑 O O 기타장비 보호장화 열화상카메라 1 초기 이격거리 (m) 25 방호거리 (m) 25 1 해상유출시 ►유출물질은 금속을 부식키는 물질로서, 물과 접촉 시 상당한 열을 방출하고 눈 손상 및 피부화상이 일으킬 수 있으므로, 모든 출동세력 풍상에 위치, 최소 25m 이격거리 유지. 주변선박 통제 ►출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용(사고선 근접 시 1B급 착용), 피부와 눈에 접촉을 피할 것 ► 유출물질은 용해되므로 방제조치 불필요 > 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 I 화제시대피거리 (m) 800 + ►유출물질은 물질자체는 타지 않으나, 가열시 뿐해하여 독성가스 방출, 풍상에 위치, 최소 이격거리 유지하고 화재•", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 내알코올 포말 이용.", + "spillResponse": "모든 점화원(흡연, 불꽃, 스파크) 제거하고 주변 해상 통제. 안전 확보 시까지 지속적 유출물질 농도 탐지 및 모니터링.", "exposure": "", - "regulation": "" + "regulation": "유해화학물질관리법" }, "ibcHazard": "", "ibcShipType": "", @@ -64573,503 +37939,33 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-B", + "emsFire": "F-A", + "emsSpill": "S-B", "emsFirstAid": "", "cargoCodes": [ { "code": "KOH", "name": "Potassium hydroxide solution", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 944, - "abbreviation": "PHS", - "nameKr": "수산화칼륨", - "nameEn": "Potassium hydroxide solution", - "synonymsEn": "Potassium hydroxide / KOH / CAUSTIC POTASH / POTASH / POTTASIUM HYDROXIDE / Potassium hydroxide pellets / Potassio / Kaliumhydroxid / POTASIUM HYDROXIDE / Hydroxyde de potassium / KHO", - "synonymsKr": "수산화칼륨 / 가성알칼리 / 칼륨수산화물,건조고체,플레이크,용구OR과립상 / 1N(1M)수산화칼륨 / N/10(0.1M)수산화칼륨(에탄올) / N/10(0.1N)수산화칼륨 / N/2(0.5M)수산화칼륨 / 가성칼리 / 수산화칼륨 / 수산화칼륨30% / 수산화칼륨45% / 칼륨수화물 / 포타싸 / 수산화칼륨 / 포타슘하이드록사이드 / 포타슘 하이드로옥사이드 / 가성 알칼리 / 수산화 칼륨 / 칼륨 수화물 / 칼륨 알칼리액 / 칼륨수산화물, 건조고체, 플레이크, 용구 또는 과립상", - "unNumber": "1814", - "casNumber": "1310-58-3", - "transportMethod": "", - "sebc": "", - "usage": "액체 비누, LCD, 웨이퍼 세정 및 에칭 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "PHS", "name": "Potassium hydroxide solution", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 945, - "abbreviation": "PPSAFF", - "nameKr": "사프란 오일", - "nameEn": "Pre-pressed safflower oil", - "synonymsEn": "Safflower oil / Safloroel / safflower / thistleoil / SAFFLOWER OIL / SAFFLOWEROIL,USP / HYBRIDSAFFLOWEROIL / Oil Of Safflower / SAFFLOWER SEED OIL / Hi-oleicsaffloweroil / organic safflower oil", - "synonymsKr": "잇꽃씨오일 / 잇꽃씨오일", - "unNumber": "", - "casNumber": "8001-23-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PPSAFF", - "name": "Pre-pressed safflower oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 946, - "abbreviation": "PAA", - "nameKr": "", - "nameEn": "Primary-amyl alcohol", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PAA", - "name": "Primary-amyl alcohol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 947, - "abbreviation": "PMLN352", - "nameKr": "경 무기 기름", - "nameEn": "PRIMOL N 352", - "synonymsEn": "Mineral oil / PARAFFIN OIL / white / WHITE MINERAL OIL / Light Mineral Oil / White Oil 26 / LIQUID PETROLATUM / Mineral oil,light white / KF50 / wirt / KF250", - "synonymsKr": "경 무기 기름 / 경무기기름 / 경미네랄오일 / 경미네랄오일(LIGHTMINERALOIL)", - "unNumber": "", - "casNumber": "8042-47-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PMLN352", - "name": "PRIMOL N 352", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 948, - "abbreviation": "PMLN382", - "nameKr": "경 무기 기름", - "nameEn": "PRIMOL N 382", - "synonymsEn": "Mineral oil / PARAFFIN OIL / white / WHITE MINERAL OIL / Light Mineral Oil / White Oil 26 / LIQUID PETROLATUM / Mineral oil,light white / KF50 / wirt / KF250", - "synonymsKr": "경 무기 기름 / 경무기기름 / 경미네랄오일 / 경미네랄오일(LIGHTMINERALOIL)", - "unNumber": "", - "casNumber": "8042-47-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PMLN382", - "name": "PRIMOL N 382", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 949, - "abbreviation": "PMLN542", - "nameKr": "경 무기 기름", - "nameEn": "PRIMOL N 542", - "synonymsEn": "Mineral oil / PARAFFIN OIL / white / WHITE MINERAL OIL / Light Mineral Oil / White Oil 26 / LIQUID PETROLATUM / Mineral oil,light white / KF50 / wirt / KF250", - "synonymsKr": "경 무기 기름 / 경무기기름 / 경미네랄오일 / 경미네랄오일(LIGHTMINERALOIL)", - "unNumber": "", - "casNumber": "8042-47-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PMLN542", - "name": "PRIMOL N 542", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 950, - "abbreviation": "PTLW", - "nameKr": "수지", - "nameEn": "Prome tallow", - "synonymsEn": "·Fatty glyceride ·Edible tallow ·Animal tallow ·Horse fat tallow ·Beef tallow ·Stearin tallow ·Oleo tallow ·Mutton tallow ·Sheep fat tallow ·Tallow A1 grade ·Soap grade", - "synonymsKr": "Fatty 글리세라이드 ·Edible 탈로우 ·Animal 탈로우 ·Horse fat 탈로우 ·Beef 탈로우 ·Stearin 탈로우 ·Oleo 탈로우 ·Mutton 탈로우 ·Sheep fat 탈로우", - "unNumber": "", - "casNumber": "61789-97-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PTLW", - "name": "Prome tallow", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 951, + "id": 486, "abbreviation": "PALD", "nameKr": "프로피온 알데히드", "nameEn": "Propion aldehyde", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "123-38-6", "transportMethod": "", @@ -65111,12 +38007,12 @@ "exposure": "", "regulation": "" }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", + "ibcHazard": "S/P", + "ibcShipType": "3", + "ibcTankType": "2G", + "ibcDetection": "R", + "ibcFireFighting": "AC", + "ibcMinRequirement": "15.19.6", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -65125,57 +38021,57 @@ { "code": "PALD", "name": "Propion aldehyde", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 952, + "id": 487, "abbreviation": "PPG", "nameKr": "프로필렌", "nameEn": "Propylene", - "synonymsEn": "PROPYLENE / PROPENE / Propen / r1270 / Propylen / CH3CH=CH2 / 1-Propene / Methylethylene / HC 1270 / PROPYLENE / NCI-C50077", - "synonymsKr": "프로필렌 / 프로필렌 / 프로펜", - "unNumber": "", + "synonymsKr": "메틸에틸렌 / 프로펜 / 1-프로펜 / 1-프로필렌", + "synonymsEn": "PROPYLENE / PROPENE / Propen / r1270 / Propylen / CH3CH=CH2 / 1-Propene / Methylethylene / HC 1270 / PROPYLENE / NCI-C50077 / R 1270 / METHYLETHENE / METHYLETHYLENE / NCI-C50077 / PROPENE / 1-PROPENE / 1-PROPYLENE", + "unNumber": "1077", "casNumber": "115-07-1", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "transportMethod": "포장(2급), 산적액화가스", + "sebc": "GD (Gas/Dissolver)", + "usage": "연료, 아세톤 제조에서의 화학의 중간체, 중합가솔린 제조원료, 합성섬유 4>위험 인화성 가스(구분1) 고압가스-압축가스 특정표적장기 독성(1회노출) -구분3(마취작용〉 물질톡성", + "state": "가스", + "color": "무색", + "odor": "방향족 냄새", + "flashPoint": "—WC", + "autoIgnition": "460℃", + "boilingPoint": "-48王", + "density": "0.51", + "solubility": "0.2g/L(25'C)", + "vaporPressure": "8,690mmHg(25t)", + "vaporDensity": "1.49", + "explosionRange": "2.4~10.3%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 1, + "fire": 4, + "reactivity": 1, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "석유 및 석유대체연료사업법 / 석유가스", + "ergNumber": "115", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "1,600m", + "responseDistanceSpillDay": "100m", + "responseDistanceSpillNight": "800m", + "marineResponse": "증발 (E)", + "ppeClose": "근거리(레벨 A)", + "ppeFar": "원거리(레벨 C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "액화가스, 고인화성. 증기운 폭발 위험. 해상 유출 시 즉시 증발(E)", + "firstAid": "흡입노출 • 산소공급, 인공호흡, 긴급 의료조치 피부접촉 • 화상의 경우 찬물로, 액화가스 접촉 시 미지근한 물로 씻올 것. 의료조치 안구접촉 •긴급의료조치 경구섭취 •긴급의료조치 초동 마응방법 대응장네 보호복 호홉구 보안경 보호장갑 기타장비 3,4형식 (C급) 방독마스크(반면,전면) 여하사카메가 1형식 (1B) 공기호흡기 O O 열화상카메라 1 초기 이격거리(m) 100 방호거리(m) 800 | 해상유출시 ►유출물잘은 극인화성 가스로 폭발적인 반응이 일어날 수 있고, 두통. 현기증을 유발할 수 있으므로 모든 출동세력 풍상에 위치. 최소 100m 이격거리 유지 (흡연, 불꽃. 스파크 등 모든 점화원 제거) ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용(사고선 근접 시 1B이상 착용). 증기흡입과 피부와 눈에 접촉을 피할 것 ► 유출물질은 가스형태로 증발하므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지. 안전확보 시까지 지속적인 모니터링 1 확재시대피거라 (m) 1.600 1 + 화재 •폭발시 ►유출물질은 연소시 유독가스 방출. 풍상에 위치, 최소 이격거리 유지하고 소화포 이용 화재", + "fireFighting": "모든 점화원 제거. 먼 곳에서 분무주수·드라이케미컬·CO2·포말 사용, 직사주수 금지. 사고선 냉각 및 예인 조치", + "spillResponse": "모든 점화원(불꽃, 불씨, 스파크) 제거하고 주변 해상 통제. 소화포 이용 분무(안개) 주수로 증기 억제. 해수에 유출 시 즉시 증발(E)되어 해상수거 불가", "exposure": "", "regulation": "" }, @@ -65185,27 +38081,27 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-D, S-U", + "emsFire": "F-D", + "emsSpill": "S-U", "emsFirstAid": "", "cargoCodes": [ { "code": "PPG", "name": "Propylene", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 953, + "id": 488, "abbreviation": "PPGMME", "nameKr": "프로피온산 무수물", "nameEn": "Propylene glycol monomethyl ether", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "123-62-6", "transportMethod": "", @@ -65261,87 +38157,19 @@ { "code": "PPGMME", "name": "Propylene glycol monomethyl ether", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 954, - "abbreviation": "PPT", - "nameKr": "프로필렌 사합체", - "nameEn": "Propylene tetramer", - "synonymsEn": "Propylene tetramer / Dodecene / Light Tetramer / ropylene tetramer / Propylene tetramer / PROPYLENETETRAMERS / 1-Propene, tetramer / Dodecene (nonlinear) / Propylene Tetramer(PT) / TIANFU-CHEM Propylene tetramer / (4E,7E,10E)-dodeca-1,4,7,10-tetraene", - "synonymsKr": "프로필렌 테트라머 / 1-프로펜테트라머 / 프로필렌테트라머 / 1-프로펜테트라머", - "unNumber": "", - "casNumber": "6842-15-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "F", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PPT", - "name": "Propylene tetramer", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 955, + "id": 489, "abbreviation": "PPTR", "nameKr": "프로필렌 삼량체(또는 노넨)", "nameEn": "Propylene trimer", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "", "casNumber": "93924-11-9", "transportMethod": "", @@ -65384,9 +38212,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", + "ibcShipType": "2", "ibcTankType": "2G", - "ibcDetection": "F", + "ibcDetection": "R", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.19.6", "emsCode": "", @@ -65397,223 +38225,19 @@ { "code": "PPTR", "name": "Propylene trimer", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 956, - "abbreviation": "PANON", - "nameKr": "", - "nameEn": "Pure anon", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PANON", - "name": "Pure anon", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 957, - "abbreviation": "PBFT", - "nameKr": "순수 소 기름", - "nameEn": "Pure beef tallow", - "synonymsEn": "·Fatty glyceride ·Edible tallow ·Animal tallow ·Horse fat tallow ·Beef tallow ·Stearin tallow ·Oleo tallow ·Mutton tallow ·Sheep fat tallow ·Tallow A1 grade ·Soap grade", - "synonymsKr": "Fatty 글리세라이드 ·Edible 탈로우 ·Animal 탈로우 ·Horse fat 탈로우 ·Beef 탈로우 ·Stearin 탈로우 ·Oleo 탈로우 ·Mutton 탈로우 ·Sheep fat 탈로우", - "unNumber": "", - "casNumber": "61789-97-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PBFT", - "name": "Pure beef tallow", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 958, - "abbreviation": "PPHNL", - "nameKr": "패놀", - "nameEn": "Pure phenol", - "synonymsEn": "Phenol / PhOH / CARBOLIC ACID / Fenol / PHENOL CRYSTALS / Phenol, water saturated, stabilized / Benzophenol / HYDROXYBENZENE / LIQUEFIEDPHENOL,LIQUEFIED,USP / PHENIC ACID / LIQUIFIED PHENOL", - "synonymsKr": "페놀 / 페놀 / 모노페놀 / 모노히드록시벤젠 / 벤젠올 / 페닌산 / 페닐수산화물 / 페닐알코올 / 히드록시벤젠 / 모노하이드록시벤젠 / 석탄산 / 옥시벤젠 / 카르볼산 / 페닐산 / 펜산 / 하이드록시벤젠", - "unNumber": "", - "casNumber": "108-95-2", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PPHNL", - "name": "Pure phenol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 959, + "id": 490, "abbreviation": "PRDN", "nameKr": "피리딘", "nameEn": "Pyridine", - "synonymsEn": "Pyridine / PY / AA / PYR / Azine / 2-PROPENOL / azabenzene / Pure pyridine / Pyridine anhydrous / Piridina / FEMA 2966", "synonymsKr": "피리딘 / 피리딘 / 아자벤젠 / 아진", + "synonymsEn": "Pyridine / PY / AA / PYR / Azine / 2-PROPENOL / azabenzene / Pure pyridine / Pyridine anhydrous / Piridina / FEMA 2966", "unNumber": "", "casNumber": "110-86-1", "transportMethod": "", @@ -65656,9 +38280,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "R", "ibcFireFighting": "AC", "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", "emsCode": "", @@ -65669,59 +38293,59 @@ { "code": "PRDN", "name": "Pyridine", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 960, - "abbreviation": "R22", - "nameKr": "클로로디플루오로메탄", - "nameEn": "Chlorodifluoromethane", - "synonymsEn": "Difluorochloromethane / R22 / CHLORODIFLUOROMETHANE / chloro / CHClF2 / HCFC-22 / CHF2Cl / f22 / Freon-22 / CFC-22 / CFC 22", - "synonymsKr": "클로로디플루오르메탄 / 클로로다이플루오로메테인 / 클로로디플루오로메탄 / 클로로디플루오르메탄 / 하이드로클로로플루오로카본22", - "unNumber": "", - "casNumber": "75-45-6", - "transportMethod": "", - "sebc": "", + "id": 491, + "abbreviation": "PYGAS", + "nameKr": "열분해 가솔린", + "nameEn": "Pyrolysis gasoline", + "synonymsKr": "", + "synonymsEn": "", + "unNumber": "1", + "casNumber": "68477-58-7", + "transportMethod": "포장(3급), 산적액체(Y류)", + "sebc": "FE (Float-Evaporator)", "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", + "state": "액체", + "color": "연황색", + "odor": "방향성", + "flashPoint": "-27~-11℃", + "autoIgnition": "463~520℃", "boilingPoint": "", - "density": "", - "solubility": "", + "density": "0.79~0.91", + "solubility": "불용", "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "vaporDensity": "2.8~3.8", + "explosionRange": "0.9~7.7%", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 3, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "고인화성, 부유증발(FE), 혼합물(벤젠/톨루엔 등)", + "ergNumber": "128", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "반경 800m 이상", + "responseDistanceSpillDay": "반경 50m 이상", + "responseDistanceSpillNight": "중 300m 이상", + "marineResponse": "해상부유, 증발", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "고인화성, 발암성, 흡인성 유해, 중추신경계", + "firstAid": "흡입: 두통, 몽롱함, 어지러움, 메스꺼움 → 신선한 공기, 산소공급, 인공호흡. 피부: 피부염, 발진, 건조, 갈라짐 → 15분 이상 비누와 물로 씻을 것. 안구: 피부자극, 통증 → 눈을 문지르지 말 것, 흐르는 물로 15분 이상 씻을 것. 경구: 발기부전, 소화기장애, 신장출혈 → 즉시 물로 입을 씻어낼 것.", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수 또는 내알코올 포말.", + "spillResponse": "모든 점화원 제거. 주변 해상 통제. 오일펜스/흡착재 회수.", "exposure": "", - "regulation": "" + "regulation": "CAS 68606-10-0" }, "ibcHazard": "", "ibcShipType": "", @@ -65729,1659 +38353,95 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", + "emsFirstAid": "", + "cargoCodes": [ + { + "code": "PYGAS", + "name": "Pyrolysis gasoline", + "company": "국제공통", + "source": "적부도" + } + ], + "portFrequency": [] + }, + { + "id": 492, + "abbreviation": "R22", + "nameKr": "클로로디플루오로메탄", + "nameEn": "Chlorodifluoromethane", + "synonymsKr": "클로로디플루오르메탄 / 클로로다이플루오로메테인 / 클로로디플루오로메탄 / 클로로디플루오르메탄 / 하이드로클로로플루오로카본22", + "synonymsEn": "Difluorochloromethane / R22 / CHLORODIFLUOROMETHANE / chloro / CHClF2 / HCFC-22 / CHF2Cl / f22 / Freon-22 / CFC-22 / CFC 22", + "unNumber": "", + "casNumber": "75-45-6", + "transportMethod": "포장(2.2급), 산적액화가스", + "sebc": "G (Gas)", + "usage": "", + "state": "기체(액화)", + "color": "무색", + "odor": "약한 에테르", + "flashPoint": "", + "autoIgnition": "632℃", + "boilingPoint": "-41℃", + "density": "1.49", + "solubility": "0.28 g/L (25℃)", + "vaporPressure": "7,250 mmHg (25℃)", + "vaporDensity": "3", + "explosionRange": "", + "nfpa": { + "health": 2, + "fire": 1, + "reactivity": 0, + "special": "" + }, + "hazardClass": "냉매, 비활성 가스, 단순 질식성", + "ergNumber": "126", + "idlh": "", + "aegl2": "", + "erpg2": "", + "responseDistanceFire": "50m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "100m", + "marineResponse": "기체로 확산", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", + "msds": { + "hazard": "단순 질식성, 동상 위험, 오존층파괴물질", + "firstAid": "흡입: 신선한 공기, 산소공급. 동상: 미온수 해동. 의료조치.", + "fireFighting": "가스 차단 우선. 용기 냉각.", + "spillResponse": "환기. 점화원 제거(분해 시 유독가스).", + "exposure": "TWA 1,000 ppm", + "regulation": "오존층보호법, 고압가스안전관리법" + }, + "ibcHazard": "", + "ibcShipType": "", + "ibcTankType": "", + "ibcDetection": "", + "ibcFireFighting": "", + "ibcMinRequirement": "", + "emsCode": "F-C, S-V", + "emsFire": "F-C", + "emsSpill": "S-V", "emsFirstAid": "", "cargoCodes": [ { "code": "R22", "name": "Chlorodifluoromethane", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 961, - "abbreviation": "RSAO", - "nameKr": "평지씨유, 채종유, 카놀라유", - "nameEn": "Rapeseed acid oil", - "synonymsEn": "RAPESEED OIL / Rapeoil / Rapsoel / AKOREX L / rapedoil / COLZAOIL / RAPESEED OIL / rapessed oil / USRAPESEEDOIL / LIPEX CANOLA-U / NEWRAPESEEDOIL", - "synonymsKr": "RAPE종자 기름 / RAPE종자기름 / 유채기름 / 유채기름 / 유채씨오일 / 카놀라오일", - "unNumber": "", - "casNumber": "8002-13-9", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RSAO", - "name": "Rapeseed acid oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 962, - "abbreviation": "RBDCAO", - "nameKr": "정제, 탈색, 탈취 공정을 거친 카놀라 오일", - "nameEn": "RBD Canola oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "1", - "casNumber": "120962-03-0", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RBDCAO", - "name": "RBD Canola oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 963, - "abbreviation": "RBDCNO", - "nameKr": "정제, 탈색, 탈취 공정을 거친 코코넛 오일", - "nameEn": "RBD Coconut oil", - "synonymsEn": "Coconut oil / COCOS NUCIFERA (COCONUT) OIL / Virgin Coconut oil / coconutbutter / Kokosnuoel / Coconut Oil – RBD / Koline / Copra. / oils,copra / Coconut oil / oils,coconut", - "synonymsKr": "야자유 / 야자유 / 코코넛버터 / 코코넛오일 / 코코넛야자씨버터 / 코코넛야자오일 / 코코넛오일(COCONUTOIL) / 코코넛 오일", - "unNumber": "", - "casNumber": "8001-31-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RBDCNO", - "name": "RBD Coconut oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 964, - "abbreviation": "RBDCORN", - "nameKr": "정제, 탈색, 탈취 공정을 거친 옥수수 오일", - "nameEn": "RBD Corn oil", - "synonymsEn": "RBD Corn oil", - "synonymsKr": "마이세 오일 / 마졸라 오일 / 마이제 오일 / 식물성 오일", - "unNumber": "-", - "casNumber": "8001-30-7", - "transportMethod": "", - "sebc": "", - "usage": "식용유, 연료 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RBDCORN", - "name": "RBD Corn oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 965, - "abbreviation": "RBDNPO", - "nameKr": "정제, 탈색, 탈취 공정을 거친 팜열매 오일", - "nameEn": "RBD Neutralized palm oil", - "synonymsEn": "PALM OIL / palm / oils,palm / ELAEIS GUINEENSIS (PALM) OIL / PALMFAT / PALM OIL / REDPALMOIL / PALM BUTTER / Oele, Palm- / CRUDEPALMOIL / Palmoilrefined", - "synonymsKr": "식물성 오일", - "unNumber": "1169", - "casNumber": "8002-75-3", - "transportMethod": "", - "sebc": "", - "usage": "식용유, 화장품, 세제, 의약품 제조 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RBDNPO", - "name": "RBD Neutralized palm oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 966, - "abbreviation": "RBDPKO", - "nameKr": "정제, 탈색, 탈취 공정을 거친 식물성 오일", - "nameEn": "RBD Palm kernel oil", - "synonymsEn": "PALM KERNEL OIL / W 500 / Tefacid / palmnutoil / W 500 (oil) / Palm seed oil / palm-kemel oil / PALMKERNELOILS / Oele, Palmkern- / PALM KERNEL OIL / Oils, palm kernel", - "synonymsKr": "오일팜커넬오일 / 오일팜커넬오일 / 야자핵유 / 팜커널오일", - "unNumber": "", - "casNumber": "8023-79-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RBDPKO", - "name": "RBD Palm kernel oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 967, - "abbreviation": "RBDPKL", - "nameKr": "정제, 탈색, 탈취 공정을 거친 파인 코어 오린", - "nameEn": "RBD Palm kernel olein", - "synonymsEn": "PALM KERNEL OIL / W 500 / Tefacid / palmnutoil / W 500 (oil) / Palm seed oil / palm-kemel oil / PALMKERNELOILS / Oele, Palmkern- / PALM KERNEL OIL / Oils, palm kernel", - "synonymsKr": "오일팜커넬오일 / 오일팜커넬오일 / 야자핵유 / 팜커널오일", - "unNumber": "", - "casNumber": "8023-79-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RBDPKL", - "name": "RBD Palm kernel olein", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 968, - "abbreviation": "RBDPKS", - "nameKr": "정제, 탈색, 탈취 공정을 거친 팜핵 스테아린", - "nameEn": "RBD Palm kernel stearin", - "synonymsEn": "PALM KERNEL OIL / W 500 / Tefacid / palmnutoil / W 500 (oil) / Palm seed oil / palm-kemel oil / PALMKERNELOILS / Oele, Palmkern- / PALM KERNEL OIL / Oils, palm kernel", - "synonymsKr": "오일팜커넬오일 / 오일팜커넬오일 / 야자핵유 / 팜커널오일", - "unNumber": "1", - "casNumber": "91079-14-0", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RBDPKS", - "name": "RBD Palm kernel stearin", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 969, - "abbreviation": "RBDPMF", - "nameKr": "", - "nameEn": "RBD Palm mid fraction", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RBDPMF", - "name": "RBD Palm mid fraction", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 970, - "abbreviation": "RBDPO", - "nameKr": "정제, 탈색, 탈취 공정을 거친 팜유", - "nameEn": "RBD Palm oil", - "synonymsEn": "PALM OIL / palm / oils,palm / ELAEIS GUINEENSIS (PALM) OIL / PALMFAT / PALM OIL / REDPALMOIL / PALM BUTTER / Oele, Palm- / CRUDEPALMOIL / Palmoilrefined", - "synonymsKr": "아메리카오일팜열매오일 / 아메리카오일팜열매오일 / 오일팜버터 / 오일팜오일 / 야자유(과실로 부터)", - "unNumber": "1169", - "casNumber": "8002-75-3", - "transportMethod": "", - "sebc": "", - "usage": "식용유, 화장품, 세제, 의약품 제조 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RBDPO", - "name": "RBD Palm oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 971, - "abbreviation": "RBDPL", - "nameKr": "정제, 탈색, 탈취 공정을 거친 팜 올레인", - "nameEn": "RBD Palm olein", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "1", - "casNumber": "93334-39-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RBDPL", - "name": "RBD Palm olein", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 972, - "abbreviation": "RBDPS", - "nameKr": "정제, 탈색, 탈취 공정을 거친 팜스테아린", - "nameEn": "RBD Palm stearin", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "1", - "casNumber": "91079-14-0", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RBDPS", - "name": "RBD Palm stearin", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 973, - "abbreviation": "RBDRSO", - "nameKr": "정제, 탈색, 탈취 공정을 거친 유채 오일", - "nameEn": "RBD Rapeseed oil", - "synonymsEn": "RAPESEED OIL / Rapeoil / Rapsoel / AKOREX L / rapedoil / COLZAOIL / RAPESEED OIL / rapessed oil / USRAPESEEDOIL / LIPEX CANOLA-U / NEWRAPESEEDOIL", - "synonymsKr": "RAPE종자 기름 / RAPE종자기름 / 유채기름 / 유채기름 / 유채씨오일 / 카놀라오일", - "unNumber": "", - "casNumber": "8002-13-9", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RBDRSO", - "name": "RBD Rapeseed oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 974, - "abbreviation": "RBDSBO", - "nameKr": "정제, 탈색, 탈취 공정을 거친 콩기름", - "nameEn": "RBD Soyabean oil", - "synonymsEn": "Soybean oil / soybean / SOYASAPONIN / Soy oil / SOYA OIL / CAP 18 (oil) / SOYBEAN POLAR LIPID EXTRACT / A6OIL / CAP 18 / D04962 / HY 3050", - "synonymsKr": "대두 기름 / 대두기름 / 대두기름(SOYBEANOIL) / 돌콩오일 / 대두유", - "unNumber": "", - "casNumber": "8001-22-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RBDSBO", - "name": "RBD Soyabean oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 975, - "abbreviation": "RBDSQPL", - "nameKr": "", - "nameEn": "RBD Special quarility palm olein", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RBDSQPL", - "name": "RBD Special quarility palm olein", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 976, - "abbreviation": "RCAO", - "nameKr": "정제된 카놀라유", - "nameEn": "Refined Canola oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "1", - "casNumber": "120962-03-0", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RCAO", - "name": "Refined Canola oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 977, - "abbreviation": "RCNO", - "nameKr": "정제된 코코넛 오일", - "nameEn": "Refined Coconut oil", - "synonymsEn": "Coconut oil / COCOS NUCIFERA (COCONUT) OIL / Virgin Coconut oil / coconutbutter / Kokosnuoel / Coconut Oil – RBD / Koline / Copra. / oils,copra / Coconut oil / oils,coconut", - "synonymsKr": "야자유 / 야자유 / 코코넛버터 / 코코넛오일 / 코코넛야자씨버터 / 코코넛야자오일 / 코코넛오일(COCONUTOIL) / 코코넛 오일", - "unNumber": "", - "casNumber": "8001-31-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RCNO", - "name": "Refined Coconut oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 978, - "abbreviation": "RCORN", - "nameKr": "정제된 옥수수 오일", - "nameEn": "Refined Corn oil", - "synonymsEn": "Refined Corn oil", - "synonymsKr": "마이세 오일 / 마졸라 오일 / 마이제 오일 / 식물성 오일", - "unNumber": "-", - "casNumber": "8001-30-7", - "transportMethod": "", - "sebc": "", - "usage": "식용유, 연료 등", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RCORN", - "name": "Refined Corn oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 979, - "abbreviation": "RGNO", - "nameKr": "정제된 땅콩 오일", - "nameEn": "Refined Groundnut oil", - "synonymsEn": "PEANUT OIL / PEANUT OIL / ARACHIS OIL / katchungoil / earthnutoil / ARACHIDICOIL / OIL OF PEANUT / GROUND NUT OIL / REFINEDPEANUTOIL / Peanut Oil (AS) / Peanut Oil (1 g)", - "synonymsKr": "식물성 오일", - "unNumber": "", - "casNumber": "8002-03-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RGNO", - "name": "Refined Groundnut oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 980, - "abbreviation": "RLSO", - "nameKr": "정제된 아마인유", - "nameEn": "Refined Linseed oil", - "synonymsEn": "Linseed oil / FLAXSEED OIL / groco / l-310 / P 1037 / PU 104 / leinol / Flaxoil / Purolin / d= 0.93 / Scan-Oil", - "synonymsKr": "아마인유 / 아마인기름,RAW / 플렉스시드기름 / RAW아마인기름 / 아마씨기름 / 아마인기름,표백한 / 아마인유 / 올레움리니 / 아마인오일 / 아마씨오일 / 아마씨기름(LINSEEDOIL) / 기름, 아마인 / 아마씨 기름 / 아마씨 기름, 표백 / 아마인 기름", - "unNumber": "", - "casNumber": "8001-26-1", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RLSO", - "name": "Refined Linseed oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 981, - "abbreviation": "RPO", - "nameKr": "정제된 팜유", - "nameEn": "Refined Palm oil", - "synonymsEn": "PALM OIL / palm / oils,palm / ELAEIS GUINEENSIS (PALM) OIL / PALMFAT / PALM OIL / REDPALMOIL / PALM BUTTER / Oele, Palm- / CRUDEPALMOIL / Palmoilrefined", - "synonymsKr": "아메리카오일팜열매오일 / 아메리카오일팜열매오일 / 오일팜버터 / 오일팜오일 / 야자유(과실로 부터)", - "unNumber": "1169", - "casNumber": "8002-75-3", - "transportMethod": "", - "sebc": "", - "usage": "식용유, 화장품, 세제, 의약품 제조 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RPO", - "name": "Refined Palm oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 982, - "abbreviation": "RRSO", - "nameKr": "정제된 래피시드 오일", - "nameEn": "Refined Rapeseed oil", - "synonymsEn": "RAPESEED OIL / Rapeoil / Rapsoel / AKOREX L / rapedoil / COLZAOIL / RAPESEED OIL / rapessed oil / USRAPESEEDOIL / LIPEX CANOLA-U / NEWRAPESEEDOIL", - "synonymsKr": "RAPE종자 기름 / RAPE종자기름 / 유채기름 / 유채기름 / 유채씨오일 / 카놀라오일", - "unNumber": "", - "casNumber": "8002-13-9", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RRSO", - "name": "Refined Rapeseed oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 983, - "abbreviation": "RSBO", - "nameKr": "정제된 대두유", - "nameEn": "Refined Soya bean oil", - "synonymsEn": "Soybean oil / soybean / SOYASAPONIN / Soy oil / SOYA OIL / CAP 18 (oil) / SOYBEAN POLAR LIPID EXTRACT / A6OIL / CAP 18 / D04962 / HY 3050", - "synonymsKr": "대두 기름 / 대두기름 / 대두기름(SOYBEANOIL) / 돌콩오일 / 대두유", - "unNumber": "", - "casNumber": "8001-22-7", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RSBO", - "name": "Refined Soya bean oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 984, - "abbreviation": "RSUN", - "nameKr": "정제된 해바라기 씨 유", - "nameEn": "Refined Sunflowerseed oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "1", - "casNumber": "8001-21-6", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RSUN", - "name": "Refined Sunflowerseed oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 985, + "id": 493, "abbreviation": "RFMT", "nameKr": "개질석유", "nameEn": "Reformate", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "68919-37-9", "transportMethod": "", @@ -67437,87 +38497,19 @@ { "code": "RFMT", "name": "Reformate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 986, - "abbreviation": "RGSLN", - "nameKr": "일반 휘발유", - "nameEn": "Regular unleaded gasoline", - "synonymsEn": "gasoline / GASOLINE / PIANO Gasoline / Cleaning solven / RFA Gasoline@Blank / TIANFU-CHEM gasoline / RF-A Gasoline(Technical) / PIANO Gasoline (with MtBE) / GASOLINE(FROM50-100OCTANE) / PIANO Gasoline (with Ethanol) / Gasoline - Premium@0.5 mg/mL in MeOH", - "synonymsKr": "휘발유 / 가솔린 / 휘발유 / 가솔린, 천연 / 경질 가솔린", - "unNumber": "", - "casNumber": "8006-61-9", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RGSLN", - "name": "Regular unleaded gasoline", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 987, + "id": 494, "abbreviation": "RICE", "nameKr": "쌀겨유", "nameEn": "Rice bran oil", - "synonymsEn": "RICE BRAN OIL / refined / BRANOIL / Rice bean oil / RICE BRAN OIL / Oils, rice bran / oryza sativa powder / Edible Rice Bran Oil / oryza sativa seed oil / TIANFU-CHEM RICE BRAN OIL / ORYZA SATIVA (RICE) EXTRACT", "synonymsKr": "라이스 브랜 오일 / 라이스브랜오일 / 라이스브랜오일 / 쌀겨오일 / 쌀겨오일추출물 / 쌀배아오일 / 쌀추출물 / 현미추출물 / 쌀겨기름", + "synonymsEn": "RICE BRAN OIL / refined / BRANOIL / Rice bean oil / RICE BRAN OIL / Oils, rice bran / oryza sativa powder / Edible Rice Bran Oil / oryza sativa seed oil / TIANFU-CHEM RICE BRAN OIL / ORYZA SATIVA (RICE) EXTRACT", "unNumber": "", "casNumber": "68553-81-1", "transportMethod": "", @@ -67560,11 +38552,11 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 2(k)TYPE", + "ibcShipType": "2(k)", "ibcTankType": "2G", - "ibcDetection": "No", + "ibcDetection": "O", "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", + "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7,\n16.2.9", "emsCode": "", "emsFire": "", "emsSpill": "", @@ -67573,19 +38565,19 @@ { "code": "RICE", "name": "Rice bran oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 988, + "id": 495, "abbreviation": "RICIACID", "nameKr": "리신올레산", "nameEn": "Ricinoleic acid", - "synonymsEn": "Ricinoleic acid / RICINOLIC ACID / Ricinoleic aci / 12-HYDROXY-9-OCTADECENOIC ACID / CS 80 / H 1657 / Cenwax C / P -10 acid / NSC 281242 / ricinicacid / Ricinic acid", "synonymsKr": "리시놀레 산 / 리시놀레산 / 리시놀레산 / 리시놀레익애씨드", + "synonymsEn": "Ricinoleic acid / RICINOLIC ACID / Ricinoleic aci / 12-HYDROXY-9-OCTADECENOIC ACID / CS 80 / H 1657 / Cenwax C / P -10 acid / NSC 281242 / ricinicacid / Ricinic acid", "unNumber": "", "casNumber": "141-22-0", "transportMethod": "", @@ -67641,223 +38633,19 @@ { "code": "RICIACID", "name": "Ricinoleic acid", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 989, - "abbreviation": "REO", - "nameKr": "", - "nameEn": "Rubber extender oil 1 (EO-1)", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "REO", - "name": "Rubber extender oil 1 (EO-1)", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 990, - "abbreviation": "RSAFF", - "nameKr": "사프란 오일", - "nameEn": "Safflower oil", - "synonymsEn": "Safflower oil / Safloroel / safflower / thistleoil / SAFFLOWER OIL / SAFFLOWEROIL,USP / HYBRIDSAFFLOWEROIL / Oil Of Safflower / SAFFLOWER SEED OIL / Hi-oleicsaffloweroil / organic safflower oil", - "synonymsKr": "잇꽃씨오일 / 잇꽃씨오일", - "unNumber": "", - "casNumber": "8001-23-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2(k)TYPE", - "ibcTankType": "2G", - "ibcDetection": "No", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "RSAFF", - "name": "Safflower oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 991, - "abbreviation": "SALFAT", - "nameKr": "", - "nameEn": "Sal fat", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SALFAT", - "name": "Sal fat", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 992, + "id": 496, "abbreviation": "SWO", "nameKr": "샌달우드 오일", "nameEn": "Sandalwood oil", - "synonymsEn": "Sandalwood oil / Arheol / FEMA 3005 / sandaloil / santaloil / sandlewood / oilofsantal / sandlewoodoil / santalwoodoil / SANTALUM ALBUM / SANDELWOOD OIL", "synonymsKr": "단향오일 / 단향오일", + "synonymsEn": "Sandalwood oil / Arheol / FEMA 3005 / sandaloil / santaloil / sandlewood / oilofsantal / sandlewoodoil / santalwoodoil / SANTALUM ALBUM / SANDELWOOD OIL", "unNumber": "", "casNumber": "8006-87-9", "transportMethod": "", @@ -67913,495 +38701,19 @@ { "code": "SWO", "name": "Sandalwood oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 993, - "abbreviation": "SRLI85V", - "nameKr": "", - "nameEn": "Saraline 185V", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SRLI85V", - "name": "Saraline 185V", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 994, - "abbreviation": "SRP147", - "nameKr": "", - "nameEn": "Sarapar 147", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SRP147", - "name": "Sarapar 147", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 995, - "abbreviation": "SSL150/200", - "nameKr": "등유(제품명)", - "nameEn": "Sarasol 150/200", - "synonymsEn": "Kerosene / KEROSINE / jp-5 / KEROSENE OIL / jeta / jp-8 / Kerosene(Technical) / nafta / Avtur / jeta-1 / deobase", - "synonymsKr": "케로신 / 등유,연료오일,콜오일,레인지오일,모빌케로신 / 케로신 / 등유 / 케로센 / 레인지오일 / 콜오일 / 모빌케로신 / 케로센제트연료 / 케로센오돌레스 / 디오도라이즈드케로신 / 케로젠", - "unNumber": "", - "casNumber": "8008-20-6", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SSL150/200", - "name": "Sarasol 150/200", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 996, - "abbreviation": "SSL175/360", - "nameKr": "", - "nameEn": "Sarasol 175/360", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SSL175/360", - "name": "Sarasol 175/360", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 997, - "abbreviation": "SSL210/350", - "nameKr": "", - "nameEn": "Sarasol 210/350", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SSL210/350", - "name": "Sarasol 210/350", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 998, - "abbreviation": "SSL40", - "nameKr": "파라핀계 용매(제품명) / 페인트 용도", - "nameEn": "Sarasol 40", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "-", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SSL40", - "name": "Sarasol 40", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 999, - "abbreviation": "SSL85", - "nameKr": "파라핀계 용매(제품명) / 페인트 용도", - "nameEn": "Sarasol 85", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "-", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SSL85", - "name": "Sarasol 85", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1000, + "id": 497, "abbreviation": "SDNO", "nameKr": "멸치 기름", "nameEn": "Sardine oil", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "93334-41-9", "transportMethod": "", @@ -68457,87 +38769,19 @@ { "code": "SDNO", "name": "Sardine oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 1001, - "abbreviation": "SBPX95", - "nameKr": "", - "nameEn": "SBP X95", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SBPX95", - "name": "SBP X95", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1002, + "id": 498, "abbreviation": "SW", "nameKr": "해수", "nameEn": "Sea water", - "synonymsEn": "Water / Aqua / SODIUM HYDROXIDE SOLUTION / CAUSTIC SODA FLAKE / Di water / SODIUM HYDRATE / SODA CAUSTIC / Wasser / CAUSTIC SODA LIQUID / Oxidane / Pure Water", "synonymsKr": "물 / 수소산화물(H2O) / 얼음 / 증류수 / 디수소산화물 / 물 / 정제수 / 미네랄워터 / 물(WATER)", + "synonymsEn": "Water / Aqua / SODIUM HYDROXIDE SOLUTION / CAUSTIC SODA FLAKE / Di water / SODIUM HYDRATE / SODA CAUSTIC / Wasser / CAUSTIC SODA LIQUID / Oxidane / Pure Water", "unNumber": "", "casNumber": "7732-18-5", "transportMethod": "", @@ -68593,19 +38837,19 @@ { "code": "SW", "name": "Sea water", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 1003, + "id": 499, "abbreviation": "SAACE", "nameKr": "초산 제2아밀", "nameEn": "sec-Amyl acetate", - "synonymsEn": "1-METHYLBUTYL ACETATE / 2-Acetoxypentane / sec-Amyl acetate / SEC-PENTYL ACETATE / pentan-2-yl acetate / 2-Pentanol, acetate / 1-Methylbutylacetat / 1-METHYLBUTYL ACETATE / pentan-2-yl ethanoate / 2-Pentanol, 2-acetate / ACETIC ACID-2-PENTYL ESTER", "synonymsKr": "초산 제2아밀 / 초산이차-아밀 / 초산제2아밀 / 초산이차-아밀 / 2-페닐 아세테이트 / 1-메틸부틸아세테이트", + "synonymsEn": "1-METHYLBUTYL ACETATE / 2-Acetoxypentane / sec-Amyl acetate / SEC-PENTYL ACETATE / pentan-2-yl acetate / 2-Pentanol, acetate / 1-Methylbutylacetat / 1-METHYLBUTYL ACETATE / pentan-2-yl ethanoate / 2-Pentanol, 2-acetate / ACETIC ACID-2-PENTYL ESTER", "unNumber": "", "casNumber": "626-38-0", "transportMethod": "", @@ -68661,19 +38905,19 @@ { "code": "SAACE", "name": "sec-Amyl acetate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 1004, + "id": 500, "abbreviation": "SAAL", "nameKr": "2-펜타놀", "nameEn": "sec-Amyl alcohol", - "synonymsEn": "", "synonymsKr": "", + "synonymsEn": "", "unNumber": "1", "casNumber": "6032-29-7", "transportMethod": "", @@ -68716,9 +38960,9 @@ "regulation": "" }, "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", + "ibcShipType": "3", "ibcTankType": "2G", - "ibcDetection": "FT", + "ibcDetection": "R", "ibcFireFighting": "ABC", "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", "emsCode": "", @@ -68729,19 +38973,19 @@ { "code": "SAAL", "name": "sec-Amyl alcohol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 1005, + "id": 501, "abbreviation": "SBACE", "nameKr": "초산sec부틸", "nameEn": "sec-Butyl acetate", - "synonymsEn": "DL-sec-Butyl acetate / SEC-BUTYL ACETATE / sec-butyl / 2-Butyl acetate / 1-Methylpropyl acetate / secondary / S-BUTYL ACETATE / 2-Butanol acetate / CH3COOCH(CH3)C2H5 / 1-Methylpropyl ethanoate / aceticacidsecondarybutylester", "synonymsKr": "초산sec부틸 / sec-부틸아세트산 / 초산이차-부틸 / 초산sec부틸 / 초산이차-부틸 / SEC-부틸 아세테이트 / sec-부틸아세테이트", + "synonymsEn": "DL-sec-Butyl acetate / SEC-BUTYL ACETATE / sec-butyl / 2-Butyl acetate / 1-Methylpropyl acetate / secondary / S-BUTYL ACETATE / 2-Butanol acetate / CH3COOCH(CH3)C2H5 / 1-Methylpropyl ethanoate / aceticacidsecondarybutylester", "unNumber": "", "casNumber": "105-46-4", "transportMethod": "", @@ -68797,55 +39041,55 @@ { "code": "SBACE", "name": "sec-Butyl acetate", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 1006, + "id": 502, "abbreviation": "SBAL", "nameKr": "sec-부탄올", "nameEn": "sec-Butyl alcohol", + "synonymsKr": "2-부틸알코올", "synonymsEn": "2-Butanol / BUTAN-2-OL / SEC-BUTANOL / SEC-BUTYL ALCOHOL / SECONDARY BUTYL ALCOHOL / s-Butanol / Butanol-2 / (RS)-2-butanol / S-BUTYL ALCOHOL / 1-Methyl propanol / ccs301", - "synonymsKr": "sec-부탄올 / sec-부틸알코올 / 2-부틸알코올 / 2-히드록시부탄 / SEC-부탄올 / 메틸에틸카빈올 / 부타놀 / 부탄올-2 / 부틸렌수화물 / 에틸메틸카빈올 / 2-부탄올 / DL-SEC-부탄올 / DL-메틸에틸카르비놀 / 부타놀-이소 / 부탄-2-올 / 이차뷰틸알코올 / 제2부탄올 / SEC-부틸알코올 / 2-부탄올 / 메틸에틸카빈올 / 2-부틸알코올", - "unNumber": "", - "casNumber": "78-92-2", + "unNumber": "1120", + "casNumber": "15892-23-6", "transportMethod": "", "sebc": "", "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", + "state": "액체", + "color": "무색", + "odor": "달콤한 냄새", + "flashPoint": "27℃", + "autoIgnition": "자료없음", "boilingPoint": "", - "density": "", + "density": "0.808", "solubility": "", - "vaporPressure": "", - "vaporDensity": "", + "vaporPressure": "(물 17.5mmHg)", + "vaporDensity": "2.6", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, + "health": 2, + "fire": 3, "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "유해액체물질/Z", "ergNumber": "", - "idlh": "", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "용해 (D)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 신선한 곳으로 옮김, 인공호흡, 호흡곤란 시 산소투입 피부접촉 • 긴급 의료조치, 즉시 20분 이상 흐르는 물에 피무와 눈을 씻을 것 안구접촉 • 몇 분간 물로 조심해서 씻을 것, 콘택트렌즈 제거 경구섭취 • 의학조치", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -68865,87 +39109,19 @@ { "code": "SBAL", "name": "sec-Butyl alcohol", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 1007, - "abbreviation": "SRFISH", - "nameKr": "반정제 어유", - "nameEn": "Semi refined fish oil", - "synonymsEn": "Fish oil / Krill oil / Promega / Omega-3 Oil / Oils, fish / Fish oil DHA/EPA / Fish oil USP/EP/BP / Fsh oil / Fish oil / Oele, Fisch- / Fish Oil (1 g)", - "synonymsKr": "어류오일 / 어류오일 / 어유", - "unNumber": "", - "casNumber": "8016-13-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SRFISH", - "name": "Semi refined fish oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1008, + "id": 503, "abbreviation": "SESAMI", "nameKr": "참기름", "nameEn": "Sesami oil", - "synonymsEn": "Sesame Oil / sextra / sesame / BENNE OIL / Sesame Oi / SESAME OIL / Oils,sesame / gingillioil / 3vialsa'6mg / SESAMEOIL,NF / SESAMI OLEUM", "synonymsKr": "SESAME 기름 / SESAME기름 / 참깨기름 / 참깨기름 / 참깨오일 / 향유", + "synonymsEn": "Sesame Oil / sextra / sesame / BENNE OIL / Sesame Oi / SESAME OIL / Oils,sesame / gingillioil / 3vialsa'6mg / SESAMEOIL,NF / SESAMI OLEUM", "unNumber": "", "casNumber": "8008-74-0", "transportMethod": "", @@ -69001,19 +39177,19 @@ { "code": "SESAMI", "name": "Sesami oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 1009, + "id": 504, "abbreviation": "SHARK", "nameKr": "상어뼈 오일", "nameEn": "Shark oil", - "synonymsEn": "Oils, shark-liver / SQUALI LECUR / Oele, Hai-Leber- / Oils, shark-liver / Fats and Glyceridic oils, shark-liver", "synonymsKr": "고래-간 오일 / 고래-간오일 / 고래-간오일 / 상어간오일 / 오일,상어간", + "synonymsEn": "Oils, shark-liver / SQUALI LECUR / Oele, Hai-Leber- / Oils, shark-liver / Fats and Glyceridic oils, shark-liver", "unNumber": "", "casNumber": "68990-63-6", "transportMethod": "", @@ -69069,19 +39245,19 @@ { "code": "SHARK", "name": "Shark oil", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 1010, + "id": 505, "abbreviation": "SHEA", "nameKr": "시어넛 버터", "nameEn": "Shea nut butter", - "synonymsEn": "BUTYROSPERMUM PARKII (SHEA BUTTER) / butyrospermum parkii butter / Shea Liquid / Shea Butter SB-I / Shea Butter Powder / Shea Liquid - Lo Freeze / Shea Butter Organic Certified / SHEA BUTTER BUTYROSPERMUM PARKII / BUTYROSPERMUM PARKII (SHEA BUTTER) / Fats and Glyceridic oils, shea butter / BUTYROSPERMUM PARKII (SHEA BUTTER LIQUID)", "synonymsKr": "시어버터글리세라이즈 / 시어버터글리세라이즈 / 시어버터불검화물", + "synonymsEn": "BUTYROSPERMUM PARKII (SHEA BUTTER) / butyrospermum parkii butter / Shea Liquid / Shea Butter SB-I / Shea Butter Powder / Shea Liquid - Lo Freeze / Shea Butter Organic Certified / SHEA BUTTER BUTYROSPERMUM PARKII / BUTYROSPERMUM PARKII (SHEA BUTTER) / Fats and Glyceridic oils, shea butter / BUTYROSPERMUM PARKII (SHEA BUTTER LIQUID)", "unNumber": "", "casNumber": "194043-92-0", "transportMethod": "", @@ -69137,1447 +39313,25 @@ { "code": "SHEA", "name": "Shea nut butter", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1011, - "abbreviation": "SHEAS", - "nameKr": "시스테아린", - "nameEn": "Shea stearin", - "synonymsEn": "BUTYROSPERMUM PARKII (SHEA BUTTER) / butyrospermum parkii butter / Shea Liquid / Shea Butter SB-I / Shea Butter Powder / Shea Liquid - Lo Freeze / Shea Butter Organic Certified / SHEA BUTTER BUTYROSPERMUM PARKII / BUTYROSPERMUM PARKII (SHEA BUTTER) / Fats and Glyceridic oils, shea butter / BUTYROSPERMUM PARKII (SHEA BUTTER LIQUID)", - "synonymsKr": "시어버터글리세라이즈 / 시어버터글리세라이즈 / 시어버터불검화물", - "unNumber": "", - "casNumber": "194043-92-0", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ + "company": "국제공통", + "source": "적부도" + }, { "code": "SHEAS", "name": "Shea stearin", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 1012, - "abbreviation": "SF131", - "nameKr": "", - "nameEn": "Shell flex 131", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SF131", - "name": "Shell flex 131", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1013, - "abbreviation": "SF210", - "nameKr": "", - "nameEn": "Shell flex 210", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SF210", - "name": "Shell flex 210", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1014, - "abbreviation": "SF212", - "nameKr": "", - "nameEn": "Shell flex 212", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SF212", - "name": "Shell flex 212", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1015, - "abbreviation": "SF213", - "nameKr": "", - "nameEn": "Shell flex 213", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SF213", - "name": "Shell flex 213", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1016, - "abbreviation": "SF214", - "nameKr": "", - "nameEn": "Shell flex 214", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SF214", - "name": "Shell flex 214", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1017, - "abbreviation": "SF274", - "nameKr": "", - "nameEn": "Shell flex 274", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SF274", - "name": "Shell flex 274", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1018, - "abbreviation": "SF293", - "nameKr": "", - "nameEn": "Shell flex 293", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SF293", - "name": "Shell flex 293", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1019, - "abbreviation": "SF310", - "nameKr": "", - "nameEn": "Shell flex 310", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SF310", - "name": "Shell flex 310", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1020, - "abbreviation": "SF3310", - "nameKr": "", - "nameEn": "Shell flex 3310", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SF3310", - "name": "Shell flex 3310", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1021, - "abbreviation": "SF371", - "nameKr": "", - "nameEn": "Shell flex 371", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SF371", - "name": "Shell flex 371", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1022, - "abbreviation": "SF412", - "nameKr": "", - "nameEn": "Shell flex 412", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SF412", - "name": "Shell flex 412", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1023, - "abbreviation": "SF625", - "nameKr": "", - "nameEn": "Shell flex 625", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SF625", - "name": "Shell flex 625", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1024, - "abbreviation": "SF6371S", - "nameKr": "", - "nameEn": "Shell flex 6371S", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SF6371S", - "name": "Shell flex 6371S", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1025, - "abbreviation": "SF6371UV", - "nameKr": "", - "nameEn": "Shell flex 6371UV", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SF6371UV", - "name": "Shell flex 6371UV", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1026, - "abbreviation": "SF683", - "nameKr": "", - "nameEn": "Shell flex 683", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SF683", - "name": "Shell flex 683", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1027, - "abbreviation": "SF700", - "nameKr": "", - "nameEn": "Shell flex 700", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SF700", - "name": "Shell flex 700", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1028, - "abbreviation": "SF724", - "nameKr": "", - "nameEn": "Shell flex 724", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SF724", - "name": "Shell flex 724", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1029, - "abbreviation": "SF790", - "nameKr": "", - "nameEn": "Shell flex 790", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SF790", - "name": "Shell flex 790", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1030, - "abbreviation": "SF881", - "nameKr": "", - "nameEn": "Shell flex 881", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SF881", - "name": "Shell flex 881", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1031, - "abbreviation": "SNF", - "nameKr": "", - "nameEn": "Shell Neoflex", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SNF", - "name": "Shell Neoflex", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1032, + "id": 506, "abbreviation": "SS60/145", "nameKr": "공업용 용제", "nameEn": "Shellsol 60/145", - "synonymsEn": "PETROLEUM ETHER / HEXANES / NAPHTHA / PETROL / BENZINE / LIGROIN / LIGROINE / light / PETROLEUM OIL / NAPHTHA SOLVENT / PETROLEUM SPIRIT", "synonymsKr": "고무시멘트 희석제 / 고무시멘트희석제 / 솔벤트나프타(석유),경질지방족화합물 / 솔벤트나프타(석유),경질지방족화합물", + "synonymsEn": "PETROLEUM ETHER / HEXANES / NAPHTHA / PETROL / BENZINE / LIGROIN / LIGROINE / light / PETROLEUM OIL / NAPHTHA SOLVENT / PETROLEUM SPIRIT", "unNumber": "", "casNumber": "64742-89-8", "transportMethod": "", @@ -70633,87 +39387,19 @@ { "code": "SS60/145", "name": "Shellsol 60/145", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 1033, - "abbreviation": "SSA100", - "nameKr": "목재 방부제용 용재", - "nameEn": "Shellsol A100", - "synonymsEn": "Solvent naphtha (petroleum), light arom. / Solvent naphtha (petroleum) / SHELLSOLA / C9-10 AROMATIC HYDROCARBONS / 400N base oil / White oil No.5 / 150BS base oil / AROMATIC SOLVENT S-100 / aromatic naphtha, type I / HIGHFLASHAROMATICNAPHTHA / LIGHTAROMATICSOLVENTNAPHTHA", - "synonymsKr": "경 방향족 화합물 용제 나프타 / 경방향족화합물용제나프타 / 솔벤트나프타(석유),경질방향족화합물 / 솔벤트나프타(석유),경질방향족화합물 / C9-10아로마틱하이드로카본 / 솔벤트나프타(석유),가벼운방향족.", - "unNumber": "", - "casNumber": "64742-95-6", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SSA100", - "name": "Shellsol A100", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1034, + "id": 507, "abbreviation": "SSA90", "nameKr": "휘발성 유기 화합물", "nameEn": "Shellsol A90", + "synonymsKr": "히드로처리된 중 나프타 / 수소처리된중질나프타(석유) / 히드로처리된중나프타 / 수소처리된중질나프타(석유) / C10-11아이소파라핀 / C10-12알케인 / 사이클로알케인 / C10-13아이소파라핀 / C11-12아이소파라핀 / C11-13아이소파라핀", "synonymsEn": "ISOPARAFFIN L, SYNTHESIS GRADE / ISOPARAFFIN L / Naphtha, hydrotreated heavy. / Hydrotreatedheavynaphtha(petroleum) / Naphtha,petroleum,hydrotreatedheavy / naphtha(petroleum),hydrotreatedheavy / Naphtha (petroleum), hydrotreated heavy Low boiling point hydrogen treated naphtha / ISOL H / ISSANE / IPOPAR G / SK-ISOL H", - "synonymsKr": "히드로처리된 중 나프타 / 수소처리된중질나프타(석유) / 히드로처리된중나프타 / 수소처리된중질나프타(석유) / C10-11아이소파라핀 / C10-12알케인/사이클로알케인 / C10-13아이소파라핀 / C11-12아이소파라핀 / C11-13아이소파라핀", "unNumber": "", "casNumber": "64742-97-4", "transportMethod": "", @@ -70769,3593 +39455,57 @@ { "code": "SSA90", "name": "Shellsol A90", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 1035, - "abbreviation": "SSAB", - "nameKr": "중량 방향족 나프타", - "nameEn": "Shellsol AB", - "synonymsEn": "Generichydrocarbon heavy aromatic mixed ethylbenzenes solvent naphtha petroleum hydrocarbon", - "synonymsKr": "중 방향족 화합물 용제 나프타 / 솔벤트나프타(석유),중질방향족화합물 / 중방향족화합물용제나프타 / 나프탈렌 / 타르캄포 / 흰타르 / 나프텐 / 둥근방충제나프탈린 / C10-11아로마틱하이드로카본 / C12-15알케인/사이클로알케인/아로마틱하이드로카본 / 솔벤트나프타(석유),중질방향족화합물(SOLVENTNAPHTHA(PETROLEUM),HEAVYAROMATIC)", - "unNumber": "", - "casNumber": "64742-94-5", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SSAB", - "name": "Shellsol AB", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1036, - "abbreviation": "SSD70", - "nameKr": "알리파틱 석유 솔벤트(파라핀과 나프텐 구성)", - "nameEn": "Shellsol D70", - "synonymsEn": "·Kerosene (hydrotreated) distillates petroleum hydrotreated light petroleum distillates hydrotreated light Blend 3577 B 2183 Exxsol D40 Naphtha Heavy Aromatic Distillate (HAD) Asia Exxsol D80 Fluid Asia Isopar M Fluid D-80 petroleum hydrocarbon solvent Deobase Exsol (misspelling0) Exxsol D80 deodorised deodourized deodourised deodorized kerosine kerosene hydrotreated light petroleum distillate paraffin redistilled kerosene odourless kerosene", - "synonymsKr": "히드로처리된 경 증류 / 수소처리된경질정제유(석유) / 히드로처리된경증류 / 수소처리된경질정제유(석유)(DISTILLATES(PETROLEUM),HYDROTREATEDLIGHT) / C11-15알케인/사이클로알케인 / C13-14아이소파라핀", - "unNumber": "", - "casNumber": "64742-47-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SSD70", - "name": "Shellsol D70", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1037, - "abbreviation": "SSE", - "nameKr": "알리파틱 석유 솔벤트(파라핀과 나프텐 구성)", - "nameEn": "Shellsol E", - "synonymsEn": "·Kerosene (hydrotreated) distillates petroleum hydrotreated light petroleum distillates hydrotreated light Blend 3577 B 2183 Exxsol D40 Naphtha Heavy Aromatic Distillate (HAD) Asia Exxsol D80 Fluid Asia Isopar M Fluid D-80 petroleum hydrocarbon solvent Deobase Exsol (misspelling0) Exxsol D80 deodorised deodourized deodourised deodorized kerosine kerosene hydrotreated light petroleum distillate paraffin redistilled kerosene odourless kerosene", - "synonymsKr": "히드로처리된 경 증류 / 수소처리된경질정제유(석유) / 히드로처리된경증류 / 수소처리된경질정제유(석유)(DISTILLATES(PETROLEUM),HYDROTREATEDLIGHT) / C11-15알케인/사이클로알케인 / C13-14아이소파라핀", - "unNumber": "", - "casNumber": "64742-47-8", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SSE", - "name": "Shellsol E", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1038, - "abbreviation": "SSF", - "nameKr": "", - "nameEn": "Shellsol F", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SSF", - "name": "Shellsol F", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1039, - "abbreviation": "SSK", - "nameKr": "", - "nameEn": "Shellsol K", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SSK", - "name": "Shellsol K", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1040, - "abbreviation": "SSLF", - "nameKr": "", - "nameEn": "Shellsol LF", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SSLF", - "name": "Shellsol LF", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1041, - "abbreviation": "SSN", - "nameKr": "", - "nameEn": "Shellsol N", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SSN", - "name": "Shellsol N", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1042, - "abbreviation": "SSR", - "nameKr": "", - "nameEn": "Shellsol R", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SSR", - "name": "Shellsol R", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1043, - "abbreviation": "SSRA", - "nameKr": "", - "nameEn": "Shellsol RA", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SSRA", - "name": "Shellsol RA", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1044, - "abbreviation": "SSS", - "nameKr": "", - "nameEn": "Shellsol S", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SSS", - "name": "Shellsol S", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1045, - "abbreviation": "SST", - "nameKr": "", - "nameEn": "Shellsol T", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SST", - "name": "Shellsol T", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1046, - "abbreviation": "SHF20", - "nameKr": "", - "nameEn": "SHF 20", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SHF20", - "name": "SHF 20", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1047, - "abbreviation": "SHF41", - "nameKr": "", - "nameEn": "SHF 41", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SHF41", - "name": "SHF 41", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1048, - "abbreviation": "SHF61", - "nameKr": "", - "nameEn": "SHF 61", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SHF61", - "name": "SHF 61", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1049, - "abbreviation": "SHF63", - "nameKr": "", - "nameEn": "SHF 63", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SHF63", - "name": "SHF 63", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1050, - "abbreviation": "SHF83", - "nameKr": "", - "nameEn": "SHF 83", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SHF83", - "name": "SHF 83", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1051, - "abbreviation": "SILDOX", - "nameKr": "", - "nameEn": "Silicon dioxide", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SILDOX", - "name": "Silicon dioxide", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1052, - "abbreviation": "SWAX", - "nameKr": "", - "nameEn": "Slack wax", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SWAX", - "name": "Slack wax", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1053, - "abbreviation": "BSSW", - "nameKr": "", - "nameEn": "Slack wax(BS SW)", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "BSSW", - "name": "Slack wax(BS SW)", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1054, - "abbreviation": "BS150", - "nameKr": "", - "nameEn": "Slack wax(SW150)", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "BS150", - "name": "Slack wax(SW150)", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1055, - "abbreviation": "SW500", - "nameKr": "", - "nameEn": "Slack wax(SW500)", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SW500", - "name": "Slack wax(SW500)", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1056, - "abbreviation": "SLOP", - "nameKr": "", - "nameEn": "Slop water", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SLOP", - "name": "Slop water", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1057, - "abbreviation": "SLUDG", - "nameKr": "", - "nameEn": "Sludge oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SLUDG", - "name": "Sludge oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1058, - "abbreviation": "SN55", - "nameKr": "", - "nameEn": "SN 55", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SN55", - "name": "SN 55", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1059, - "abbreviation": "SN500", - "nameKr": "", - "nameEn": "SN 500", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SN500", - "name": "SN 500", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1060, - "abbreviation": "SN65", - "nameKr": "", - "nameEn": "SN65", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SN65", - "name": "SN65", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1061, - "abbreviation": "SBRMID", - "nameKr": "", - "nameEn": "Sodium bromide", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SBRMID", - "name": "Sodium bromide", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1062, - "abbreviation": "SLIGNO", - "nameKr": "", - "nameEn": "Sodium lignosulfonate", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SLIGNO", - "name": "Sodium lignosulfonate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1063, - "abbreviation": "SODSLIC", - "nameKr": "", - "nameEn": "Sodium silicate", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SODSLIC", - "name": "Sodium silicate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1064, - "abbreviation": "SFTNL", - "nameKr": "", - "nameEn": "Softanol", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SFTNL", - "name": "Softanol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1065, - "abbreviation": "NPTHH", - "nameKr": "", - "nameEn": "Solvent naphtha H", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NPTHH", - "name": "Solvent naphtha H", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1066, - "abbreviation": "NPTHL", - "nameKr": "", - "nameEn": "Solvent naphtha L", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NPTHL", - "name": "Solvent naphtha L", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1067, - "abbreviation": "NPTHM", - "nameKr": "", - "nameEn": "Solvent naphtha M", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NPTHM", - "name": "Solvent naphtha M", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1068, - "abbreviation": "SN60", - "nameKr": "", - "nameEn": "Solvent neutral 60", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SN60", - "name": "Solvent neutral 60", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1069, - "abbreviation": "SL100", - "nameKr": "", - "nameEn": "Solvess 100", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SL100", - "name": "Solvess 100", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1070, - "abbreviation": "SL150", - "nameKr": "", - "nameEn": "Solvess 150", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SL150", - "name": "Solvess 150", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1071, - "abbreviation": "SBTL", - "nameKr": "", - "nameEn": "Sorbitol", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SBTL", - "name": "Sorbitol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1072, - "abbreviation": "SOYWY", - "nameKr": "", - "nameEn": "Soyaway water", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SOYWY", - "name": "Soyaway water", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1073, - "abbreviation": "SBO", - "nameKr": "", - "nameEn": "Soybean oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SBO", - "name": "Soybean oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1074, - "abbreviation": "SEFT", - "nameKr": "", - "nameEn": "Special extra fancy tallow", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SEFT", - "name": "Special extra fancy tallow", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1075, - "abbreviation": "SPERM", - "nameKr": "", - "nameEn": "Sperm oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SPERM", - "name": "Sperm oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1076, - "abbreviation": "SPFA", - "nameKr": "", - "nameEn": "Split fatty acid", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SPFA", - "name": "Split fatty acid", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1077, - "abbreviation": "SHPSFA", - "nameKr": "", - "nameEn": "Split hydrogenated palm stearin fatty acid", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SHPSFA", - "name": "Split hydrogenated palm stearin fatty acid", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1078, - "abbreviation": "SPKFA", - "nameKr": "", - "nameEn": "Split palm kernel oil fatty acid", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SPKFA", - "name": "Split palm kernel oil fatty acid", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1079, - "abbreviation": "SPSFA", - "nameKr": "", - "nameEn": "Split palm stearin fatty acid", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SPSFA", - "name": "Split palm stearin fatty acid", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1080, - "abbreviation": "SSPKFA", - "nameKr": "", - "nameEn": "Split stearin palm kernel fatty acid", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SSPKFA", - "name": "Split stearin palm kernel fatty acid", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1081, - "abbreviation": "SUPS", - "nameKr": "", - "nameEn": "Splitted undistilled palm stearin", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SUPS", - "name": "Splitted undistilled palm stearin", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1082, - "abbreviation": "SQPO", - "nameKr": "", - "nameEn": "SQ Palm oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SQPO", - "name": "SQ Palm oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1083, - "abbreviation": "SQPL", - "nameKr": "", - "nameEn": "SQ Palm olein", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SQPL", - "name": "SQ Palm olein", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1084, - "abbreviation": "STWAX", - "nameKr": "", - "nameEn": "Stearine wax", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "STWAX", - "name": "Stearine wax", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1085, - "abbreviation": "SUCROSE", - "nameKr": "", - "nameEn": "Sucrose", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SUCROSE", - "name": "Sucrose", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1086, - "abbreviation": "SUGAL", - "nameKr": "", - "nameEn": "Sugar alcohol", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SUGAL", - "name": "Sugar alcohol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1087, + "id": 508, "abbreviation": "SULFUR", "nameKr": "유황", "nameEn": "Sulfur", + "synonymsKr": "벤설포이드 / 콜로키트 / 브림스톤 / 침전황 / 스퍼술", "synonymsEn": "Sulfur / SULPHUR / Sulfur powder / SULPHUR POWDER / Sublimed sulfur / powder coating / Thione / COLLOIDAL SULFUR / Soufre / That / This", - "synonymsKr": "유황 / 벤술포이드 / 솔프릴 / 술푸르 / 술프란 / 술프렉스 / 승화된황 / 아그리-술 / 유황 / 유황-용융 / 유황화 / 황 / 황(SULFUR) / 설퍼클로이드", - "unNumber": "1350", + "unNumber": "2448", "casNumber": "7704-34-9", - "transportMethod": "", - "sebc": "", + "transportMethod": "포장(4.1급), 산적액체", + "sebc": "S (Sinker)", "usage": "황산 생산, 비료 및 고무 제조", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "고체", + "color": "노란색 ~ 적갈색", + "odor": "계란 냄새", + "flashPoint": "207.22℃", + "autoIgnition": "232.22’C", + "boilingPoint": "445℃", + "density": "2.07", + "solubility": "불용", + "vaporPressure": "(물 23.8nfflHg)", + "vaporDensity": "8.8", + "explosionRange": "0.04~2%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 2, + "fire": 1, + "reactivity": 1, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Z", + "ergNumber": "133", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "25m", + "responseDistanceSpillNight": "100m", + "marineResponse": "침강 (S)", + "ppeClose": "근거리(레벨 A)", + "ppeFar": "원거리(레벨 C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "연소 시 유독성 가스(SO2) 발생. 해상 유출 시 침강(S). 액상으로 고온 운송", + "firstAid": "흡입노출 • 산소공급, 인공호흡, 즉시 의료조치 응급조치 피부접촉 • 화상의 경우 찬물로 씻을 것, 긴급 의료조치, 물로 씻을 것 안구접촉 • 긴급 의료조치. 몇 분간 물로 조심해서 씻을 것, 콘택트렌즈 제거 경구셥취 • 긴급 의료조치, 입을 씻어낼 것, 토하게 하지 말 것", + "fireFighting": "복합가스탐지기 이용 농도 확인(문자일 공유). 먼 곳에서 분무주수·드라이케미컬·포말 이용 화재진압, 직사주수 금지. 화재진압 후에도 사고선 냉각 조치. 연소 시 SO2 발생 주의", + "spillResponse": "점화원 제거 후 주변 해상 통제. 해수에 유출 시 침강(S)되어 해상수거 가능, 선저 또는 해저에 침강된 황을 회수. 안전 확보 시까지 지속 모니터링", "exposure": "", "regulation": "" }, @@ -74365,67 +39515,67 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-G", + "emsFire": "F-A", + "emsSpill": "S-G", "emsFirstAid": "", "cargoCodes": [ { "code": "SULFUR", "name": "Sulfur", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 1088, - "abbreviation": "FSACID", - "nameKr": "", - "nameEn": "Sulfuric acid (Fuming)", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "id": 509, + "abbreviation": "TDI", + "nameKr": "메틸페닐렌 아이소시아네이트", + "nameEn": "Toluene diisocyanate", + "synonymsKr": "톨루엔디이소시아네이트 / 2,4-톨루엔다이아이소사이아네이트 / 2,4-톨루엔디이소시안산염 / 2,4-디이소시아나토톨루엔 / 2,4-디이소시안토-1-메틸벤젠 / 2,4-톨릴렌디이소시안산염 / 4-메틸-페닐렌이소시안산염 / M-톨릴렌디이소시안산염 / 톨루엔-2,4-다이아이소사이안산 / 톨루엔-2,4-디이소시아네이트 / 톨루엔디이소시아네이트 / 톨루엔디이소시아네이트 / 4-메틸-m-페닐렌다이아이소시아네이트 / 2,4-톨루엔 다이아이소사이아네이트 / 2,4-톨루엔 다이아이소시안산", + "synonymsEn": "Tolylene-2,4-diisocyanate / TDI / TDI-80 / 2,4-TDI / 2,4-TOLUENEDIISOCYANATE / Scuranate / Desmodur T80 / SCURANATE TX / Nacconate 100 / TOLUENE-2,4-DIISOCYANATE / Tolylene-2,4-diisocyanate 95%", + "unNumber": "2078", + "casNumber": "26471-62-5", + "transportMethod": "포장(6.1급), 산적액체(X류)", + "sebc": "S (Sinker)", + "usage": "황백색에서 옅은 노란색을 띄며 매운 냄새가 나는 액체로서 주로 경화제, 접착제. 니스 등에 사용됨. 해상유출 시에는 침강하므로 방제조치는 불필요할 것으로 보이나, 증기흡입 시 치명적이고, 호흡기. 피부에 과민반응을 일으킬 수 있으므로 방독마스크, 화학", + "state": "액체", + "color": "황백색-옅은 노란색", + "odor": "매운 냄새", + "flashPoint": "135℃", + "autoIgnition": "620℃", + "boilingPoint": "251℃", + "density": "1.22", + "solubility": "불용", + "vaporPressure": "(물 23,8nimHg)", + "vaporDensity": "6", + "explosionRange": "0.9~9.5%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 3, + "fire": 1, + "reactivity": 3, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "156", + "idlh": "2.5 ppm", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "50m", + "marineResponse": "침강 (S)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "독성, 부식성, 호흡기 감작성, 발암성 의심, 수분과 반응", + "firstAid": "흡입노출 피부접촉 응급조치 안구접촉 경구섭취 • 산소공급, 인공호흡. 신선한 곳으로 이동. 구강대구강법 피할 것 • 15분 이상 비누와 물로 씻을 것, 의료조치 • 몇 분간 물로 씻을 것, 의료조치, 콘택트렌즈 제거 • 긴급 의료조치, 의식이 있다면 수분제거를 위해 구토를 유도 초통매응방법 보호복 호홉구 보안경 보호장갑 ! 기타장비 대옹장비 3,4형식 (C급) 방독마스크(반면,전면) 仁) 仁) 서 옄화사카메라 1형식 (1B) 공기호홉기 ⑴ 아 설와승가베다 1 초기 이격거리 (m) 50 방호거리 (m) 50 ►유출물질은 홉입 시 치명적이고. 피부화상. 피부와 호흡기에 과민반옹을 일으킬 수 있으므로, 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지, 주변선박 통제 (흡연, 불꽃. 스파크 등 모든 점화원 제거) 乂 대기 중에 해상유출시 굳는 물질임 ►출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호의 착용(사고선 근접 시 1B급 착용), 증기홉입과 피부와 눈에 접촉욜 피할 것 ►유출물질은 침강하므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지. 안전확보 시까지 지속적인 모니터링 1 화재 시대피거", + "fireFighting": "분무주수/포말/CO₂.", + "spillResponse": "수분과 격리. 흡수제 회수. 점화원 제거.", + "exposure": "TWA 0.005 ppm, STEL 0.02 ppm, IDLH 2.5 ppm", + "regulation": "유해화학물질관리법" }, "ibcHazard": "", "ibcShipType": "", @@ -74433,8907 +39583,135 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-A, S-A", + "emsFire": "F-A", + "emsSpill": "S-A", "emsFirstAid": "", "cargoCodes": [ { - "code": "FSACID", - "name": "Sulfuric acid (Fuming)", - "company": "", - "source": "화물적부도" + "code": "TDI", + "name": "Toluene diisocyanate", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 1089, - "abbreviation": "SUN", - "nameKr": "", - "nameEn": "Sunflower seed oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2(k)TYPE", - "ibcTankType": "2G", - "ibcDetection": "No", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SUN", - "name": "Sunflower seed oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1090, - "abbreviation": "STLW", - "nameKr": "", - "nameEn": "Supreme tallow", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "STLW", - "name": "Supreme tallow", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1091, - "abbreviation": "SX50", - "nameKr": "", - "nameEn": "SX-50", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SX50", - "name": "SX-50", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1092, - "abbreviation": "SX70", - "nameKr": "", - "nameEn": "SX-70", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SX70", - "name": "SX-70", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1093, - "abbreviation": "SDEE", - "nameKr": "", - "nameEn": "sym-Dichloroethyl ether", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SDEE", - "name": "sym-Dichloroethyl ether", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1094, - "abbreviation": "SNP9", - "nameKr": "", - "nameEn": "Synperonic NP-9", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SNP9", - "name": "Synperonic NP-9", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1095, - "abbreviation": "SPNCS", - "nameKr": "", - "nameEn": "Synperonics", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SPNCS", - "name": "Synperonics", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1096, - "abbreviation": "TALL", - "nameKr": "", - "nameEn": "Tall oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TALL", - "name": "Tall oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1097, - "abbreviation": "TOFA", - "nameKr": "", - "nameEn": "Tall oil fatty acid (resin acid less than 20%)", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TOFA", - "name": "Tall oil fatty acid (resin acid less than 20%)", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1098, - "abbreviation": "TLW", - "nameKr": "", - "nameEn": "Tallow", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "P", - "ibcShipType": "IMO 2(k)TYPE", - "ibcTankType": "2G", - "ibcDetection": "No", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TLW", - "name": "Tallow", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1099, - "abbreviation": "TLWAFAT", - "nameKr": "", - "nameEn": "Tallow animal fat", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TLWAFAT", - "name": "Tallow animal fat", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1100, - "abbreviation": "TLWFA", - "nameKr": "", - "nameEn": "Tallow fatty acid", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "No", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TLWFA", - "name": "Tallow fatty acid", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1101, - "abbreviation": "TLWFAL", - "nameKr": "", - "nameEn": "Tallow fatty alcohol", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TLWFAL", - "name": "Tallow fatty alcohol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1102, - "abbreviation": "PGTA1618", - "nameKr": "", - "nameEn": "Tallow fatty alcohol(P&G TA-1618)", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PGTA1618", - "name": "Tallow fatty alcohol(P&G TA-1618)", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1103, - "abbreviation": "TLWS", - "nameKr": "", - "nameEn": "Tallow sterine", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TLWS", - "name": "Tallow sterine", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1104, - "abbreviation": "TARACD", - "nameKr": "", - "nameEn": "Tar acid", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TARACD", - "name": "Tar acid", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1105, - "abbreviation": "TBMA", - "nameKr": "", - "nameEn": "t-Butyl methacrylate", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TBMA", - "name": "t-Butyl methacrylate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1106, - "abbreviation": "TEE", - "nameKr": "", - "nameEn": "Tee froth", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TEE", - "name": "Tee froth", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1107, - "abbreviation": "TEEPOL", - "nameKr": "", - "nameEn": "Teepol", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TEEPOL", - "name": "Teepol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1108, - "abbreviation": "TSDO", - "nameKr": "", - "nameEn": "Teeseed oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TSDO", - "name": "Teeseed oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1109, - "abbreviation": "TELON", - "nameKr": "", - "nameEn": "Tellone", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TELON", - "name": "Tellone", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1110, - "abbreviation": "TAACE", - "nameKr": "", - "nameEn": "tert-Amyl acetate", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TAACE", - "name": "tert-Amyl acetate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1111, - "abbreviation": "TAAL", - "nameKr": "", - "nameEn": "tert-Amyl alcohol", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "F", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TAAL", - "name": "tert-Amyl alcohol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1112, - "abbreviation": "TBACE", - "nameKr": "", - "nameEn": "tert-Butyl acetate", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TBACE", - "name": "tert-Butyl acetate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1113, - "abbreviation": "TBACR", - "nameKr": "", - "nameEn": "tert-Butylacrylate", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TBACR", - "name": "tert-Butylacrylate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1114, - "abbreviation": "TTCE", - "nameKr": "", - "nameEn": "Tetrachloroethane", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TTCE", - "name": "Tetrachloroethane", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1115, - "abbreviation": "TCELN", - "nameKr": "", - "nameEn": "Tetrachloroethylene", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TCELN", - "name": "Tetrachloroethylene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1116, - "abbreviation": "TTEG", - "nameKr": "", - "nameEn": "Tetraethylene glycol", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "No", - "ibcFireFighting": "AC", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TTEG", - "name": "Tetraethylene glycol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1117, - "abbreviation": "TPB", - "nameKr": "", - "nameEn": "Tetrapropylene benzene", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TPB", - "name": "Tetrapropylene benzene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1118, - "abbreviation": "TLN", - "nameKr": "톨루엔", - "nameEn": "Toluene", - "synonymsEn": "Toluene / TOL / METHYLBENZENE / TOLUNE / TOLUOL / Toluen / JB / PHENYLMETHANE / Methane, phenyl- / tolueno / caswellno859", - "synonymsKr": "톨루엔 / 톨루엔 / 1-메틸벤젠 / 메틸벤젠 / 톨루올 / 메틸벤젠,메틸벤졸 / 페닐메탄 / 톨루엔(TO) / 메틸벤졸", - "unNumber": "1294", - "casNumber": "108-88-3", - "transportMethod": "", - "sebc": "", - "usage": "도료의 용제, 접착제, 잉크, 의약품 용제", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "FT", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12, 15.17, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TLN", - "name": "Toluene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1119, - "abbreviation": "TMTSO", - "nameKr": "", - "nameEn": "Tomato seed oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TMTSO", - "name": "Tomato seed oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1120, - "abbreviation": "TPKFA", - "nameKr": "", - "nameEn": "Top palm kernel fatty acid", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TPKFA", - "name": "Top palm kernel fatty acid", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1121, - "abbreviation": "TWT", - "nameKr": "", - "nameEn": "Top white beef tallow", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TWT", - "name": "Top white beef tallow", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1122, - "abbreviation": "TDE", - "nameKr": "", - "nameEn": "Trans-Dichloroethylene", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TDE", - "name": "Trans-Dichloroethylene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1123, - "abbreviation": "TFM", - "nameKr": "", - "nameEn": "Transformer oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TFM", - "name": "Transformer oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1124, - "abbreviation": "T2EHT", - "nameKr": "", - "nameEn": "tri-2-Ethylhexyl trimellitate", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "T2EHT", - "name": "tri-2-Ethylhexyl trimellitate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1125, - "abbreviation": "TPP", - "nameKr": "", - "nameEn": "Tributyl phosphate", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "T", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TPP", - "name": "Tributyl phosphate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1126, - "abbreviation": "TCPP", - "nameKr": "", - "nameEn": "Tricresyl phosphate (containing less than 1% ortho-isomer)", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "T", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12, 15.17, 15.19.6, 16.2.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TCPP", - "name": "Tricresyl phosphate (containing less than 1% ortho-isomer)", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1127, + "id": 510, "abbreviation": "TDA", "nameKr": "톨루엔디아민", "nameEn": "TOLUENE DIAMINE", - "synonymsEn": "·BENZENEDIAMINE, AR-METHYL- ·DIAMINOTOLUENE ·METHYLPHENYLENEDIAMINE ·PHENYLENEDIAMINE, AR-METHYL- ·TOLUENE-AR,AR-DIAMINE ·TOLUENEDIAMINE ·TOLYLENEDIAMINE ·RCRA U221", - "synonymsKr": "·벤젠다이아민, AR-메틸- ·다이아미노톨루엔 ·메틸페닐렌다이아민 ·페닐렌다이아민, AR-메틸- ·톨루엔-AR,AR-다이아민 ·톨루엔다이아민 ·토릴렌다이아민", + "synonymsKr": "다이아미노톨루엔 / 메틸페닐렌다이아민 / 벤젠다이아민, AR-메틸- / 다이아미노톨루엔 / 메틸페닐렌다이아민 / 페닐렌다이아민, AR-메틸- / 톨루엔-AR,AR-다이아민 / 톨루엔다이아민 / 토릴렌다이아민", + "synonymsEn": "TOLUENE DIAMINE / BENZENEDIAMINE, AR-METHYL- / DIAMINOTOLUENE / METHYLPHENYLENEDIAMINE / PHENYLENEDIAMINE, AR-METHYL- / TOLUENE-AR,AR-DIAMINE / TOLUENEDIAMINE / TOLYLENEDIAMINE / RCRA U221", "unNumber": "-", "casNumber": "25376-45-8", - "transportMethod": "", - "sebc": "", - "usage": "섬유, 가죽, 모피, 염색제조", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "transportMethod": "포장(6.1급), 산적액체", + "sebc": "D (Dissolver)", + "usage": "화재 (위험성) O (낮음) 인화점 끓는점 상온상태 냄새 증기압 점도 유해액체물질/Y 노란색의 암모니아 냄새가 나는 고체로서 주로 섬유, 가죽, 염색제조 등에 사용됨. 93% 수용액 상태로 해상운송을 하며, 해상유출 시에는 용해되므로 방제조치는 불필요함. 암을 일으킬 수 있는 물질이고. 알레르기 반응, 눈 자극을 유발할 수 있으므로 방독마스크, 화학", + "state": "고체", + "color": "노란색", + "odor": "암모니아 냄새", + "flashPoint": "100℃", + "autoIgnition": "자료없음", + "boilingPoint": "270℃", + "density": "1.04", + "solubility": "용해", + "vaporPressure": "(물 23.8nmHg)", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, + "health": 3, "fire": 0, "reactivity": 0, "special": "" }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", + "hazardClass": "유해액체물질/Y", + "ergNumber": "153", + "idlh": "0 분)", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "25m", + "responseDistanceSpillNight": "25m", + "marineResponse": "용해 (D)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "발암성, 생식독성, 피부 흡수, 혈액독성", + "firstAid": "흡입노출 • 신선한 곳으로 이동, 의료조치 피부접촉 • 의료조치, 화상의 경우 다량의 찬물로 씻을 것, 20분 이상 흐르는 물에 씻을 것 안구접촉 • 몇 분간 물로 씻을 것, 콘택트렌즈 제거, 간급 의료조치 경구섭취 • 구강대구강법 인공호흡 하지 말 것, 긴급 의료조치, 입을 씻어낼 것 초동 대응방법 보호복 호흡구 보안경 보호장갑 O 0 기타장비 열화상카메라 대응장비 3.4형식 (C급) 방독마스크(뱐면,전면) 1형식 (1B) 공기호흡기 1 초기 이격거리(m) 25 방호거리 (m) 25 1 해상유출시 ►유출물질은 발암성 물질로, 1회 노출만으로도 독성이 나타날 수 있고 알레르기 반응, 눈 자극을 일으킬 수 있으므로 모든 출동세력 풍상에 위치, 최소 50rn 이격거리 유지, 주변선박 통제 ► 출동 경비정(방제정) 복합가스용 방독마스크률 포함한 3,4형식 보호의 착용(사고선 근접 시 1B급 착용), 증기흡입과 피부와 눈에 접촉올 피할 것 ► 유출물질은 용해되므로 방제조치 불필요 ► 화학방제함 유출물질 농도 탐지, 안전확보 시까지 지속적인 모니터링 1 화재 시대피거리(m) 800 1 ►유출물질은 연소시 유독가스 방출, 풍상에 위치, 최소 이격", + "fireFighting": "분무주수/포말/CO₂.", + "spillResponse": "점화원 제거. 흡수제 회수.", + "exposure": "TWA 27 mg/㎥", + "regulation": "유해화학물질관리법" }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "ibcHazard": "S/P", + "ibcShipType": "2", + "ibcTankType": "2G", + "ibcDetection": "C", + "ibcFireFighting": "ABC", + "ibcMinRequirement": "15.12, 15.17, 15.18, 15.19,\n16.2.6, 16.2.9", + "emsCode": "F-A, S-F", + "emsFire": "F-A", + "emsSpill": "S-F", "emsFirstAid": "", "cargoCodes": [ { "code": "TDA", "name": "TOLUENE DIAMINE", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 1128, - "abbreviation": "TETAMN", - "nameKr": "", - "nameEn": "Triethanolamine", - "synonymsEn": "", - "synonymsKr": "", + "id": 511, + "abbreviation": "VCM", + "nameKr": "염화비닐", + "nameEn": "Vinyl chloride monomer", + "synonymsKr": "염화비닐 / 비닐클로라이드 / 염화비닐 / 비닐클로라이드모노머 / 아세틸렌클로라이드 / 클로로에틸렌 / 비닐 클로라이드 / 모노클로로 에텐 / 모노클로로에틸렌 / 비닐 염화물 / 비닐 염화물 단량체 / 에틸렌 모노염화물 / 클로로에텐 / 클로르에텐 / 트로비두르", + "synonymsEn": "VINYL CHLORIDE / VC / VCM / Vinyl chloride monomer / C2H3Cl / Chloroethene / CHLOROETHYLENE / chloroethyne / VINYL CHLORIDE, 1X1ML, MEOH, 200UG / ML / vinylchloride(chloroethene) / F1140", "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "T", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TETAMN", - "name": "Triethanolamine", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1129, - "abbreviation": "TEAMN", - "nameKr": "", - "nameEn": "Triethylamine", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "FT", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.19", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TEAMN", - "name": "Triethylamine", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1130, - "abbreviation": "TEBZN", - "nameKr": "", - "nameEn": "Triethylbenzene", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "T", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12.3, 15.12.4, 15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TEBZN", - "name": "Triethylbenzene", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1131, - "abbreviation": "TEG", - "nameKr": "", - "nameEn": "Triethylene glycol", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TEG", - "name": "Triethylene glycol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1132, - "abbreviation": "TETTMN", - "nameKr": "", - "nameEn": "Triethylene tetramine", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TETTMN", - "name": "Triethylene tetramine", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1133, - "abbreviation": "TPPG", - "nameKr": "", - "nameEn": "Tripropylene glycol", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "P", - "ibcShipType": "IMO 3TYPE", - "ibcTankType": "2G", - "ibcDetection": "No", - "ibcFireFighting": "AC", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TPPG", - "name": "Tripropylene glycol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1134, - "abbreviation": "TPPGMME", - "nameKr": "", - "nameEn": "Tripropylene glycol monomethyl ether", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TPPGMME", - "name": "Tripropylene glycol monomethyl ether", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1135, - "abbreviation": "TXPP", - "nameKr": "", - "nameEn": "Trixylyl phosphate", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 1TYPE", - "ibcTankType": "2G", - "ibcDetection": "T", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12, 15.17, 15.19.6, 16.2.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TXPP", - "name": "Trixylyl phosphate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1136, - "abbreviation": "TCMO", - "nameKr": "", - "nameEn": "Tucum oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TCMO", - "name": "Tucum oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1137, - "abbreviation": "TUNG", - "nameKr": "", - "nameEn": "Tung oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2(k)TYPE", - "ibcTankType": "2G", - "ibcDetection": "No", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.19.6, 16.2.6, 16.2.7, 16.2.9", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TUNG", - "name": "Tung oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1138, - "abbreviation": "TPTN", - "nameKr": "", - "nameEn": "Turpentine", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "FT", - "ibcFireFighting": "AC", - "ibcMinRequirement": "15.19.6", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TPTN", - "name": "Turpentine", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1139, - "abbreviation": "UNDECA", - "nameKr": "", - "nameEn": "Undecanol", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "UNDECA", - "name": "Undecanol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1140, - "abbreviation": "UVL51", - "nameKr": "", - "nameEn": "UNIVOLT 51", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "UVL51", - "name": "UNIVOLT 51", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1141, - "abbreviation": "UND", - "nameKr": "", - "nameEn": "Unneutralized naphthenic distilate", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "UND", - "name": "Unneutralized naphthenic distilate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1142, - "abbreviation": "UETLW", - "nameKr": "", - "nameEn": "Unsealed edible tallow", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "UETLW", - "name": "Unsealed edible tallow", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1143, - "abbreviation": "UAN", - "nameKr": "", - "nameEn": "Urea ammonium nitrate solution", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "UAN", - "name": "Urea ammonium nitrate solution", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1144, - "abbreviation": "UAS", - "nameKr": "", - "nameEn": "Urea ammonium solution", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "UAS", - "name": "Urea ammonium solution", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1145, - "abbreviation": "UFA", - "nameKr": "", - "nameEn": "Urea formaldehyde solution", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "UFA", - "name": "Urea formaldehyde solution", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1146, - "abbreviation": "VAR40", - "nameKr": "", - "nameEn": "Varsol 40", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "VAR40", - "name": "Varsol 40", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1147, - "abbreviation": "VEO10", - "nameKr": "", - "nameEn": "Veova 10", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "VEO10", - "name": "Veova 10", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1148, - "abbreviation": "VER10", - "nameKr": "", - "nameEn": "Versatic 10", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "VER10", - "name": "Versatic 10", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1149, - "abbreviation": "VER911", - "nameKr": "", - "nameEn": "Versatic 911", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "VER911", - "name": "Versatic 911", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1150, - "abbreviation": "VINEGAR", - "nameKr": "", - "nameEn": "Vinegar", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "VINEGAR", - "name": "Vinegar", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1151, - "abbreviation": "VEE", - "nameKr": "", - "nameEn": "Vinyl ethyl ether", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "F", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.4, 15.13, 15.14, 15.19.6, 16.6.1, 16.6.2", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "VEE", - "name": "Vinyl ethyl ether", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1152, - "abbreviation": "VNDECA", - "nameKr": "", - "nameEn": "Vinyl neodecanoate", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "T", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12, 15.13, 15.17, 15.19, 16.6.1, 16.6.2", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "VNDECA", - "name": "Vinyl neodecanoate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1153, - "abbreviation": "VDNC", - "nameKr": "", - "nameEn": "Vinylidene chloride", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "S/P", - "ibcShipType": "IMO 2TYPE", - "ibcTankType": "2G", - "ibcDetection": "FT", - "ibcFireFighting": "ABC", - "ibcMinRequirement": "15.12, 15.13, 15.14, 15.17, 15.19, 16.6.1, 16.6.2", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "VDNC", - "name": "Vinylidene chloride", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1154, - "abbreviation": "VVT500", - "nameKr": "", - "nameEn": "VIVATEC 500", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "VVT500", - "name": "VIVATEC 500", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1155, - "abbreviation": "VNL3010", - "nameKr": "", - "nameEn": "Voranol®3010 polyol", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "VNL3010", - "name": "Voranol®3010 polyol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1156, - "abbreviation": "WNUTO", - "nameKr": "", - "nameEn": "Walnut oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "WNUTO", - "name": "Walnut oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1157, - "abbreviation": "WATER", - "nameKr": "", - "nameEn": "Water(Ballast/River water)", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "WATER", - "name": "Water(Ballast/River water)", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1158, - "abbreviation": "WSP", - "nameKr": "", - "nameEn": "White spirit", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "WSP", - "name": "White spirit", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1159, - "abbreviation": "X55", - "nameKr": "", - "nameEn": "X-55", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "X55", - "name": "X-55", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1160, - "abbreviation": "X55B", - "nameKr": "", - "nameEn": "X-55B", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "X55B", - "name": "X-55B", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1161, - "abbreviation": "XHVI5.2", - "nameKr": "", - "nameEn": "XHVI 5.2", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "XHVI5.2", - "name": "XHVI 5.2", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1162, - "abbreviation": "EXA9S", - "nameKr": "", - "nameEn": "EXXAL 9S", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EXA9S", - "name": "EXXAL 9S", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1163, - "abbreviation": "C12IOLFN", - "nameKr": "", - "nameEn": "C12 ISO OLEFIN", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "C12IOLFN", - "name": "C12 ISO OLEFIN", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1164, - "abbreviation": "DCPN", - "nameKr": "", - "nameEn": "DICHLOROPROPENE", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "DCPN", - "name": "DICHLOROPROPENE", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1165, - "abbreviation": "150NS", - "nameKr": "", - "nameEn": "150NS", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "150NS", - "name": "150NS", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1166, - "abbreviation": "HDRS", - "nameKr": "", - "nameEn": "HYDROSEAL", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "HDRS", - "name": "HYDROSEAL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1167, - "abbreviation": "BCTOL", - "nameKr": "부틸카비톨", - "nameEn": "Butyl Carbitol", - "synonymsEn": "Diethylene glycol monobutyl ether / DIETHYLENE GLYCOL MONOBUTYL ETHER / DB / BUTYL CARBITOL / BUTYLDIGLYCOL / 2-(2-BUTOXYETHOXY)ETHANOL / Ethanol, 2-(2-butoxyethoxy)- / DIETHYLENE GLYCOL BUTYL ETHER / DGBE / Butoxyethoxyethanol / DIETHYLENE GLYCOL MONO-N-BUTYL ETHER", - "synonymsKr": "부틸글리콜 / 다이에틸렌글라이콜모노-N-뷰틸에테르 / 2-(2-부톡시에톡시)에탄올 / 부톡시디에틸렌글리콜 / 부틸옥시BUTOXYDIGLYCOL / 부틸카르비톨 / 다이에틸렌글리콜모노뷰틸에테르 / 디에틸렌글리콜모노부틸에테르 / 부틸글리콜 / 뷰틸캐비톨 / 부틸카비톨 / 다이에틸렌글리콜모노뷰틸에테르 / 부톡시다이글라이콜 / 다이에틸렌 글라이콜 모노-N-뷰틸 에테르", - "unNumber": "2810", - "casNumber": "112-34-5", - "transportMethod": "", - "sebc": "", - "usage": "용매, 보습제, 유화제 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "BCTOL", - "name": "Butyl Carbitol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1168, - "abbreviation": "BCSOL", - "nameKr": "", - "nameEn": "Butyl Cellosolve", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "BCSOL", - "name": "Butyl Cellosolve", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1169, - "abbreviation": "CTOLS", - "nameKr": "", - "nameEn": "Carbito / Solvent", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CTOLS", - "name": "Carbito / Solvent", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1170, - "abbreviation": "EPOR331", - "nameKr": "", - "nameEn": "Dow Epoxy Resin/331", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EPOR331", - "name": "Dow Epoxy Resin/331", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1171, - "abbreviation": "EPOR383", - "nameKr": "", - "nameEn": "Dow Epoxy Resin/383", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EPOR383", - "name": "Dow Epoxy Resin/383", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1172, - "abbreviation": "DOWNLDB", - "nameKr": "", - "nameEn": "Dowanols DB", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "DOWNLDB", - "name": "Dowanols DB", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1173, - "abbreviation": "DOWNLEB", - "nameKr": "", - "nameEn": "Dowanols EB", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "DOWNLEB", - "name": "Dowanols EB", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1174, - "abbreviation": "DOWNLPM", - "nameKr": "", - "nameEn": "Dowanols PM", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "DOWNLPM", - "name": "Dowanols PM", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1175, - "abbreviation": "DOWP", - "nameKr": "", - "nameEn": "Dowper", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "DOWP", - "name": "Dowper", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1176, - "abbreviation": "ETHA190", - "nameKr": "", - "nameEn": "Ehanol 190 PF Syn SD 40-B", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "ETHA190", - "name": "Ehanol 190 PF Syn SD 40-B", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1177, - "abbreviation": "EDXE310", - "nameKr": "", - "nameEn": "Emkadioxol E310", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EDXE310", - "name": "Emkadioxol E310", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1178, - "abbreviation": "IPAHYD", - "nameKr": "아이소프로필알코올", - "nameEn": "Isopropanol anhydrous", - "synonymsEn": "Isopropyl alcohol / IPA / 2-Propanol / Isopropanol / i-PrOH / iPrOH / i-Propanol / Propanol-2 / 2-PROPANOL (IPA) / 67-73-0 / lsopropanol", - "synonymsKr": "이소프로필알코올 / 이소프로필알코올 / 에틸카르비놀 / 이소올 / 제록스필름제거제 / 2-프로판올 / SEC-프로필알코올 / 디메틸카르비놀 / 아이소프로필알코올 / 이소프로판올 / 프로판-2-올 / 프로필알코올 / 아이피에이 / 이소프로필알콜 / 이소프로필알코올 / 아이소프로판올 / 1-메틸에탄올 / 1-메틸에틸알코올 / 2-프로필알코올 / 2-하이드록시프로페인 / n-프로판-2-올", - "unNumber": "1219", - "casNumber": "67-63-0", - "transportMethod": "", - "sebc": "", - "usage": "화잘품, 개인용품, IT부품 세정, 소독 등 사용", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "IPAHYD", - "name": "Isopropanol anhydrous", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1179, - "abbreviation": "MCTOL", - "nameKr": "메틸카비톨", - "nameEn": "Methyl Carbitol", - "synonymsEn": "Diethylene glycol monomethyl ether / DM / 2-(2-METHOXYETHOXY)ETHANOL / degme / METHYL CARBITOL / METHYLDIGLYCOL / METHOXYETHOXYETHANOL / Ethanol,2-(2-methoxyethoxy)- / DIETHYLENE GLYCOL METHYL ETHER / 2-(2- / DIEGME", - "synonymsKr": "디에틸렌 글리콜 모노메틸 에테르 / 2-(메톡시에톡시)에탄올DI / 다이에틸렌글리콜모노메틸에테르 / 디에틸렌글리콜모노메틸에테르 / 메틸디글리콜 / 2-(2-메톡시에톡시)에탄올 / 2-(2-메톡시에톡시)에탄올(메톡시디글라이콜) / 다이에틸렌글라이콜모노메틸에터 / 메톡시다이글리콜 / 다이에틸렌글리콜모노메틸에테르 / 다이에틸렌 글리콜 메틸 에테르 / 2-(2-메톡시에톡시에탄올) / 메틸 다이옥시톨 / 메틸 카비톨", - "unNumber": "", - "casNumber": "111-77-3", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MCTOL", - "name": "Methyl Carbitol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1180, - "abbreviation": "MCFA", - "nameKr": "", - "nameEn": "Methyl Cellosolve FA grade", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MCFA", - "name": "Methyl Cellosolve FA grade", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1181, - "abbreviation": "NTS", - "nameKr": "", - "nameEn": "Neu-Tri solvent", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NTS", - "name": "Neu-Tri solvent", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1182, - "abbreviation": "PNOL", - "nameKr": "노말-프로필알콜", - "nameEn": "Propanol", - "synonymsEn": "1-Propanol / PROPANOL / N-PROPANOL / PROPAN-1-OL / Propyl alcohol / N-PROPYL ALCOHOL / Propanol-1 / 1-Propyl alcohol / PROPANE-1-OL / n-Propan-1-ol / n-C3H7OH", - "synonymsKr": "1-프로판올 / 1-프로판올 / n-프로필알코올 / 노말-프로필알콜 / 에틸칼비놀(EthylCarbinol),프로필알콜(PropylAlcohol),프로파놀(Propanol),N-프로파놀(N-Propanol),1-하이드록시프로판(1-Hydroxypropane),1-프로파놀(1-Propanol),프로필릭알콜(PropylicAlcohol),1-프로필알콜(1-PropylAlcohol), / N-프로판올 / 노말프로필알코올 / 프로필알코올 / 노말-프로필알콜", - "unNumber": "1274", - "casNumber": "71-23-8", - "transportMethod": "", - "sebc": "", - "usage": "반도체나 LCD 등 IT 부품 세정액, 페인트나 잉크제거용도", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PNOL", - "name": "Propanol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1183, - "abbreviation": "PPC", - "nameKr": "", - "nameEn": "Propyl Cellosolve", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PPC", - "name": "Propyl Cellosolve", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1184, - "abbreviation": "SES300", - "nameKr": "", - "nameEn": "Solvent ES 300", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SES300", - "name": "Solvent ES 300", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1185, - "abbreviation": "SFX625", - "nameKr": "", - "nameEn": "Specflex*IP 625", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SFX625", - "name": "Specflex*IP 625", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1186, - "abbreviation": "SFX630", - "nameKr": "", - "nameEn": "Specflex*NC 630 Polyol", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SFX630", - "name": "Specflex*NC 630 Polyol", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1187, - "abbreviation": "SFX700", - "nameKr": "", - "nameEn": "Specflex*NC 700", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SFX700", - "name": "Specflex*NC 700", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1188, - "abbreviation": "TGOL10", - "nameKr": "", - "nameEn": "Tergitol NP-10", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TGOL10", - "name": "Tergitol NP-10", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1189, - "abbreviation": "TGOL9", - "nameKr": "", - "nameEn": "Tergitol NP-9", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TGOL9", - "name": "Tergitol NP-9", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1190, - "abbreviation": "TETA", - "nameKr": "", - "nameEn": "TETA", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TETA", - "name": "TETA", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1191, - "abbreviation": "UEEEP", - "nameKr": "", - "nameEn": "Ucar Ester EEP", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "UEEEP", - "name": "Ucar Ester EEP", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1192, - "abbreviation": "VNOL", - "nameKr": "", - "nameEn": "Voranols", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "VNOL", - "name": "Voranols", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1193, - "abbreviation": "HNPTH", - "nameKr": "", - "nameEn": "Heavy Naptha", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "HNPTH", - "name": "Heavy Naptha", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1194, - "abbreviation": "SYN4", - "nameKr": "", - "nameEn": "Spectrasyn 4", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SYN4", - "name": "Spectrasyn 4", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1195, - "abbreviation": "NDCORN", - "nameKr": "", - "nameEn": "Neutralized Dewaxed Corn Oil", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NDCORN", - "name": "Neutralized Dewaxed Corn Oil", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1196, - "abbreviation": "OLA249SX", - "nameKr": "", - "nameEn": "OLOA 249SX", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "OLA249SX", - "name": "OLOA 249SX", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1197, - "abbreviation": "OLA16502", - "nameKr": "", - "nameEn": "OLOA 16502", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "OLA16502", - "name": "OLOA 16502", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1198, - "abbreviation": "NN10GB", - "nameKr": "", - "nameEn": "NYNAS NYTRO 10GB INSULATING OIL", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NN10GB", - "name": "NYNAS NYTRO 10GB INSULATING OIL", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1199, - "abbreviation": "EXSD80/100", - "nameKr": "", - "nameEn": "EXXSOL DSP 80/100", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "EXSD80/100", - "name": "EXXSOL DSP 80/100", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1200, - "abbreviation": "OLA9842", - "nameKr": "", - "nameEn": "OLOA 9842", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "OLA9842", - "name": "OLOA 9842", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1201, - "abbreviation": "GLSP1000", - "nameKr": "", - "nameEn": "Glissopal 1000", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "GLSP1000", - "name": "Glissopal 1000", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1202, - "abbreviation": "SSL75", - "nameKr": "", - "nameEn": "Sarasol 75", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SSL75", - "name": "Sarasol 75", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1203, - "abbreviation": "PRW710", - "nameKr": "", - "nameEn": "PROWAX 710", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "PRW710", - "name": "PROWAX 710", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1204, - "abbreviation": "SA30", - "nameKr": "", - "nameEn": "Stearic acid 30%", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SA30", - "name": "Stearic acid 30%", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1205, - "abbreviation": "SA60", - "nameKr": "", - "nameEn": "Stearic acid 60%", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SA60", - "name": "Stearic acid 60%", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1206, - "abbreviation": "NO100R", - "nameKr": "", - "nameEn": "Neutral oil 100R", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NO100R", - "name": "Neutral oil 100R", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1207, - "abbreviation": "NO220R", - "nameKr": "", - "nameEn": "Neutral oil 220R", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NO220R", - "name": "Neutral oil 220R", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1208, - "abbreviation": "NO600R", - "nameKr": "", - "nameEn": "Neutral oil 600R", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "NO600R", - "name": "Neutral oil 600R", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1209, - "abbreviation": "SN80E", - "nameKr": "", - "nameEn": "SOLVENT NEUTRAL 80E", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "SN80E", - "name": "SOLVENT NEUTRAL 80E", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1210, - "abbreviation": "FAME", - "nameKr": "", - "nameEn": "Fatty acid methyl ester", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "FAME", - "name": "Fatty acid methyl ester", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1211, - "abbreviation": "OLA13000", - "nameKr": "", - "nameEn": "OLOA 13000", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "OLA13000", - "name": "OLOA 13000", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1212, - "abbreviation": "OLA216Q", - "nameKr": "", - "nameEn": "OLOA 216Q", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "OLA216Q", - "name": "OLOA 216Q", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1213, - "abbreviation": "INNACID", - "nameKr": "", - "nameEn": "Isononanoic acid", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "INNACID", - "name": "Isononanoic acid", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1214, - "abbreviation": "TOTM", - "nameKr": "", - "nameEn": "Tri-2-ethylhexyl trimelliate", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "TOTM", - "name": "Tri-2-ethylhexyl trimelliate", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1215, - "abbreviation": "MCZW700", - "nameKr": "", - "nameEn": "MONOCIZER W-700", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "MCZW700", - "name": "MONOCIZER W-700", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1216, - "abbreviation": "HGLN60", - "nameKr": "", - "nameEn": "Hygolg LN60", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "HGLN60", - "name": "Hygolg LN60", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1217, - "abbreviation": "CE810", - "nameKr": "", - "nameEn": "CE-810", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CE810", - "name": "CE-810", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1218, - "abbreviation": "CE810K", - "nameKr": "", - "nameEn": "CE-810K", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", - "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, - "special": "" - }, - "hazardClass": "", - "ergNumber": "", - "idlh": "", - "aegl2": "", - "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", - "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" - }, - "ibcHazard": "", - "ibcShipType": "", - "ibcTankType": "", - "ibcDetection": "", - "ibcFireFighting": "", - "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", - "emsFirstAid": "", - "cargoCodes": [ - { - "code": "CE810K", - "name": "CE-810K", - "company": "", - "source": "화물적부도" - } - ], - "portFrequency": [] - }, - { - "id": 1219, - "abbreviation": "SYN6", - "nameKr": "", - "nameEn": "Spectrasyn 6", - "synonymsEn": "", - "synonymsKr": "", - "unNumber": "", - "casNumber": "", - "transportMethod": "", - "sebc": "", + "casNumber": "75-01-4", + "transportMethod": "포장(2.1급), 산적액화가스", + "sebc": "GD (Gas-Dissolver)", "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", - "vaporDensity": "", - "explosionRange": "", + "state": "기체(액화)", + "color": "무색", + "odor": "달콤한", + "flashPoint": "-78℃", + "autoIgnition": "472℃", + "boilingPoint": "-14℃", + "density": "0.91", + "solubility": "8.8 g/L (25℃)", + "vaporPressure": "2,980 mmHg (25℃)", + "vaporDensity": "2.15", + "explosionRange": "3.6~33%", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 2, + "fire": 4, + "reactivity": 2, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "고인화성, 발암성, 가스(G), 해상수거 불가", + "ergNumber": "116", "idlh": "", - "aegl2": "", + "aegl2": "1,200 ppm", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "반경 800m 이상", + "responseDistanceSpillDay": "반경 100m 이상", + "responseDistanceSpillNight": "중 800m 이상", + "marineResponse": "기체로 확산, 해상수거 불가", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", - "exposure": "", - "regulation": "" + "hazard": "발암성(Group1), 고인화성, 변이원성, 간손상", + "firstAid": "흡입: 신선한 공기, 산소공급, 의료조치. 동상(액화): 미온수 해동. 피부/안구: 물로 세척. 경구: 의료조치.", + "fireFighting": "가스 차단 우선. CO₂/건조분말. 용기 냉각.", + "spillResponse": "점화원 제거. 환기. 증기운 이동 억제. 중합 반응 유의.", + "exposure": "TWA 1 ppm, STEL 5 ppm, AEGL-2 1,200 ppm", + "regulation": "유해화학물질관리법, 고압가스안전관리법" }, "ibcHazard": "", "ibcShipType": "", @@ -83341,65 +39719,65 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-D, S-U", + "emsFire": "F-D", + "emsSpill": "S-U", "emsFirstAid": "", "cargoCodes": [ { - "code": "SYN6", - "name": "Spectrasyn 6", - "company": "", - "source": "화물적부도" + "code": "VCM", + "name": "Vinyl chloride monomer", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 1220, - "abbreviation": "TXM16342", - "nameKr": "", - "nameEn": "Toluene/Xylene Mix-16342", - "synonymsEn": "", - "synonymsKr": "", + "id": 512, + "abbreviation": "HBM", + "nameKr": "에이치비엠", + "nameEn": "Volatile oil", + "synonymsKr": "에이치비엠", + "synonymsEn": "VOLATILE OIL", "unNumber": "", "casNumber": "", - "transportMethod": "", - "sebc": "", + "transportMethod": "산적액체(Y류)", + "sebc": "E (Evaporator)", "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", + "state": "액체", + "color": "』루명-노란색", + "odor": "해", + "flashPoint": "-29℃", + "autoIgnition": "자료없음", "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "density": "0.7( 검정사확인)", + "solubility": "불용", + "vaporPressure": "(물 17,5mmHg)", "vaporDensity": "", "explosionRange": "", "nfpa": { - "health": 0, - "fire": 0, - "reactivity": 0, + "health": 2, + "fire": 4, + "reactivity": 3, "special": "" }, - "hazardClass": "", - "ergNumber": "", + "hazardClass": "유해액체물질 / Y(시클로펜탄 등 8종 혼합)", + "ergNumber": "128", "idlh": "", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", - "ppeClose": "", - "ppeFar": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "50m", + "responseDistanceSpillNight": "300m", + "marineResponse": "증발 (E)", + "ppeClose": "근거리(레벨A)", + "ppeFar": "원거리(레벨C)", "msds": { - "hazard": "", - "firstAid": "", - "fireFighting": "", - "spillResponse": "", + "hazard": "휘발성 석유 혼합물, 피부 흡수 유해", + "firstAid": "흡입노출 • 신선한 곳으로 이동. 의사진료. 산소공급, 의료조치 피부접촉 • 다량의 비누와 물로 씻을 것, 의학조치 안구접촉 ’ 긴급 의료조치, 적어도 15분 이상 흐르는 물에 씻을 것 경구섭취 • 입을 씻어낼 것, 긴급 의료조치, 토하게 하지 말 것", + "fireFighting": "복합가스탐지기 이용 농도 확인. 먼 곳에서 분무주수.", + "spillResponse": "점화원 제거. 오일펜스/흡착재 회수.", "exposure": "", "regulation": "" }, @@ -83409,27 +39787,27 @@ "ibcDetection": "", "ibcFireFighting": "", "ibcMinRequirement": "", - "emsCode": "", - "emsFire": "", - "emsSpill": "", + "emsCode": "F-E, S-E", + "emsFire": "F-E", + "emsSpill": "S-E", "emsFirstAid": "", "cargoCodes": [ { - "code": "TXM16342", - "name": "Toluene/Xylene Mix-16342", - "company": "", - "source": "화물적부도" + "code": "HBM", + "name": "Volatile oil", + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 1221, + "id": 513, "abbreviation": "TDAE", "nameKr": "정재된 석유 추출물, 중 나프텐 증류 용재", "nameEn": "TREATED DISTILLATE AROMATIC EXTRACT", - "synonymsEn": "Extracts (petroleum), solvent-refined heavy paraffinic distillate solvent / Aromatische Extrakte / distillates, petroleum, heavy paraffinic, solvent-refined / Extracts (petroleum), solvent-refined heavy paraffinic distillate solvent / Extrakte (Erdoel), durch Losungsmittel aufbereitetes schweres paraffinhaltiges Destillatlosungsmittel / Extracts (petroleum), solvent-refined heavy paraffinic distillate solvent Distillate aromatic extract (treated)", "synonymsKr": "디메칠설폭사이드(DMSO)로 추출한 성분을 3% 초과하여 함유하고 있는석유 유래물질 (Extracts (petroleum), solvent-refined heavy paraffinic distillate solvent) / 디메칠설폭사이드(DMSO)로추출한성분을3%초과하여함유하고있는석유유래물질(Extracts(petroleum),solvent-refinedheavyparaffinicdistillatesolvent) / 석유유래물질(Extracts(petroleum),solvent-refinedheavyparaffinicdistillatesolvent)", + "synonymsEn": "Extracts (petroleum), solvent-refined heavy paraffinic distillate solvent / Aromatische Extrakte / distillates, petroleum, heavy paraffinic, solvent-refined / Extracts (petroleum), solvent-refined heavy paraffinic distillate solvent / Extrakte (Erdoel), durch Losungsmittel aufbereitetes schweres paraffinhaltiges Destillatlosungsmittel / Extracts (petroleum), solvent-refined heavy paraffinic distillate solvent Distillate aromatic extract (treated)", "unNumber": "", "casNumber": "68783-04-0", "transportMethod": "", @@ -83485,33 +39863,33 @@ { "code": "TDAE", "name": "TREATED DISTILLATE AROMATIC EXTRACT", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] }, { - "id": 1222, + "id": 514, "abbreviation": "DAE", "nameKr": "석유 추출물, 중 나프텐 증류 용재", "nameEn": "DISTILLATE AROMATIC EXTRACT", - "synonymsEn": "·Mobil 30, Mobil Mobilsol 30 Mobil aromatic oil Mobil rubber extender oil mineral oil petroleum extracts heavy paraffinic distillate solvent", - "synonymsKr": "중 파라핀 증류액 용제 추출물 / 정제유방향족추출물 / 중파라핀증류액용제추출물 / 정제유방향족추출물(DISTILLATEAROMATICEXTRACT) / 석유추출물,heavyparaffinicdistillatesolvent", + "synonymsKr": "SOIL / 정제유 방향족 추출물 / 추출물, (석유), 중질 파라핀 정제유 솔벤트", + "synonymsEn": "Extracts (petroleum), heavy paraffinic distillate solvent / FURFURALEXTRACT / DISTILLATEAROMATICEXTRACTS / distillate aromatic extract / HEAVYPARAFFINICDISTILLATESOLVENTEXTRACT / paraffinic distillate, heavy, solvent-extracted / Extracts (petroleum), heavy paraffinic distillate solvent / Extrakte (Erdoel), schwere paraffinhaltige Destillat-Losungsmittel-", "unNumber": "", "casNumber": "64742-04-7", "transportMethod": "", "sebc": "", - "usage": "", - "state": "", - "color": "", - "odor": "", - "flashPoint": "", - "autoIgnition": "", - "boilingPoint": "", - "density": "", - "solubility": "", - "vaporPressure": "", + "usage": "합성고무점가제", + "state": "액체", + "color": "진한 갈색", + "odor": "특유의 냄새", + "flashPoint": "270℃", + "autoIgnition": ">290℃", + "boilingPoint": "300~580℃", + "density": "1.0171", + "solubility": "불용", + "vaporPressure": "(물 23.8mmHg)", "vaporDensity": "", "explosionRange": "", "nfpa": { @@ -83520,20 +39898,20 @@ "reactivity": 0, "special": "" }, - "hazardClass": "", + "hazardClass": "해양환경관리법/기름", "ergNumber": "", - "idlh": "", + "idlh": "3O 분) 가■己 C거으", "aegl2": "", "erpg2": "", - "responseDistanceFire": "", - "responseDistanceSpillDay": "", - "responseDistanceSpillNight": "", - "marineResponse": "", + "responseDistanceFire": "800m", + "responseDistanceSpillDay": "최소반경 50m", + "responseDistanceSpillNight": "풍하 방향으로 최소 50m", + "marineResponse": "부유 (F)", "ppeClose": "", "ppeFar": "", "msds": { "hazard": "", - "firstAid": "", + "firstAid": "흡입노출 • 신선한 곳으로 이동, 산소공급, 인공호흡 피부접촉 • 가능하면 비누를 사용 20분 이상 다량의 물로 씻을 것, 의사진료 안구접촉 • 즉시 다량의 흐르는 물로 20분 이상 씻어넬 것 경구섭취 • 억지로 구토를 유도하지 말고, 안정을 취하게 한 후 의사진료 초동 대옹방법 보호복 호흡구 보안경 보호장갑 기타장비 대응장비 3,4형식 (C급) 방독마스크(반면,전면) Q Q 열화상카메라 I 초기이격거구(m) 50 방호거 ai(m) 50 | ► 유출물질은 암을 일으킬 수 있는 유해한 물질로, 모든 출동세력 풍상에 위치, 최소 50m 이격거리 유지 해상유출시 ► 출동 경비정(방제정) 복합가스용 방독마스크를 포함한 3,4형식 보호복 착용, 증기흡입과 피부와 눈에 접촉을 피할 것 으 유출물질은 물에 녹지 않고 부유하는 물질로 오일펜스 설치 확산방지 ► 유홉착재, 뜰채 등 이용 유출물질 회수 I 화재치대피거리 (m) 800 I + ► 유출물질윤 연소시 유독가스 방출, 풍상에 위치, 내알클포 이용 화재진압 화재.포발시 ► 열화상카메라 운용(결과전파). 소화포 이용 사고선 냉각조치 할 것 ► 직수분사 금지(화재를 번지게 할 수 있", "fireFighting": "", "spillResponse": "", "exposure": "", @@ -83553,10 +39931,10 @@ { "code": "DAE", "name": "DISTILLATE AROMATIC EXTRACT", - "company": "", - "source": "화물적부도" + "company": "국제공통", + "source": "적부도" } ], "portFrequency": [] } -] +] \ No newline at end of file diff --git a/frontend/src/interfaces/hns/HnsInterface.ts b/frontend/src/interfaces/hns/HnsInterface.ts index 50c5726..ecf551c 100644 --- a/frontend/src/interfaces/hns/HnsInterface.ts +++ b/frontend/src/interfaces/hns/HnsInterface.ts @@ -282,6 +282,8 @@ export interface HNSSearchSubstance { hazardClass: string; ergNumber: string; idlh: string; + twa: string; + stel: string; aegl2: string; erpg2: string; responseDistanceFire: string;