diff --git a/packages/preview/typsium-ghs/0.1.1/LICENSE b/packages/preview/typsium-ghs/0.1.1/LICENSE
new file mode 100644
index 0000000000..b77bf2ab72
--- /dev/null
+++ b/packages/preview/typsium-ghs/0.1.1/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2025
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/packages/preview/typsium-ghs/0.1.1/README.md b/packages/preview/typsium-ghs/0.1.1/README.md
new file mode 100644
index 0000000000..928bc4dcf3
--- /dev/null
+++ b/packages/preview/typsium-ghs/0.1.1/README.md
@@ -0,0 +1,44 @@
+[](https://github.com/Typsium/typsium-ghs)
+[](https://github.com/Typsium/typsium/blob/main/LICENSE)
+
+
+# Typst GHS and HP Statements
+
+A Typst package for quickly displaying and formatting Hazard and Precautionary statements.
+
+## Usage
+Use the `#ghs` command to display a GHS pictogram, to get more information about each pictogram use `#ghs-info`
+```typst
+#import "@preview/typsium-ghs:0.1.0": *
+#grid(
+ columns: 9,
+ ..range(1,10).map(x=> ghs(x))
+)
+```
+
+
+Easily Display Hazard and Precautionary statements in three languages (english, french and german):
+```typst
+#h-statement(310)\
+#p-statement(310)\
+#hp("P305+P351+P338", only-statement:true)
+```
+
+
+There are variants for some statements:
+```typst
+#p-statement(310, only-statement: true)\
+#p-statement(310, variant:1)\
+#p-statement(310, variant:2)
+```
+
+
+You can also add parameters when needed:
+```typst
+#h-statement(370)\
+#h-statement(370, parameters:"the lungs")\
+#h-statement(370, parameters:("the lungs", "when inhaled"))\
+#h-statement(370, variant:1)\
+#h-statement(370, variant:1, parameters:"when inhaled")\
+```
+
diff --git a/packages/preview/typsium-ghs/0.1.1/src/ghs.typ b/packages/preview/typsium-ghs/0.1.1/src/ghs.typ
new file mode 100644
index 0000000000..ee6a706a2c
--- /dev/null
+++ b/packages/preview/typsium-ghs/0.1.1/src/ghs.typ
@@ -0,0 +1,31 @@
+#let validate-index(index)={
+ if type(index) == str{
+ return int(index.find(regex("\d+")))
+ }else if type(index) == int{
+ return index
+ }
+ return 1
+}
+
+#let ghs-info=(
+ GHS01:(name:"Explosive",image:"resources/ghs-pictograms/GHS01.svg", usage:("Unstable explosives", "Explosives", "Self-reactive substances and mixtures", "Organic peroxides")),
+ GHS02:(name:"Flammable",image:"resources/ghs-pictograms/GHS02.svg", usage: ("Flammable gases", "Flammable aerosols", "Flammable liquids", "Flammable solids", "Self-reactive substances and mixtures", "Pyrophoric liquids", "Pyrophoric solids", "Combustible solids", "Combustible liquids", "Self-heating substances and mixtures", "Substances and mixtures, which in contact with water, emit flammable gases", "Organic peroxides")),
+ GHS03:(name:"Oxidizing",image:"resources/ghs-pictograms/GHS03.svg", usage:("Oxidizing gases", "Oxidizing liquids", "Oxidizing solids")),
+ GHS04:(name:"Compressed Gas",image:"resources/ghs-pictograms/GHS04.svg", usage:("Compressed gases", "Liquefied gases", "Refrigerated liquefied gases", "Dissolved gases")),
+ GHS05:(name:"Corrosive",image:"resources/ghs-pictograms/GHS05.svg", usage:("Corrosive to metals", "Skin corrosion", "Serious eye damage")),
+ GHS06:(name:"Toxic",image:"resources/ghs-pictograms/GHS06.svg", usage:("Acute toxicity (oral, dermal, inhalation)",)),
+ GHS07:(name:"Health Hazard",image:"resources/ghs-pictograms/GHS07.svg", usage:("Acute toxicity (oral, dermal, inhalation)", "Skin irritation", "Eye irritation", "Skin sensitization", "Specific target organ toxicity following single exposure", "Respiratory tract irritation", "Narcotic effects")),
+ GHS08:(name:"Serious Health hazard",image:"resources/ghs-pictograms/GHS08.svg", usage:("Respiratory sensitization", "Germ cell mutagenicity", "Carcinogenicity", "Reproductive toxicity", "Specific target organ toxicity following single exposure", "Specific target organ toxicity following repeated exposure", "Aspiration hazard")),
+ GHS09:(name:"Toxic",image:"resources/ghs-pictograms/GHS09.svg", usage:("Acute hazards to the aquatic environment", "Chronic hazards to the aquatic environment")),
+)
+
+#let ghs(
+ icon,
+ width:auto,
+ height:auto,
+ fit: "cover",
+)={
+ let index = calc.clamp(validate-index(icon), 1, 9)
+
+ image("resources/ghs-pictograms/GHS0" + str(index) + ".svg", height: height, width: width, alt: ghs-info.at("GHS0"+ str(index)).name + " sign", fit: fit)
+}
\ No newline at end of file
diff --git a/packages/preview/typsium-ghs/0.1.1/src/hp.typ b/packages/preview/typsium-ghs/0.1.1/src/hp.typ
new file mode 100644
index 0000000000..200baf35a1
--- /dev/null
+++ b/packages/preview/typsium-ghs/0.1.1/src/hp.typ
@@ -0,0 +1,155 @@
+#let get-language-index(lang)={
+ if lang == "en"{1}
+ else if lang == "de"{0}
+ else if lang == "fr"{2}
+ else if lang == "it"{3}
+ else{1}
+}
+
+#let database = state("hp-statements", csv("resources/hp-statements.tsv", delimiter: "\t", row-type: dictionary))
+
+#let validate-string(statement, substitute)={
+ if statement.contains(regex("p|P")){
+ substitute = "P"
+ } else if statement.contains(regex("h|H")){
+ substitute = "H"
+ }
+
+ statement = statement.replace(regex("[A-Za-z ,-]"), "")
+ statement = upper(statement)
+
+ statement = statement.replace(regex("(\d+)"), x=> substitute + x.text)
+
+ return statement
+}
+
+#let validate-statement(statement, substitute)={
+ if type(statement) == int {
+ substitute + str(statement)
+ } else if type(statement) == str{
+ validate-string(statement, substitute)
+ } else if type(statement) == content{
+ validate-string(statement.text(), substitute)
+ }
+}
+
+#let get-statement(statement, variant, parameters, only-statement, as-hover,default: x=> "no statement found: " + repr(x))={
+ let x = parameters.len()
+ let parameterlen = if type(parameters) == str{
+ "-1"
+ }else {
+ if parameters.len() > 0 {"-"+str(parameters.len())}else{""}
+ }
+
+ context {
+ let lang-index = get-language-index(text.lang)
+ let db = database.get().at(lang-index)
+ let full-statement
+ if variant != auto{
+ let variant = "."+ str(variant)
+ full-statement = db.at(statement + variant + parameterlen, default: db.at(statement + variant, default: db.at(statement, default: none)))
+ }else{
+ full-statement = db.at(statement + parameterlen, default: db.at(statement, default: none))
+ }
+
+ if full-statement == none {
+ if statement.contains("+"){
+ full-statement = statement.split("+").map(x=> db.at(x, default:"")+ " ").sum()
+ }
+ }
+
+ if full-statement == none {
+ full-statement = default(statement)
+ }
+
+ if type(full-statement) == str{
+ if type(parameters) == str{
+ full-statement = full-statement.replace("{1}", parameters)
+ } else if type(parameters) == array{
+ full-statement = full-statement.replace("{1}", parameters.at(0, default: "…"))
+ .replace("{2}", parameters.at(1, default: "…"))
+ }
+ }
+
+ if not only-statement{
+ full-statement = statement +": "+ full-statement
+ }
+
+ if as-hover{
+ return link(full-statement.replace(" ", "_"), statement)
+ }
+ return full-statement
+ }
+}
+
+///
+/// Displays a hazard statement.
+/// - statement (): the code of the statement to display
+/// - variant (): selects which variant to display. only applicable for some statements
+/// - parameters (): additional parameters can manually be added and are filled into the hp-statements based on the order they appear in
+/// - only-statement (bool): should the code of the statement be displayed
+/// - as-hover (bool): Will display statements only as their code, but provides the full statement inside a link so it is shown when hovering over it. May not work in all PDF viewers
+/// - validate (): only change this if you are a plugin developer and know you can skip validation
+/// -> content
+#let h-statement(statement, variant: auto, parameters: (), only-statement:false, as-hover:false, validate: true)={
+ if validate{
+ statement = validate-statement(statement, "H")
+ }
+
+ return get-statement(statement, variant, parameters, only-statement, as-hover)
+}
+
+///
+/// Displays a precautionary statement.
+/// - statement (): the code of the statement to display
+/// - variant (): selects which variant to display. only applicable for some statements
+/// - parameters (): additional parameters can manually be added and are filled into the hp-statements based on the order they appear in
+/// - only-statement (bool): should the code of the statement be displayed
+/// - as-hover (bool): Will display statements only as their code, but provides the full statement inside a link so it is shown when hovering over it. May not work in all PDF viewers
+/// - validate (): only change this if you are a plugin developer and know you can skip validation
+/// -> content
+#let p-statement(statement, variant: auto, parameters: (), only-statement:false,as-hover:false, validate: true)={
+ if validate{
+ statement = validate-statement(statement, "P")
+ }
+
+ return get-statement(statement, variant, parameters, only-statement, as-hover)
+}
+///
+/// Displays a hazard or precautionary statement. The type is inferred from if the code contains an H or a P. if integers are provided it defaults to precautionary statements
+/// - statement (): the code of the statement to display
+/// - variant (): selects which variant to display. only applicable for some statements
+/// - parameters (): additional parameters can manually be added and are filled into the hp-statements based on the order they appear in
+/// - only-statement (bool): should the code of the statement be displayed
+/// - as-hover (bool): Will display statements only as their code, but provides the full statement inside a link so it is shown when hovering over it. May not work in all PDF viewers
+/// - validate (): only change this if you are a plugin developer and know you can skip validation
+/// -> content
+#let hp(statement, variant: auto, parameters: (), only-statement:false,as-hover:false, validate: true)= p-statement(statement, variant:variant, parameters:parameters, only-statement:only-statement, as-hover: as-hover, validate:validate)
+
+#let split-statements(statements, validate: true)={
+ statements = if type(statements) == str{
+ statements.split(regex("[,\s\-]+")).filter(x=> x.len() != 0)
+ } else if type(statements) == array{
+ statements.map(x=> x.split(regex("[,\s\-]+"))).flatten().filter(x=> x.len() != 0)
+ }
+ if validate{
+ statements.map(x=> validate-statement(x, "P"))
+ }else{
+ statements
+ }
+}
+
+///
+/// Displays multiple hazard and precautionary statements
+/// - statements (str|array): a list of statement codes to display.
+/// - only-statement (bool): should the code of the statement be displayed
+/// - as-hover (bool): Will display statements only as their code, but provides the full statement inside a link so it is shown when hovering over it. May not work in all PDF viewers
+/// - validate (bool): only change this if you are a plugin developer and know you can skip validation
+/// -> content
+#let display-statements(statements, only-statement:false, as-hover:false, validate: true)={
+ statements = split-statements(statements, validate:validate)
+ for value in statements {
+ hp(value, only-statement:only-statement,as-hover:as-hover, validate:validate)
+ linebreak()
+ }
+}
diff --git a/packages/preview/typsium-ghs/0.1.1/src/lib.typ b/packages/preview/typsium-ghs/0.1.1/src/lib.typ
new file mode 100644
index 0000000000..d5be4218c8
--- /dev/null
+++ b/packages/preview/typsium-ghs/0.1.1/src/lib.typ
@@ -0,0 +1,2 @@
+#import "ghs.typ": ghs, ghs-info
+#import "hp.typ": h-statement, p-statement, hp, split-statements, display-statements
diff --git a/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS01.svg b/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS01.svg
new file mode 100644
index 0000000000..9650453288
--- /dev/null
+++ b/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS01.svg
@@ -0,0 +1,154 @@
+
+
\ No newline at end of file
diff --git a/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS02.svg b/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS02.svg
new file mode 100644
index 0000000000..e66630a3e1
--- /dev/null
+++ b/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS02.svg
@@ -0,0 +1,24 @@
+
+
\ No newline at end of file
diff --git a/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS03.svg b/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS03.svg
new file mode 100644
index 0000000000..bc45aeb669
--- /dev/null
+++ b/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS03.svg
@@ -0,0 +1,27 @@
+
+
\ No newline at end of file
diff --git a/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS04.svg b/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS04.svg
new file mode 100644
index 0000000000..da64867c0b
--- /dev/null
+++ b/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS04.svg
@@ -0,0 +1,21 @@
+
+
\ No newline at end of file
diff --git a/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS05.svg b/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS05.svg
new file mode 100644
index 0000000000..452761dc93
--- /dev/null
+++ b/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS05.svg
@@ -0,0 +1,78 @@
+
+
\ No newline at end of file
diff --git a/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS06.svg b/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS06.svg
new file mode 100644
index 0000000000..9920362f14
--- /dev/null
+++ b/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS06.svg
@@ -0,0 +1,66 @@
+
+
\ No newline at end of file
diff --git a/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS07.svg b/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS07.svg
new file mode 100644
index 0000000000..5b3886b80e
--- /dev/null
+++ b/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS07.svg
@@ -0,0 +1,24 @@
+
+
\ No newline at end of file
diff --git a/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS08.svg b/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS08.svg
new file mode 100644
index 0000000000..79f4c19560
--- /dev/null
+++ b/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS08.svg
@@ -0,0 +1,60 @@
+
+
\ No newline at end of file
diff --git a/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS09.svg b/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS09.svg
new file mode 100644
index 0000000000..ad33d7eb6a
--- /dev/null
+++ b/packages/preview/typsium-ghs/0.1.1/src/resources/ghs-pictograms/GHS09.svg
@@ -0,0 +1,42 @@
+
+
\ No newline at end of file
diff --git a/packages/preview/typsium-ghs/0.1.1/src/resources/hp-statements.tsv b/packages/preview/typsium-ghs/0.1.1/src/resources/hp-statements.tsv
new file mode 100644
index 0000000000..28a3d5319a
--- /dev/null
+++ b/packages/preview/typsium-ghs/0.1.1/src/resources/hp-statements.tsv
@@ -0,0 +1,5 @@
+H200 H201 H202 H203 H204 H205 H206 H207 H208 H220 H221 H222 H223 H224 H225 H226 H228 H229 H230 H231 H232 H240 H241 H242 H250 H251 H252 H260 H261 H270 H271 H272 H280 H281 H290 H300 H301 H302 H304 H310 H311 H312 H314 H315 H317 H318 H319 H330 H331 H332 H334 H335 H336 H340 H340-0 H340-1 H341 H341.0 H341-0 H341-1 H350 H350.0 H350-0 H350-1 H350i H351 H351.0 H351-0 H351-1 H360 H360.0 H360-0 H360-1 H360F H360D H360FD H360Fd H360Df H361 H361.0 H361-0 H361-1 H361f H361d H361fd H362 H370 H370.0 H370.1 H370.1-1 H370-1 H370-2 H371 H371.0 H371.1 H371.1-1 H371-1 H371-2 H372 H372.0 H372.1 H372.1-1 H372-1 H372-2 H373 H373.0 H373.1 H373.1-1 H373-1 H373-2 H300+H310 H300+H310+H330 H300+H330 H301+H311 H301+H311+H331 H301+H331 H302+H312 H302+H312+H332 H302+H332 H310+H330 H311+H331 H312+H332 H400 H410 H411 H412 H413 H420 EUH014 EUH018 EUH018.0 EUH018.1 EUH018.2 EUH019 EUH029 EUH031 EUH032 EUH044 EUH066 EUH070 EUH071 EUH201 EUH201A EUH202 EUH203 EUH204 EUH205 EUH206 EUH207 EUH208 EUH208.0 EUH208-1 EUH209 EUH209A EUH210 EUH211 EUH212 EUH380 EUH381 EUH401 EUH430 EUH431 EUH440 EUH441 EUH450 EUH451 P101 P102 P103 P201 P202 P210 P211 P212 P220 P222 P223 P230 P230.0 P230-1 P231 P231.0 P231.1 P231-1 P232 P233 P234 P235 P240 P241 P241.0 P241.1 P241.2 P241.3 P241-1 P242 P243 P244 P250 P250.0 P250.1 P250.2 P250.3 P250-1 P251 P260 P260.0 P260.1 P260.2 P260.3 P260.4 P260.5 P260.6 P261 P261.0 P261.1 P261.2 P261.3 P261.4 P261.5 P261.6 P262 P263 P264 P264.0 P264-1 P270 P271 P272 P273 P280 P280.0 P280.1 P280.2 P280.3 P280.4 P282 P283 P284 P231+P232 P231+P232.0 P231+P232.1 P231+P232-1 P301 P302 P303 P304 P305 P306 P308 P310 P310.0 P310.1 P310.2 P310-1 P311 P311.0 P311.1 P311.2 P311-1 P312 P312.0 P312.1 P312.2 P312-1 P313 P314 P315 P320 P320.0 P320-1 P320-2 P321 P321.0 P321-1 P321-2 P330 P331 P332 P333 P334 P334.0 P334.1 P334.2 P335 P336 P337 P338 P340 P342 P351 P352 P352.0 P352.1 P352-1 P353 P353.0 P353.1 P353.2 P360 P361 P362 P363 P364 P370 P371 P372 P373 P375 P376 P377 P378 P378.0 P378-1 P380 P381 P390 P391 P301+P310 P301+P310.0 P301+P310.1 P301+P310.2 P301+P310-1 P301+P312 P301+P312.0 P301+P312.1 P301+P312.2 P301+P312-1 P301+P330+P331 P302+P334 P302+P335+P334 P302+P335+P334.0 P302+P335+P334.1 P302+P335+P334.2 P302+P352 P302+P352.0 P302+P352.1 P302+P352-1 P303+P361+P353 P303+P361+P353.0 P303+P361+P353.1 P303+P361+P353.2 P304+P340 P305+P351+P338 P306+P360 P308+P311 P308+P311.0 P308+P311.1 P308+P311.2 P308+P311-1 P308+P313 P332+P313 P333+P313 P336+P315 P337+P313 P342+P311 P342+P311.0 P342+P311.1 P342+P311.2 P342+P311-1 P361+P364 P362+P364 P370+P372+P380+P373 P370+P376 P370+P378 P370+P378.0 P370+P378-1 P370+P380+P375 P370+P380+P375+P378 P370+P380+P375+P378.0 P370+P380+P375+P378-1 P371+P380+P375 P401 P401.0 P401-1 P402 P403 P404 P405 P406 P406.0 P406.1 P406-1 P407 P410 P411 P411.0 P411.1-1 P411.2-1 P412 P412.0 P412.1 P412.2 P413 P413.0 P413.1-2 P413.2-2 P420 P402+P404 P403+P233 P403+P235 P410+P403 P410+P412 P410+P412.0 P410+P412.1 P410+P412.2 P501 P501.0 P501.0-1 P501.1-1 P501.2-1 P502
+Instabil, explosiv. Explosiv, Gefahr der Massenexplosion. "Explosiv; große Gefahr durch Splitter, Spreng- und Wurfstücke." "Explosiv; Gefahr durch Feuer, Luftdruck oder Splitter, Spreng- und Wurfstücke." Gefahr durch Feuer oder Splitter, Spreng- und Wurfstücke. Gefahr der Massenexplosion bei Feuer. "Gefahr durch Feuer, Druckstoß oder Sprengstücke; erhöhte Explosionsgefahr wenn das Desensibilisierungsmittel reduziert wird." "Gefahr durch Feuer oder Sprengstücke; erhöhte Explosionsgefahr wenn das Desensibilisierungsmittel reduziert wird." "Gefahr durch Feuer; erhöhte Explosionsgefahr wenn das Desensibilisierungsmittel reduziert wird." Extrem entzündbares Gas. Entzündbares Gas. Extrem entzündbares Aerosol. Entzündbares Aerosol. Flüssigkeit und Dampf extrem entzündbar. Flüssigkeit und Dampf leicht entzündbar. Flüssigkeit und Dampf entzündbar. Entzündbarer Feststoff. Behälter steht unter Druck: Kann bei Erwärmung bersten. Kann auch in Abwesenheit von Luft explosionsartig reagieren. Kann auch in Abwesenheit von Luft bei erhöhtem Druck und/oder erhöhter Temperatur explosionsartig reagieren. Kann sich bei Kontakt mit Luft spontan entzünden. Erwärmung kann Explosion verursachen. Erwärmung kann Brand oder Explosion verursachen. Erwärmung kann Brand verursachen. Entzündet sich in Berührung mit Luft von selbst. "Selbsterhitzungsfähig; kann in Brand geraten." "In großen Mengen selbsterhitzungsfähig; kann in Brand geraten." In Berührung mit Wasser entstehen entzündbare Gase, die sich spontan entzünden können. In Berührung mit Wasser entstehen entzündbare Gase. "Kann Brand verursachen oder verstärken; Oxidationsmittel." "Kann Brand oder Explosion verursachen; starkes Oxidationsmittel." "Kann Brand verstärken; Oxidationsmittel." "Enthält Gas unter Druck; kann bei Erwärmung explodieren." "Enthält tiefgekühltes Gas; kann Kälteverbrennungen oder -verletzungen verursachen." Kann gegenüber Metallen korrosiv sein. Lebensgefahr bei Verschlucken. Giftig bei Verschlucken. Gesundheitsschädlich bei Verschlucken. Kann bei Verschlucken und Eindringen in die Atemwege tödlich sein. Lebensgefahr bei Hautkontakt. Giftig bei Hautkontakt. Gesundheitsschädlich bei Hautkontakt. Verursacht schwere Verätzungen der Haut und schwere Augenschäden. Verursacht Hautreizungen. Kann allergische Hautreaktionen verursachen. Verursacht schwere Augenschäden. Verursacht schwere Augenreizung. Lebensgefahr bei Einatmen. Giftig bei Einatmen. Gesundheitsschädlich bei Einatmen. Kann bei Einatmen Allergie, asthmaartige Symptome oder Atembeschwerden verursachen. Kann die Atemwege reizen. Kann Schläfrigkeit und Benommenheit verursachen. Kann genetische Defekte verursachen . Kann genetische Defekte verursachen. Kann genetische Defekte verursachen {1}. Kann vermutlich genetische Defekte verursachen . Kann vermutlich genetische Defekte verursachen . Kann vermutlich genetische Defekte verursachen. Kann vermutlich genetische Defekte verursachen {1}. Kann Krebs erzeugen . Kann Krebs erzeugen . Kann Krebs erzeugen. Kann Krebs erzeugen {1}. Kann bei Einatmen Krebs erzeugen. Kann vermutlich Krebs erzeugen . Kann vermutlich Krebs erzeugen . Kann vermutlich Krebs erzeugen. Kann vermutlich Krebs erzeugen {1}. Kann die Fruchtbarkeit beeinträchtigen oder das Kind im Mutterleib schädigen . Kann die Fruchtbarkeit beeinträchtigen oder das Kind im Mutterleib schädigen . Kann die Fruchtbarkeit beeinträchtigen oder das Kind im Mutterleib schädigen. Kann die Fruchtbarkeit beeinträchtigen oder das Kind im Mutterleib schädigen {1}. Kann die Fruchtbarkeit beeinträchtigen. Kann das Kind im Mutterleib schädigen. Kann die Fruchtbarkeit beeinträchtigen. Kann das Kind im Mutterleib schädigen. Kann die Fruchtbarkeit beeinträchtigen. Kann vermutlich das Kind im Mutterleib schädigen. Kann das Kind im Mutterleib schädigen. Kann vermutlich die Fruchtbarkeit beeinträchtigen. Kann vermutlich die Fruchtbarkeit beeinträchtigen oder das Kind im Mutterleib schädigen Kann vermutlich die Fruchtbarkeit beeinträchtigen oder das Kind im Mutterleib schädigen Kann vermutlich die Fruchtbarkeit beeinträchtigen oder das Kind im Mutterleib schädigen Kann vermutlich die Fruchtbarkeit beeinträchtigen oder das Kind im Mutterleib schädigen {1} Kann vermutlich die Fruchtbarkeit beeinträchtigen. Kann vermutlich das Kind im Mutterleib schädigen. Kann vermutlich die Fruchtbarkeit beeinträchtigen. Kann vermutlich das Kind im Mutterleib schädigen. Kann Säuglinge über die Muttermilch schädigen. Schädigt die Organe . Schädigt die Organe . Schädigt die Organe. Schädigt die Organe {1}. Schädigt {1}. Schädigt {1} {2}. Kann die Organe schädigen . Kann die Organe schädigen . Kann die Organe schädigen. Kann die Organe schädigen {1}. Kann {1} schädigen. Kann {1} schädigen {2}. Schädigt die Organe bei längerer oder wiederholter Exposition . Schädigt die Organe bei längerer oder wiederholter Exposition . Schädigt die Organe bei längerer oder wiederholter Exposition. Schädigt die Organe {1}. Schädigt {1} bei längerer oder wiederholter Exposition. Schädigt {1} {2}. Kann die Organe schädigen bei längerer oder wiederholter Exposition . Kann die Organe schädigen bei längerer oder wiederholter Exposition . Kann die Organe schädigen bei längerer oder wiederholter Exposition. Kann die Organe schädigen {1}. Kann {1} schädigen bei längerer oder wiederholter Exposition. Kann {1} schädigen {2}. Lebensgefahr bei Verschlucken oder Hautkontakt Lebensgefahr bei Verschlucken, Hautkontakt oder Einatmen Lebensgefahr bei Verschlucken oder Einatmen Giftig bei Verschlucken oder Hautkontakt Giftig bei Verschlucken, Hautkontakt oder Einatmen Giftig bei Verschlucken oder Einatmen Gesundheitsschädlich bei Verschlucken oder Hautkontakt Gesundheitsschädlich bei Verschlucken, Hautkontakt oder Einatmen Gesundheitsschädlich bei Verschlucken oder Einatmen Lebensgefahr bei Hautkontakt oder Einatmen Giftig bei Hautkontakt oder Einatmen Gesundheitsschädlich bei Hautkontakt oder Einatmen Sehr giftig für Wasserorganismen. Sehr giftig für Wasserorganismen mit langfristiger Wirkung. Giftig für Wasserorganismen, mit langfristiger Wirkung. Schädlich für Wasserorganismen, mit langfristiger Wirkung. Kann für Wasserorganismen schädlich sein, mit langfristiger Wirkung. Schädigt die öffentliche Gesundheit und die Umwelt durch Ozonabbau in der äußeren Atmosphäre Reagiert heftig mit Wasser. Kann bei Verwendung explosionsfähige/entzündbare Dampf/Luft-Gemische bilden. Kann bei Verwendung explosionsfähige/entzündbare Dampf/Luft-Gemische bilden. Kann bei Verwendung entzündbare Dampf/Luft-Gemische bilden. Kann bei Verwendung explosionsfähige Dampf/Luft-Gemische bilden. Kann explosionsfähige Peroxide bilden. Entwickelt bei Berührung mit Wasser giftige Gase. Entwickelt bei Berührung mit Säure giftige Gase. Entwickelt bei Berührung mit Säure sehr giftige Gase. Explosionsgefahr bei Erhitzen unter Einschluss. Wiederholter Kontakt kann zu spröder oder rissiger Haut führen. Giftig bei Berührung mit den Augen. Wirkt ätzend auf die Atemwege. Enthält Blei. Nicht für den Anstrich von Gegenständen verwenden, die von Kindern gekaut oder gelutscht werden könnten. Achtung! Enthält Blei. Cyanacrylat. Gefahr. Klebt innerhalb von Sekunden Haut und Augenlider zusammen. Darf nicht in die Hände von Kindern gelangen. Enthält Chrom (VI). Kann allergische Reaktionen hervorrufen. Enthält Isocyanate. Kann allergische Reaktionen hervorrufen. Enthält epoxidhaltige Verbindungen. Kann allergische Reaktionen hervorrufen. Achtung! Nicht zusammen mit anderen Produkten verwenden, da gefährliche Gase (Chlor) freigesetzt werden können. Achtung! Enthält Cadmium. Bei der Verwendung entstehen gefährliche Dämpfe. Hinweise des Herstellers beachten. Sicherheitsanweisungen einhalten. Enthält . Kann allergische Reaktionen hervorrufen. Enthält . Kann allergische Reaktionen hervorrufen. Enthält {1}. Kann allergische Reaktionen hervorrufen. Kann bei Verwendung leicht entzündbar werden. Kann bei Verwendung entzündbar werden. Sicherheitsdatenblatt auf Anfrage erhältlich. Achtung! Beim Sprühen können gefährliche lungengängige Tröpfchen entstehen. Aerosol oder Nebel nicht einatmen. Achtung! Bei der Verwendung kann gefährlicher lungengängiger Staub entstehen. Staub nicht einatmen. Kann beim Menschen endokrine Störungen verursachen Steht in dem Verdacht, beim Menschen endokrine Störungen zu verursachen Zur Vermeidung von Risiken für Mensch und Umwelt die Gebrauchsanleitung einhalten. Kann endokrine Störungen in der Umwelt verursachen Steht in dem Verdacht, endokrine Störungen in der Umwelt zu verursachen Anreicherung in der Umwelt und in lebenden Organismen einschließlich Menschen Starke Anreicherung in der Umwelt und in lebenden Organismen einschließlich Menschen Kann lang anhaltende und diffuse Verschmutzung von Wasserressourcen verursachen Kann sehr lang anhaltende und diffuse Verschmutzung von Wasserressourcen verursachen Ist ärztlicher Rat erforderlich, Verpackung oder Kennzeichnungsetikett bereithalten. Darf nicht in die Hände von Kindern gelangen. Vor Gebrauch Kennzeichnungsetikett lesen. Vor Gebrauch besondere Anweisungen einholen. Vor Gebrauch alle Sicherheitshinweise lesen und verstehen. Von Hitze, heißen Oberflächen, Funken, offenen Flammen sowie anderen Zündquellenarten fernhalten. Nicht rauchen. Nicht gegen offene Flamme oder andere Zündquelle sprühen. Erhitzen unter Einschluss und Reduzierung des Desensibilisierungsmittels vermeiden. Von Kleidung und anderen brennbaren Materialien fernhalten. Keinen Kontakt mit Luft zulassen. Keinen Kontakt mit Wasser zulassen. Feucht halten mit … Feucht halten mit … Feucht halten mit {1} Inhalt unter inertem Gas/… handhaben und aufbewahren. Inhalt unter inertem Gas/… handhaben und aufbewahren. Inhalt unter inertem Gas handhaben und aufbewahren. Inhalt unter {1} handhaben und aufbewahren. Vor Feuchtigkeit schützen. Behälter dicht verschlossen halten. Nur in Originalverpackung aufbewahren. Kühl halten. Behälter und zu befüllende Anlage erden. Explosionsgeschützte [elektrische/Lüftungs-/Beleuchtungs-/…] Geräte verwenden. Explosionsgeschützte [elektrische/Lüftungs-/Beleuchtungs-/…] Geräte verwenden. Explosionsgeschützte elektrische Geräte verwenden. Explosionsgeschützte Lüftungs-Geräte verwenden. Explosionsgeschützte Beleuchtungs-Geräte verwenden. Explosionsgeschützte {1}Geräte verwenden. Funkenarmes Werkzeug verwenden. Maßnahmen gegen elektrostatische Entladungen treffen. Ventile und Ausrüstungsteile öl- und fettfrei halten. Nicht schleifen/stoßen/reiben/… . Nicht schleifen/stoßen/reiben/… . Nicht schleifen. Nicht stoßen. Nicht reiben. Nicht {1}. Nicht durchstechen oder verbrennen, auch nicht nach Gebrauch. Staub/Rauch/Gas/Nebel/Dampf/Aerosol nicht einatmen. Staub/Rauch/Gas/Nebel/Dampf/Aerosol nicht einatmen. Staub nicht einatmen. Rauch nicht einatmen. Gas nicht einatmen. Nebel nicht einatmen. Dampf nicht einatmen. Aerosol nicht einatmen. Einatmen von Staub/Rauch/Gas/Nebel/Dampf/Aerosol vermeiden. Einatmen von Staub/Rauch/Gas/Nebel/Dampf/Aerosol vermeiden. Einatmen von Staub vermeiden. Einatmen von Rauch vermeiden. Einatmen von Gas vermeiden. Einatmen von Nebel vermeiden. Einatmen von Dampf vermeiden. Einatmen von Aerosol vermeiden. Nicht in die Augen, auf die Haut oder auf die Kleidung gelangen lassen. Berührung während Schwangerschaft und Stillzeit vermeiden. Nach Gebrauch … gründlich waschen. Nach Gebrauch … gründlich waschen. Nach Gebrauch {1} gründlich waschen. Bei Gebrauch nicht essen, trinken oder rauchen. Nur im Freien oder in gut belüfteten Räumen verwenden. Kontaminierte Arbeitskleidung nicht außerhalb des Arbeitsplatzes tragen. Freisetzung in die Umwelt vermeiden. Schutzhandschuhe/Schutzkleidung/Augenschutz/Gesichtsschutz tragen. Schutzhandschuhe/Schutzkleidung/Augenschutz/Gesichtsschutz tragen. Schutzhandschuhe tragen. Schutzkleidung tragen. Augenschutz tragen. Gesichtsschutz tragen. Schutzhandschuhe mit Kälteisolierung und zusätzlich Gesichtsschild oder Augenschutz tragen. Schwer entflammbare oder flammhemmende Kleidung tragen. [Bei unzureichender Belüftung] Atemschutz tragen. Inhalt unter inertem Gas/… handhaben und aufbewahren. Vor Feuchtigkeit schützen. Inhalt unter inertem Gas/… handhaben und aufbewahren. Vor Feuchtigkeit schützen. Inhalt unter inertem Gas handhaben und aufbewahren. Vor Feuchtigkeit schützen. Inhalt unter {1} handhaben und aufbewahren. Vor Feuchtigkeit schützen. BEI VERSCHLUCKEN: BEI BERÜHRUNG MIT DER HAUT: BEI BERÜHRUNG MIT DER HAUT (oder dem Haar): BEI EINATMEN: BEI KONTAKT MIT DEN AUGEN: BEI KONTAKT MIT DER KLEIDUNG: BEI Exposition oder falls betroffen Sofort GIFTINFORMATIONSZENTRUM/Arzt/…/anrufen. Sofort GIFTINFORMATIONSZENTRUM/Arzt/…/anrufen. Sofort GIFTINFORMATIONSZENTRUM anrufen. Sofort Arzt anrufen. Sofort {1} anrufen. GIFTINFORMATIONSZENTRUM/Arzt/…/anrufen. GIFTINFORMATIONSZENTRUM/Arzt/…/anrufen. GIFTINFORMATIONSZENTRUM anrufen. Arzt anrufen. {1} anrufen. Bei Unwohlsein GIFTINFORMATIONSZENTRUM/Arzt/… anrufen. Bei Unwohlsein GIFTINFORMATIONSZENTRUM/Arzt/… anrufen. Bei Unwohlsein GIFTINFORMATIONSZENTRUM anrufen. Bei Unwohlsein Arzt anrufen. Bei Unwohlsein {1} anrufen. Ärztlichen Rat einholen/ärztliche Hilfe hinzuziehen. Bei Unwohlsein ärztlichen Rat einholen/ärztliche Hilfe hinzuziehen. Sofort ärztlichen Rat einholen/ärztliche Hilfe hinzuziehen. Besondere Behandlung dringend erforderlich (siehe … auf diesem Kennzeichnungsetikett). Besondere Behandlung dringend erforderlich (siehe … auf diesem Kennzeichnungsetikett). Besondere Behandlung dringend erforderlich (siehe {1} auf diesem Kennzeichnungsetikett). Besondere Behandlung dringend erforderlich (siehe {1}). Besondere Behandlung (siehe … auf diesem Kennzeichnungsetikett). Besondere Behandlung (siehe … auf diesem Kennzeichnungsetikett). Besondere Behandlung (siehe {1} auf diesem Kennzeichnungsetikett). Besondere Behandlung (siehe {1}). Mund ausspülen. KEIN Erbrechen herbeiführen. Bei Hautreizung: Bei Hautreizung oder -ausschlag: In kaltes Wasser tauchen [oder nassen Verband anlegen]. In kaltes Wasser tauchen [oder nassen Verband anlegen]. In kaltes Wasser tauchen. In kaltes Wasser tauchen oder nassen Verband anlegen. Lose Partikel von der Haut abbürsten. Vereiste Bereiche mit lauwarmem Wasser auftauen. Betroffenen Bereich nicht reiben. Bei anhaltender Augenreizung: Eventuell Vorhandene Kontaktlinsen nach Möglichkeit entfernen. Weiter ausspülen. Die Person an die frische Luft bringen und für ungehinderte Atmung sorgen. Bei Symptomen der Atemwege: Einige Minuten lang behutsam mit Wasser ausspülen. Mit viel Wasser/…/waschen. Mit viel Wasser/…/waschen. Mit viel Wasser waschen. Mit {1} waschen. Haut mit Wasser abwaschen [oder duschen]. Haut mit Wasser abwaschen [oder duschen]. Haut mit Wasser abwaschen. Haut mit Wasser abwaschen oder duschen. Kontaminierte Kleidung und Haut sofort mit viel Wasser abwaschen und danach Kleidung ausziehen. Alle kontaminierten Kleidungsstücke sofort ausziehen. Kontaminierte Kleidung ausziehen. Kontaminierte Kleidung vor erneutem Tragen waschen. Und vor erneutem Tragen waschen. Bei Brand: Bei Großbrand und großen Mengen: Explosionsgefahr. KEINE Brandbekämpfung, wenn das Feuer explosive Stoffe/Gemische/Erzeugnisse erreicht. Wegen Explosionsgefahr Brand aus der Entfernung bekämpfen. Undichtigkeit beseitigen, wenn gefahrlos möglich. Brand von ausströmendem Gas: Nicht löschen, bis Undichtigkeit gefahrlos beseitigt werden kann. … zum Löschen verwenden. … zum Löschen verwenden. {1} zum Löschen verwenden. Umgebung räumen. Bei Undichtigkeit alle Zündquellen entfernen. Verschüttete Mengen aufnehmen, um Materialschäden zu vermeiden. Verschüttete Mengen aufnehmen. BEI VERSCHLUCKEN: Sofort GIFTINFORMATIONSZENTRUM/Arzt/…/anrufen. BEI VERSCHLUCKEN: Sofort GIFTINFORMATIONSZENTRUM/Arzt/…/anrufen. BEI VERSCHLUCKEN: Sofort GIFTINFORMATIONSZENTRUM anrufen. BEI VERSCHLUCKEN: Sofort Arzt anrufen. BEI VERSCHLUCKEN: Sofort {1} anrufen. BEI VERSCHLUCKEN: Bei Unwohlsein GIFTINFORMATIONSZENTRUM/Arzt/… anrufen. BEI VERSCHLUCKEN: Bei Unwohlsein GIFTINFORMATIONSZENTRUM/Arzt/… anrufen. BEI VERSCHLUCKEN: Bei Unwohlsein GIFTINFORMATIONSZENTRUM anrufen. BEI VERSCHLUCKEN: Bei Unwohlsein Arzt anrufen. BEI VERSCHLUCKEN: Bei Unwohlsein {1} anrufen. BEI VERSCHLUCKEN: Mund ausspülen. KEIN Erbrechen herbeiführen. BEI BERÜHRUNG MIT DER HAUT: In kaltes Wasser tauchen oder nassen Verband anlegen. BEI BERÜHRUNG MIT DER HAUT: Lose Partikel von der Haut abbürsten. In kaltes Wasser tauchen [oder nassen Verband anlegen]. BEI BERÜHRUNG MIT DER HAUT: Lose Partikel von der Haut abbürsten. In kaltes Wasser tauchen [oder nassen Verband anlegen]. BEI BERÜHRUNG MIT DER HAUT: Lose Partikel von der Haut abbürsten. In kaltes Wasser tauchen. BEI BERÜHRUNG MIT DER HAUT: Lose Partikel von der Haut abbürsten. In kaltes Wasser tauchen oder nassen Verband anlegen. BEI BERÜHRUNG MIT DER HAUT: Mit viel Wasser/…/waschen. BEI BERÜHRUNG MIT DER HAUT: Mit viel Wasser/…/waschen. BEI BERÜHRUNG MIT DER HAUT: Mit viel Wasser waschen. BEI BERÜHRUNG MIT DER HAUT: Mit {1} waschen. BEI BERÜHRUNG MIT DER HAUT (oder dem Haar): Alle kontaminierten Kleidungsstücke sofort ausziehen. Haut mit Wasser abwaschen [oder duschen]. BEI BERÜHRUNG MIT DER HAUT (oder dem Haar): Alle kontaminierten Kleidungsstücke sofort ausziehen. Haut mit Wasser abwaschen [oder duschen]. BEI BERÜHRUNG MIT DER HAUT (oder dem Haar): Alle kontaminierten Kleidungsstücke sofort ausziehen. Haut mit Wasser abwaschen. BEI BERÜHRUNG MIT DER HAUT (oder dem Haar): Alle kontaminierten Kleidungsstücke sofort ausziehen. Haut mit Wasser abwaschen oder duschen. BEI EINATMEN: Die Person an die frische Luft bringen und für ungehinderte Atmung sorgen. BEI KONTAKT MIT DEN AUGEN: Einige Minuten lang behutsam mit Wasser spülen. Eventuell vorhandene Kontaktlinsen nach Möglichkeit entfernen. Weiter spülen. BEI KONTAKT MIT DER KLEIDUNG: Kontaminierte Kleidung und Haut sofort mit viel Wasser abwaschen und danach Kleidung ausziehen. BEI Exposition oder falls betroffen: GIFTINFORMATIONSZENTRUM/Arzt/…/anrufen. BEI Exposition oder falls betroffen: GIFTINFORMATIONSZENTRUM/Arzt/…/anrufen. BEI Exposition oder falls betroffen: GIFTINFORMATIONSZENTRUM anrufen. BEI Exposition oder falls betroffen: Arzt anrufen. BEI Exposition oder falls betroffen: {1} anrufen. BEI Exposition oder falls betroffen: Ärztlichen Rat einholen/ärztliche Hilfe hinzuziehen. Bei Hautreizung: Ärztlichen Rat einholen/ärztliche Hilfe hinzuziehen. Bei Hautreizung oder -ausschlag: Ärztlichen Rat einholen/ärztliche Hilfe hinzuziehen. Vereiste Bereiche mit lauwarmem Wasser auftauen. Betroffenen Bereich nicht reiben. Sofort ärztlichen Rat einholen/ärztliche Hilfe hinzuziehen. Bei anhaltender Augenreizung: Ärztlichen Rat einholen/ärztliche Hilfe hinzuziehen. Bei Symptomen der Atemwege: GIFTINFORMATIONSZENTRUM/Arzt/…/anrufen. Bei Symptomen der Atemwege: GIFTINFORMATIONSZENTRUM/Arzt/…/anrufen. Bei Symptomen der Atemwege: GIFTINFORMATIONSZENTRUM anrufen. Bei Symptomen der Atemwege: Arzt anrufen. Bei Symptomen der Atemwege: {1} anrufen. Alle kontaminierten Kleidungsstücke sofort ausziehen und vor erneutem Tragen waschen. Kontaminierte Kleidung ausziehen und vor erneutem Tragen waschen. Bei Brand: Explosionsgefahr. Umgebung räumen. KEINE Brandbekämpfung, wenn das Feuer explosive Stoffe/Gemische/Erzeugnisse erreicht. Bei Brand: Undichtigkeit beseitigen, wenn gefahrlos möglich. Bei Brand: … zum Löschen verwenden. Bei Brand: … zum Löschen verwenden. Bei Brand: {1} zum Löschen verwenden. Bei Brand: Umgebung räumen. Wegen Explosionsgefahr Brand aus der Entfernung bekämpfen. Bei Brand: Umgebung räumen. Wegen Explosionsgefahr Brand aus der Entfernung bekämpfen. … zum Löschen verwenden. Bei Brand: Umgebung räumen. Wegen Explosionsgefahr Brand aus der Entfernung bekämpfen. … zum Löschen verwenden. Bei Brand: Umgebung räumen. Wegen Explosionsgefahr Brand aus der Entfernung bekämpfen. {1} zum Löschen verwenden. Bei Großbrand und großen Mengen: Umgebung räumen. Wegen Explosionsgefahr Brand aus der Entfernung bekämpfen. Aufbewahren gemäß … . Aufbewahren gemäß … . Aufbewahren gemäß {1}. An einem trockenen Ort aufbewahren. An einem gut belüfteten Ort aufbewahren. In einem geschlossenen Behälter aufbewahren. Unter Verschluss aufbewahren. In korrosionsbeständigem/… Behälter mit korrosionsbeständiger Innenauskleidung aufbewahren. In korrosionsbeständigem/… Behälter mit korrosionsbeständiger Innenauskleidung aufbewahren. In korrosionsbeständigem Behälter mit korrosionsbeständiger Innenauskleidung aufbewahren. In {1}Behälter mit korrosionsbeständiger Innenauskleidung aufbewahren. Luftspalt zwischen Stapeln oder Paletten lassen. Vor Sonnenbestrahlung schützen. Bei Temperaturen nicht über … °C/… °F aufbewahren. Bei Temperaturen nicht über … °C/… °F aufbewahren. Bei Temperaturen nicht über {1} °C aufbewahren. Bei Temperaturen nicht über {2} °F aufbewahren. Nicht Temperaturen über 50 °C/122 °F aussetzen. Nicht Temperaturen über 50 °C/122 °F aussetzen. Nicht Temperaturen über 50 °C aussetzen. Nicht Temperaturen über 122 °F aussetzen. Schüttgut in Mengen von mehr als … kg/… lbs bei Temperaturen nicht über … °C/… °F aufbewahren. Schüttgut in Mengen von mehr als … kg/… lbs bei Temperaturen nicht über … °C/… °F aufbewahren. Schüttgut in Mengen von mehr als {1} kg bei Temperaturen nicht über {2} °C aufbewahren. Schüttgut in Mengen von mehr als {1} lbs bei Temperaturen nicht über {2} °F aufbewahren. Getrennt aufbewahren. An einem trockenen Ort aufbewahren. In einem geschlossenen Behälter aufbewahren. An einem gut belüfteten Ort aufbewahren. Behälter dicht verschlossen halten. An einem gut belüfteten Ort aufbewahren. Kühl halten. Vor Sonnenbestrahlung schützen. An einem gut belüfteten Ort aufbewahren. Vor Sonnenbestrahlung schützen und nicht Temperaturen über 50 °C/122 °F aussetzen. Vor Sonnenbestrahlung schützen und nicht Temperaturen über 50 °C/122 °F aussetzen. Vor Sonnenbestrahlung schützen und nicht Temperaturen über 50 °C aussetzen. Vor Sonnenbestrahlung schützen und nicht Temperaturen über 122 °F aussetzen. Inhalt/Behälter … zuführen. Inhalt/Behälter … zuführen. Inhalt/Behälter {1} zuführen. Inhalt {1} zuführen. Behälter {1} zuführen. Informationen zur Wiederverwendung oder Wiederverwertung beim Hersteller oder Lieferanten erfragen
+Unstable explosives. "Explosive; mass explosion hazard." Explosive, severe projection hazard. "Explosive; fire, blast or projection hazard." Fire or projection hazard. May mass explode in fire. "Fire, blast or projection hazard; increased risk of explosion if desensitising agent is reduced." "Fire or projection hazard; increased risk of explosion if desensitising agent is reduced." "Fire hazard; increased risk of explosion if desensitising agent is reduced." Extremely flammable gas. Flammable gas. Extremely flammable aerosol. Flammable aerosol. Extremely flammable liquid and vapour. Highly flammable liquid and vapour. Flammable liquid and vapour. Flammable solid. Pressurised container: May burst if heated. May react explosively even in the absence of air. May react explosively even in the absence of air at elevated pressure and/or temperature. May ignite spontaneously if exposed to air. Heating may cause an explosion. Heating may cause a fire or explosion. Heating may cause a fire. Catches fire spontaneously if exposed to air. Self-heating: may catch fire. "Self-heating in large quantities; may catch fire." In contact with water releases flammable gases which may ignite spontaneously. In contact with water releases flammable gases. "May cause or intensify fire; oxidiser." "May cause fire or explosion; strong oxidiser." "May intensify fire; oxidiser." "Contains gas under pressure; may explode if heated." "Contains refrigerated gas; may cause cryogenic burns or injury." May be corrosive to metals. Fatal if swallowed. Toxic if swallowed. Harmful if swallowed. May be fatal if swallowed and enters airways. Fatal in contact with skin. Toxic in contact with skin. Harmful in contact with skin. Causes severe skin burns and eye damage. Causes skin irritation. May cause an allergic skin reaction. Causes serious eye damage. Causes serious eye irritation. Fatal if inhaled. Toxic if inhaled. Harmful if inhaled. May cause allergy or asthma symptoms or breathing difficulties if inhaled. May cause respiratory irritation. May cause drowsiness or dizziness. May cause genetic defects . May cause genetic defects. May cause genetic defects {1}. Suspected of causing genetic defects . Suspected of causing genetic defects . Suspected of causing genetic defects. Suspected of causing genetic defects {1}. May cause cancer . May cause cancer . May cause cancer. May cause cancer {1}. May cause cancer by inhalation. Suspected of causing cancer . Suspected of causing cancer . Suspected of causing cancer. Suspected of causing cancer {1}. May damage fertility or the unborn child . May damage fertility or the unborn child . May damage fertility or the unborn child. May damage fertility or the unborn child {1}. May damage fertility. May damage the unborn child. May damage fertility. May damage the unborn child. May damage fertility. Suspected of damaging the unborn child. May damage the unborn child. Suspected of damaging fertility. Suspected of damaging fertility or the unborn child . Suspected of damaging fertility or the unborn child . Suspected of damaging fertility or the unborn child. Suspected of damaging fertility or the unborn child {1}. Suspected of damaging fertility. Suspected of damaging the unborn child. Suspected of damaging fertility. Suspected of damaging the unborn child. May cause harm to breast-fed children. Causes damage to organs . Causes damage to organs . Causes damage to organs. Causes damage to organs {1}. Causes damage to {1}. Causes damage to {1} {2}. May cause damage to organs . May cause damage to organs . May cause damage to organs. May cause damage to organs {1}. May cause damage to {1}. May cause damage to {1} {2}. Causes damage to organs through prolonged or repeated exposure . Causes damage to organs through prolonged or repeated exposure . Causes damage to organs through prolonged or repeated exposure. Causes damage to organs {1}. Causes damage to {1} through prolonged or repeated exposure. Causes damage to {1} {2}. May cause damage to organs through prolonged or repeated exposure . May cause damage to organs through prolonged or repeated exposure . May cause damage to organs through prolonged or repeated exposure. May cause damage to organs {1}. May cause damage to {1} through prolonged or repeated exposure. May cause damage to {1} {2}. Fatal if swallowed or in contact with skin Fatal if swallowed, in contact with skin or if inhaled Fatal if swallowed or if inhaled Toxic if swallowed or in contact with skin Toxic if swallowed, in contact with skin or if inhaled Toxic if swallowed or if inhaled Harmful if swallowed or in contact with skin Harmful if swallowed, in contact with skin or if inhaled Harmful if swallowed or if inhaled Fatal in contact with skin or if inhaled Toxic in contact with skin or if inhaled Harmful in contact with skin or if inhaled Very toxic to aquatic life. Very toxic to aquatic life with long lasting effects. Toxic to aquatic life with long lasting effects. Harmful to aquatic life with long lasting effects. May cause long lasting harmful effects to aquatic life. Harms public health and the environment by destroying ozone in the upper atmosphere Reacts violently with water. In use may form flammable/explosive vapour-air mixture. In use may form flammable/explosive vapour-air mixture. In use may form flammable vapour-air mixture. In use may form explosive vapour-air mixture. May form explosive peroxides. Contact with water liberates toxic gas. Contact with acids liberates toxic gas. Contact with acids liberates very toxic gas. Risk of explosion if heated under confinement. Repeated exposure may cause skin dryness or cracking. Toxic by eye contact. Corrosive to the respiratory tract. Contains lead. Should not be used on surfaces liable to be chewed or sucked by children. Warning! Contains lead. Cyanoacrylate. Danger. Bonds skin and eyes in seconds. Keep out of the reach of children. Contains chromium (VI). May produce an allergic reaction. Contains isocyanates. May produce an allergic reaction. Contains epoxy constituents. May produce an allergic reaction. Warning! Do not use together with other products. May release dangerous gases (chlorine). Warning! Contains cadmium. Dangerous fumes are formed during use. See information supplied by the manufacturer. Comply with the safety instructions. Contains . May produce an allergic reaction. Contains . May produce an allergic reaction. Contains {1}. May produce an allergic reaction. Can become highly flammable in use. Can become flammable in use. Safety data sheet available on request. Warning! Hazardous respirable droplets may be formed when sprayed. Do not breathe spray or mist. Warning! Hazardous respirable dust may be formed when used. Do not breathe dust. May cause endocrine disruption in humans Suspected of causing endocrine disruption in humans To avoid risks to human health and the environment, comply with the instructions for use. May cause endocrine disruption in the environment Suspected of causing endocrine disruption in the environment Accumulates in the environment and living organisms including in humans Strongly accumulates in the environment and living organisms including in humans Can cause long-lasting and diffuse contamination of water resources Can cause very long-lasting and diffuse contamination of water resources If medical advice is needed, have product container or label at hand. Keep out of reach of children. Read label before use. Obtain special instructions before use. Do not handle until all safety precautions have been read and understood. Keep away from heat, hot surfaces, sparks, open flames and other ignition sources. No smoking. Do not spray on an open flame or other ignition source. Avoid heating under confinement or reduction of the desensitising agent. Keep away from clothing and other combustible materials. Do not allow contact with air. Do not allow contact with water. Keep wetted with… Keep wetted with… Keep wetted with {1} Handle and store contents under inert gas/… Handle and store contents under inert gas/… Handle and store contents under inert gas Handle and store contents under {1} Protect from moisture. Keep container tightly closed. Keep only in original packaging. Keep cool. Ground and bond container and receiving equipment. Use explosion-proof [electrical/ventilating/lighting/…] equipment. Use explosion-proof [electrical/ventilating/lighting/…] equipment. Use explosion-proof electrical equipment. Use explosion-proof ventilating equipment. Use explosion-proof lighting equipment. Use explosion-proof {1} equipment. Use non-sparking tools. Take action to prevent static discharges. Keep valves and fittings free from oil and grease. Do not subject to grinding/shock/friction/… . Do not subject to grinding/shock/friction/… . Do not subject to grinding. Do not subject to shock. Do not subject to friction. Do not subject to {1}. Do not pierce or burn, even after use. Do not breathe dust/fume/gas/mist/vapours/spray. Do not breathe dust/fume/gas/mist/vapours/spray. Do not breathe dust. Do not breathe fume. Do not breathe gas. Do not breathe mist. Do not breathe vapours. Do not breathe spray. Avoid breathing dust/fume/gas/mist/vapours/spray. Avoid breathing dust/fume/gas/mist/vapours/spray. Avoid breathing dust. Avoid breathing fume. Avoid breathing gas. Avoid breathing mist. Avoid breathing vapours. Avoid breathing spray. Do not get in eyes, on skin, or on clothing. Avoid contact during pregnancy and while nursing. Wash … thoroughly after handling. Wash … thoroughly after handling. Wash {1} thoroughly after handling. Do not eat, drink or smoke when using this product. Use only outdoors or in a well-ventilated area. Contaminated work clothing should not be allowed out of the workplace. Avoid release to the environment. Wear protective gloves/protective clothing/eye protection/face protection. Wear protective gloves/protective clothing/eye protection/face protection. Wear protective gloves. Wear protective clothing. Wear eye protection. Wear face protection. Wear cold insulating gloves and either face shield or eye protection. Wear fire resistant or flame retardant clothing. [In case of inadequate ventilation] wear respiratory protection. Handle and store contents under inert gas/…. Protect from moisture. Handle and store contents under inert gas/…. Protect from moisture. Handle and store contents under inert gas. Protect from moisture. Handle and store contents under {1}. Protect from moisture. IF SWALLOWED: IF ON SKIN: IF ON SKIN (or hair): IF INHALED: IF IN EYES: IF ON CLOTHING: IF exposed or concerned: Immediately call a POISON CENTER/doctor/… Immediately call a POISON CENTER/doctor/… Immediately call a POISON CENTER Immediately call a doctor Immediately call {1} Call a POISON CENTER/doctor/… Call a POISON CENTER/doctor/… Call a POISON CENTER Call a doctor Call {1} Call a POISON CENTRE/doctor/… if you feel unwell. Call a POISON CENTRE/doctor/… if you feel unwell. Call a POISON CENTRE if you feel unwell. Call a doctor if you feel unwell. Call {1} if you feel unwell. Get medical advice/attention. Get medical advice/attention if you feel unwell. Get immediate medical advice/attention. Specific treatment is urgent (see … on this label). Specific treatment is urgent (see … on this label). Specific treatment is urgent (see {1} on this label). Specific treatment is urgent (see {1}). Specific treatment (see … on this label). Specific treatment (see … on this label). Specific treatment (see {1} on this label). Specific treatment (see {1}). Rinse mouth. Do NOT induce vomiting. If skin irritation occurs: If skin irritation or rash occurs: Immerse in cool water [or wrap in wet bandages]. Immerse in cool water [or wrap in wet bandages]. Immerse in cool water. Immerse in cool water or wrap in wet bandages. Brush off loose particles from skin. Thaw frosted parts with lukewarm water. Do no rub affected area. If eye irritation persists: Remove contact lenses, if present and easy to do. Continue rinsing. Remove person to fresh air and keep comfortable for breathing. If experiencing respiratory symptoms: Rinse cautiously with water for several minutes. Wash with plenty of water/… Wash with plenty of water/… Wash with plenty of water Wash with {1} Rinse skin with water [or shower]. Rinse skin with water [or shower]. Rinse skin with water. Rinse skin with water or shower. Rinse immediately contaminated clothing and skin with plenty of water before removing clothes. Take off immediately all contaminated clothing. Take off contaminated clothing. Wash contaminated clothing before reuse. And wash it before reuse. In case of fire: In case of major fire and large quantities: Explosion risk. DO NOT fight fire when fire reaches explosives. Fight fire remotely due to the risk of explosion. Stop leak if safe to do so. Leaking gas fire: Do not extinguish, unless leak can be stopped safely. Use… to extinguish. Use… to extinguish. Use {1} to extinguish. Evacuate area. In case of leakage, eliminate all ignition sources. Absorb spillage to prevent material damage. Collect spillage. IF SWALLOWED: Immediately call a POISON CENTER/doctor/… IF SWALLOWED: Immediately call a POISON CENTER/doctor/… IF SWALLOWED: Immediately call a POISON CENTER IF SWALLOWED: Immediately call a doctor IF SWALLOWED: Immediately call {1} IF SWALLOWED: Call a POISON CENTRE/doctor/… if you feel unwell. IF SWALLOWED: Call a POISON CENTRE/doctor/… if you feel unwell. IF SWALLOWED: Call a POISON CENTRE if you feel unwell. IF SWALLOWED: Call a doctor if you feel unwell. IF SWALLOWED: Call {1} if you feel unwell. IF SWALLOWED: Rinse mouth. Do NOT induce vomiting. IF ON SKIN: Immerse in cool water or wrap in wet bandages. IF ON SKIN: Brush off loose particles from skin. Immerse in cool water [or wrap in wet bandages]. IF ON SKIN: Brush off loose particles from skin. Immerse in cool water [or wrap in wet bandages]. IF ON SKIN: Brush off loose particles from skin. Immerse in cool water. IF ON SKIN: Brush off loose particles from skin. Immerse in cool water or wrap in wet bandages. IF ON SKIN: Wash with plenty of water/… IF ON SKIN: Wash with plenty of water/… IF ON SKIN: Wash with plenty of water IF ON SKIN: Wash with {1} IF ON SKIN (or hair): Take off immediately all contaminated clothing. Rinse skin with water [or shower]. IF ON SKIN (or hair): Take off immediately all contaminated clothing. Rinse skin with water [or shower]. IF ON SKIN (or hair): Take off immediately all contaminated clothing. Rinse skin with water. IF ON SKIN (or hair): Take off immediately all contaminated clothing. Rinse skin with water or shower. IF INHALED: Remove person to fresh air and keep comfortable for breathing. IF IN EYES: Rinse cautiously with water for several minutes. Remove contact lenses, if present and easy to do. Continue rinsing. IF ON CLOTHING: rinse immediately contaminated clothing and skin with plenty of water before removing clothes. IF exposed or concerned: Call a POISON CENTER/doctor/… IF exposed or concerned: Call a POISON CENTER/doctor/… IF exposed or concerned: Call a POISON CENTER IF exposed or concerned: Call a doctor IF exposed or concerned: Call {1} IF exposed or concerned: Get medical advice/attention. If skin irritation occurs: Get medical advice/attention. If skin irritation or rash occurs: Get medical advice/attention. Thaw frosted parts with lukewarm water. Do not rub affected area. Get immediate medical advice/attention. If eye irritation persists: Get medical advice/attention. If experiencing respiratory symptoms: Call a POISON CENTER/doctor/… If experiencing respiratory symptoms: Call a POISON CENTER/doctor/… If experiencing respiratory symptoms: Call a POISON CENTER If experiencing respiratory symptoms: Call a doctor If experiencing respiratory symptoms: Call {1} Take off immediately all contaminated clothing and wash it before reuse. Take off contaminated clothing and wash it before reuse. In case of fire: Explosion risk. Evacuate area. DO NOT fight fire when fire reaches explosives. In case of fire: Stop leak if safe to do so. In case of fire: Use… to extinguish. In case of fire: Use… to extinguish. In case of fire: Use {1} to extinguish. In case of fire: Evacuate area. Fight fire remotely due to the risk of explosion. In case of fire: Evacuate area. Fight fire remotely due to the risk of explosion. Use … to extinguish. In case of fire: Evacuate area. Fight fire remotely due to the risk of explosion. Use … to extinguish. In case of fire: Evacuate area. Fight fire remotely due to the risk of explosion. Use {1} to extinguish. In case of major fire and large quantities: Evacuate area. Fight fire remotely due to the risk of explosion. Store in accordance with… . Store in accordance with… . Store in accordance with {1}. Store in a dry place. Store in a well-ventilated place. Store in a closed container. Store locked up. Store in a corrosion-resistant/… container with a resistant inner liner. Store in a corrosion-resistant/… container with a resistant inner liner. Store in a corrosion-resistant container with a resistant inner liner. Store in a {1} container with a resistant inner liner. Maintain air gap between stacks or pallets. Protect from sunlight. Store at temperatures not exceeding … °C/…°F. Store at temperatures not exceeding … °C/…°F. Store at temperatures not exceeding {1} °C. Store at temperatures not exceeding {2}°F. Do not expose to temperatures exceeding 50 °C/122°F. Do not expose to temperatures exceeding 50 °C/122°F. Do not expose to temperatures exceeding 50 °C. Do not expose to temperatures exceeding 122°F. Store bulk masses greater than … kg/… lbs at temperatures not exceeding … °C/…°F. Store bulk masses greater than … kg/… lbs at temperatures not exceeding … °C/…°F. Store bulk masses greater than {1} kg at temperatures not exceeding {2} °C. Store bulk masses greater than {1} lbs at temperatures not exceeding {2}°F. Store separately. Store in a dry place. Store in a closed container. Store in a well-ventilated place. Keep container tightly closed. Store in a well-ventilated place. Keep cool. Protect from sunlight. Store in a well-ventilated place. Protect from sunlight. Do no expose to temperatures exceeding 50 °C/122°F. Protect from sunlight. Do no expose to temperatures exceeding 50 °C/122°F. Protect from sunlight. Do no expose to temperatures exceeding 50 °C. Protect from sunlight. Do no expose to temperatures exceeding 122°F. Dispose of contents/container to … Dispose of contents/container to … Dispose of contents/container to {1} Dispose of contents to {1} Dispose of container to {1} Refer to manufacturer or supplier for information on recovery or recycling
+Explosif instable. "Explosif; danger d'explosion en masse." "Explosif; danger sérieux de projection." "Explosif; danger d'incendie, d'effet de souffle ou de projection." Danger d'incendie ou de projection. Danger d'explosion en masse en cas d'incendie. "Danger d'incendie, d'effet de souffle ou de projection; risque accru d'explosion si la quantité d'agent désensibilisateur est réduite." "Danger d'incendie ou de projection; risque accru d'explosion si la quantité d'agent désensibilisateur est réduite." "Danger d'incendie; risque accru d'explosion si la quantité d'agent désensibilisateur est réduite." Gaz extrêmement inflammable. Gaz inflammable. Aérosol extrêmement inflammable. Aérosol inflammable. Liquide et vapeurs extrêmement inflammables. Liquide et vapeurs très inflammables. Liquide et vapeurs inflammables. Matière solide inflammable. Récipient sous pression: peut éclater sous l’effet de la chaleur. Peut exploser même en l’absence d’air. Peut exploser même en l’absence d’air à une pression et/ou température élevée(s). Peut s'enflammer spontanément au contact de l'air. Peut exploser sous l'effet de la chaleur. Peut s'enflammer ou exploser sous l'effet de la chaleur. Peut s'enflammer sous l'effet de la chaleur. S'enflamme spontanément au contact de l'air. "Matière auto-échauffante; peut s'enflammer." "Matière auto-échauffante en grandes quantités; peut s'enflammer." Dégage au contact de l'eau des gaz inflammables qui peuvent s'enflammer spontanément. Dégage au contact de l'eau des gaz inflammables. "Peut provoquer ou aggraver un incendie; comburant." "Peut provoquer un incendie ou une explosion; comburant puissant." "Peut aggraver un incendie; comburant." "Contient un gaz sous pression; peut exploser sous l'effet de la chaleur." "Contient un gaz réfrigéré; peut causer des brûlures ou blessures cryogéniques." Peut être corrosif pour les métaux. Mortel en cas d'ingestion. Toxique en cas d'ingestion. Nocif en cas d'ingestion. Peut être mortel en cas d'ingestion et de pénétration dans les voies respiratoires. Mortel par contact cutané. Toxique par contact cutané. Nocif par contact cutané. Provoque de graves brûlures de la peau et de graves lésions des yeux. Provoque une irritation cutanée. Peut provoquer une allergie cutanée. Provoque de graves lésions des yeux. Provoque une sévère irritation des yeux. Mortel par inhalation. Toxique par inhalation. Nocif par inhalation. Peut provoquer des symptômes allergiques ou d'asthme ou des difficultés respiratoires par inhalation. Peut irriter les voies respiratoires. Peut provoquer somnolence ou vertiges. Peut induire des anomalies génétiques . Peut induire des anomalies génétiques. Peut induire des anomalies génétiques {1}. Susceptible d'induire des anomalies génétiques . Susceptible d'induire des anomalies génétiques . Susceptible d'induire des anomalies génétiques. Susceptible d'induire des anomalies génétiques {1}. Peut provoquer le cancer . Peut provoquer le cancer . Peut provoquer le cancer. Peut provoquer le cancer {1}. Peut provoquer le cancer par inhalation. Susceptible de provoquer le cancer . Susceptible de provoquer le cancer . Susceptible de provoquer le cancer. Susceptible de provoquer le cancer {1}. Peut nuire à la fertilité ou au fœtus . Peut nuire à la fertilité ou au fœtus . Peut nuire à la fertilité ou au fœtus. Peut nuire à la fertilité ou au fœtus {1}. Peut nuire à la fertilité. Peut nuire au fœtus. Peut nuire à la fertilité. Peut nuire au fœtus. Peut nuire à la fertilité. Susceptible de nuire au fœtus. Peut nuire au fœtus. Susceptible de nuire à la fertilité. Susceptible de nuire à la fertilité ou au fœtus . Susceptible de nuire à la fertilité ou au fœtus . Susceptible de nuire à la fertilité ou au fœtus. Susceptible de nuire à la fertilité ou au fœtus {1}. Susceptible de nuire à la fertilité. Susceptible de nuire au fœtus. Susceptible de nuire à la fertilité. Susceptible de nuire au fœtus. Peut être nocif pour les bébés nourris au lait maternel. Risque avéré d'effets graves pour les organes . Risque avéré d'effets graves pour les organes . Risque avéré d'effets graves pour les organes. Risque avéré d'effets graves pour les organes {1}. Risque avéré d'effets graves pour {1}. Risque avéré d'effets graves pour {1} {2}. Risque présumé d'effets graves pour les organes . Risque présumé d'effets graves pour les organes . Risque présumé d'effets graves pour les organes. Risque présumé d'effets graves pour les organes {1}. Risque présumé d'effets graves pour {1}. Risque présumé d'effets graves pour {1} {2}. Risque avéré d'effets graves pour les organes à la suite d'expositions répétées ou d'une exposition prolongée . Risque avéré d'effets graves pour les organes à la suite d'expositions répétées ou d'une exposition prolongée . Risque avéré d'effets graves pour les organes à la suite d'expositions répétées ou d'une exposition prolongée. Risque avéré d'effets graves pour les organes {1}. Risque avéré d'effets graves pour {1} à la suite d'expositions répétées ou d'une exposition prolongée. Risque avéré d'effets graves pour {1} {2}. Risque présumé d'effets graves pour les organes à la suite d'expositions répétées ou d'une exposition prolongée . Risque présumé d'effets graves pour les organes à la suite d'expositions répétées ou d'une exposition prolongée . Risque présumé d'effets graves pour les organes à la suite d'expositions répétées ou d'une exposition prolongée. Risque présumé d'effets graves pour les organes {1}. Risque présumé d'effets graves pour {1} à la suite d'expositions répétées ou d'une exposition prolongée. Risque présumé d'effets graves pour {1} {2}. Mortel par ingestion ou par contact cutané Mortel par ingestion, par contact cutané ou par inhalation Mortel par ingestion ou par inhalation Toxique par ingestion ou par contact cutané Toxique par ingestion, par contact cutané ou par inhalation Toxique par ingestion ou par inhalation Nocif en cas d'ingestion ou de contact cutané Nocif en cas d'ingestion, de contact cutané ou d'inhalation Nocif en cas d'ingestion ou d'inhalation Mortel par contact cutané ou par inhalation Toxique par contact cutané ou par inhalation Nocif en cas de contact cutané ou d'inhalation Très toxique pour les organismes aquatiques. Très toxique pour les organismes aquatiques, entraîne des effets néfastes à long terme. Toxique pour les organismes aquatiques, entraîne des effets néfastes à long terme. Nocif pour les organismes aquatiques, entraîne des effets néfastes à long terme. Peut être nocif à long terme pour les organismes aquatiques. Nuit à la santé publique et à l'environnement en détruisant l'ozone dans la haute atmosphère Réagit violemment au contact de l'eau. Lors de l'utilisation, formation possible de mélange vapeur-air inflammable/explosif. Lors de l'utilisation, formation possible de mélange vapeur-air inflammable/explosif. Lors de l'utilisation, formation possible de mélange vapeur-air inflammable. Lors de l'utilisation, formation possible de mélange vapeur-air explosif. Peut former des peroxydes explosifs. Au contact de l'eau, dégage des gaz toxiques. Au contact d'un acide, dégage un gaz toxique. Au contact d'un acide, dégage un gaz très toxique. Risque d'explosion si chauffé en ambiance confinée. L'exposition répétée peut provoquer dessèchement ou gerçures de la peau. Toxique par contact oculaire. Corrosif pour les voies respiratoires. Contient du plomb. Ne pas utiliser sur les objets susceptibles d'être mâchés ou sucés par des enfants. Attention! Contient du plomb. Cyanoacrylate. Danger. Colle à la peau et aux yeux en quelques secondes. À conserver hors de portée des enfants. Contient du chrome (VI). Peut produire une réaction allergique. Contient des isocyanates. Peut produire une réaction allergique. Contient des composés époxydiques. Peut produire une réaction allergique. Attention! Ne pas utiliser en combinaison avec d'autres produits. Peut libérer des gaz dangereux (chlore). Attention! Contient du cadmium. Des fumées dangereuses se développent pendant l'utilisation. Voir les informations fournies par le fabricant. Respectez les consignes de sécurité. Contient . Peut produire une réaction allergique. Contient . Peut produire une réaction allergique. Contient {1}. Peut produire une réaction allergique. Peut devenir facilement inflammable en cours d'utilisation. Peut devenir inflammable en cours d'utilisation. Fiche de données de sécurité disponible sur demande. Attention! Des gouttelettes respirables dangereuses peuvent se former lors de la pulvérisation. Ne pas respirer les aérosols ni les brouillards. Attention! Une poussière respirable dangereuse peut se former lors de l’utilisation. Ne pas respirer cette poussière. Peut provoquer une perturbation endocrinienne chez l’être humain Susceptible de provoquer une perturbation endocrinienne chez l’être humain Respectez les instructions d'utilisation pour éviter les risques pour la santé humaine et l'environnement. Peut provoquer une perturbation endocrinienne dans l’environnement Susceptible de provoquer une perturbation endocrinienne dans l’environnement S’accumule dans l’environnement et dans les organismes vivants, y compris chez l’être humain S’accumule fortement dans l’environnement et dans les organismes vivants, y compris chez l’être humain Peut provoquer une contamination diffuse à long terme des ressources en eau Peut provoquer une contamination diffuse à très long terme des ressources en eau En cas de consultation d’un médecin, garder à disposition le récipient ou l’étiquette. Tenir hors de portée des enfants. Lire l’étiquette avant utilisation. Se procurer les instructions spéciales avant utilisation. Ne pas manipuler avant d’avoir lu et compris toutes les précautions de sécurité. Tenir à l’écart de la chaleur, des surfaces chaudes, des étincelles, des flammes nues et de toute autre source d’inflammation. Ne pas fumer. Ne pas vaporiser sur une flamme nue ou sur toute autre source d’ignition. Éviter d'échauffer en milieu confiné ou en cas de diminution de la quantité d'agent désensibilisateur. Tenir à l'écart des vêtements et d'autres matières combustibles. Ne pas laisser au contact de l’air. Éviter tout contact avec l’eau. Maintenir humidifié avec… Maintenir humidifié avec… Maintenir humidifié avec {1} Manipuler et stocker le contenu sous gaz inerte/… Manipuler et stocker le contenu sous gaz inerte/… Manipuler et stocker le contenu sous gaz inerte Manipuler et stocker le contenu sous {1} Protéger de l’humidité. Maintenir le récipient fermé de manière étanche. Conserver uniquement dans l'emballage d'origine. Tenir au frais. Mise à la terre et liaison équipotentielle du récipient et du matériel de réception. Utiliser du matériel [électrique/de ventilation/d'éclairage/…] antidéflagrant. Utiliser du matériel [électrique/de ventilation/d'éclairage/…] antidéflagrant. Utiliser du matériel électrique antidéflagrant. Utiliser du matériel de ventilation antidéflagrant. Utiliser du matériel d'éclairage antidéflagrant. Utiliser du matériel {1} antidéflagrant. Utiliser des outils ne produisant pas d'étincelles. Prendre des mesures de précaution contre les décharges électrostatiques. Ni huile, ni graisse sur les robinets et raccords. Éviter les abrasions/les chocs/les frottements/… . Éviter les abrasions/les chocs/les frottements/… . Éviter les abrasions. Éviter les chocs. Éviter les frottements. Éviter {1}. Ne pas perforer, ni brûler, même après usage. Ne pas respirer les poussières/fumées/gaz/brouillards/vapeurs/aérosols. Ne pas respirer les poussières/fumées/gaz/brouillards/vapeurs/aérosols. Ne pas respirer les poussières. Ne pas respirer les fumées. Ne pas respirer les gaz. Ne pas respirer les brouillards. Ne pas respirer les vapeurs. Ne pas respirer les aérosols. Éviter de respirer les poussières/fumées/gaz/brouillards/vapeurs/aérosols. Éviter de respirer les poussières/fumées/gaz/brouillards/vapeurs/aérosols. Éviter de respirer les poussières. Éviter de respirer les fumées. Éviter de respirer les gaz. Éviter de respirer les brouillards. Éviter de respirer les vapeurs. Éviter de respirer les aérosols. Éviter tout contact avec les yeux, la peau ou les vêtements. Éviter tout contact avec la substance au cours de la grossesse et pendant l'allaitement. Se laver … soigneusement après manipulation. Se laver … soigneusement après manipulation. Se laver {1} soigneusement après manipulation. Ne pas manger, boire ou fumer en manipulant ce produit. Utiliser seulement en plein air ou dans un endroit bien ventilé. Les vêtements de travail contaminés ne devraient pas sortir du lieu de travail. Éviter le rejet dans l’environnement. Porter des gants de protection/des vêtements de protection/un équipement de protection des yeux/du visage. Porter des gants de protection/des vêtements de protection/un équipement de protection des yeux/du visage. Porter des gants de protection. Porter des vêtements de protection Porter un équipement de protection des yeux. Porter un équipement de protection du visage. Porter des gants isolants contre le froid et un équipement de protection du visage ou des yeux. Porter des vêtements résistant au feu ou à retard de flamme. [Lorsque la ventilation du local est insuffisante] porter un équipement de protection respiratoire. Manipuler et stocker le contenu sous gaz inerte/… Protéger de l'humidité. Manipuler et stocker le contenu sous gaz inerte/… Protéger de l'humidité. Manipuler et stocker le contenu sous gaz inerte. Protéger de l'humidité. Manipuler et stocker le contenu sous {1}. Protéger de l'humidité. EN CAS D’INGESTION: EN CAS DE CONTACT AVEC LA PEAU: EN CAS DE CONTACT AVEC LA PEAU (ou les cheveux): EN CAS D’INHALATION: EN CAS DE CONTACT AVEC LES YEUX: EN CAS DE CONTACT AVEC LES VÊTEMENTS: EN CAS d’exposition prouvée ou suspectée: Appeler immédiatement un CENTRE ANTIPOISON/un médecin/… Appeler immédiatement un CENTRE ANTIPOISON/un médecin/… Appeler immédiatement un CENTRE ANTIPOISON Appeler immédiatement un médecin Appeler immédiatement {1} Appeler un CENTRE ANTIPOISON/un médecin/… Appeler un CENTRE ANTIPOISON/un médecin/… Appeler un CENTRE ANTIPOISON Appeler un médecin Appeler {1} Appeler un CENTRE ANTIPOISON/un médecin/… en cas de malaise. Appeler un CENTRE ANTIPOISON/un médecin/… en cas de malaise. Appeler un CENTRE ANTIPOISON en cas de malaise. Appeler un médecin en cas de malaise. Appeler {1} en cas de malaise. Consulter un médecin. Consulter un médecin en cas de malaise. Consulter immédiatement un médecin. Un traitement spécifique est urgent (voir … sur cette étiquette). Un traitement spécifique est urgent (voir … sur cette étiquette). Un traitement spécifique est urgent (voir {1} sur cette étiquette). Un traitement spécifique est urgent (voir {1}). Traitement spécifique (voir … sur cette étiquette). Traitement spécifique (voir … sur cette étiquette). Traitement spécifique (voir {1} sur cette étiquette). Traitement spécifique (voir {1}). Rincer la bouche. NE PAS faire vomir. En cas d’irritation cutanée: En cas d’irritation ou d’éruption cutanée: Rincer à l'eau fraîche [ou poser une compresse humide]. Rincer à l'eau fraîche [ou poser une compresse humide]. Rincer à l'eau fraîche. Rincer à l'eau fraîche ou poser une compresse humide. Enlever avec précaution les particules déposées sur la peau. Dégeler les parties gelées avec de l’eau tiède. Ne pas frotter les zones touchées. Si l’irritation oculaire persiste: Enlever les lentilles de contact si la victime en porte et si elles peuvent être facilement enlevées. Continuer à rincer. Transporter la personne à l’extérieur et la maintenir dans une position où elle peut confortablement respirer. En cas de symptômes respiratoires: Rincer avec précaution à l’eau pendant plusieurs minutes. Laver abondamment à l’eau/… Laver abondamment à l’eau/… Laver abondamment à l’eau Laver {1} Rincer la peau à l'eau [ou se doucher]. Rincer la peau à l'eau [ou se doucher]. Rincer la peau à l'eau. Rincer la peau à l'eau ou se doucher. Rincer immédiatement et abondamment avec de l’eau les vêtements contaminés et la peau avant de les enlever. Enlever immédiatement tous les vêtements contaminés. Enlever les vêtements contaminés. Laver les vêtements contaminés avant réutilisation. Et les laver avant réutilisation. En cas d’incendie: En cas d’incendie important et s’il s’agit de grandes quantités: Risque d'explosion. NE PAS combattre l’incendie lorsque le feu atteint les explosifs. Combattre l’incendie à distance à cause du risque d’explosion. Obturer la fuite si cela peut se faire sans danger. Fuite de gaz enflammé: Ne pas éteindre si la fuite ne peut pas être arrêtée sans danger. Utiliser… pour l’extinction. Utiliser… pour l’extinction. Utiliser {1} pour l’extinction. Évacuer la zone. En cas de fuite, éliminer toutes les sources d'ignition. Absorber toute substance répandue pour éviter qu’elle attaque les matériaux environnants. Recueillir le produit répandu. EN CAS D’INGESTION: Appeler immédiatement un CENTRE ANTIPOISON/un médecin/… EN CAS D’INGESTION: Appeler immédiatement un CENTRE ANTIPOISON/un médecin/… EN CAS D’INGESTION: Appeler immédiatement un CENTRE ANTIPOISON EN CAS D’INGESTION: Appeler immédiatement un médecin EN CAS D’INGESTION: Appeler immédiatement {1} EN CAS D'INGESTION: Appeler un CENTRE ANTIPOISON/un médecin/…/ en cas de malaise. EN CAS D'INGESTION: Appeler un CENTRE ANTIPOISON/un médecin/…/ en cas de malaise. EN CAS D'INGESTION: Appeler un CENTRE ANTIPOISON en cas de malaise. EN CAS D'INGESTION: Appeler un médecin en cas de malaise. EN CAS D'INGESTION: Appeler {1} en cas de malaise. EN CAS D'INGESTION: Rincer la bouche. NE PAS faire vomir. EN CAS DE CONTACT AVEC LA PEAU: Rincer à l'eau fraîche ou poser une compresse humide. EN CAS DE CONTACT AVEC LA PEAU: Enlever avec précaution les particules déposées sur la peau. Rincer à l'eau fraîche [ou poser une compresse humide]. EN CAS DE CONTACT AVEC LA PEAU: Enlever avec précaution les particules déposées sur la peau. Rincer à l'eau fraîche [ou poser une compresse humide]. EN CAS DE CONTACT AVEC LA PEAU: Enlever avec précaution les particules déposées sur la peau. Rincer à l'eau fraîche. EN CAS DE CONTACT AVEC LA PEAU: Enlever avec précaution les particules déposées sur la peau. Rincer à l'eau fraîche ou poser une compresse humide. EN CAS DE CONTACT AVEC LA PEAU: Laver abondamment à l’eau/… EN CAS DE CONTACT AVEC LA PEAU: Laver abondamment à l’eau/… EN CAS DE CONTACT AVEC LA PEAU: Laver abondamment à l’eau/… EN CAS DE CONTACT AVEC LA PEAU: Laver {1} EN CAS DE CONTACT AVEC LA PEAU (ou les cheveux): Enlever immédiatement tous les vêtements contaminés. Rincer la peau à l'eau [ou se doucher]. EN CAS DE CONTACT AVEC LA PEAU (ou les cheveux): Enlever immédiatement tous les vêtements contaminés. Rincer la peau à l'eau [ou se doucher]. EN CAS DE CONTACT AVEC LA PEAU (ou les cheveux): Enlever immédiatement tous les vêtements contaminés. Rincer la peau à l'eau. EN CAS DE CONTACT AVEC LA PEAU (ou les cheveux): Enlever immédiatement tous les vêtements contaminés. Rincer la peau à l'eau ou se doucher. EN CAS D’INHALATION: transporter la personne à l’extérieur et la maintenir dans une position où elle peut confortablement respirer. EN CAS DE CONTACT AVEC LES YEUX: Rincer avec précaution à l'eau pendant plusieurs minutes. Enlever les lentilles de contact si la victime en porte et si elles peuvent être facilement enlevées. Continuer à rincer. EN CAS DE CONTACT AVEC LES VÊTEMENTS: rincer immédiatement et abondamment avec de l’eau les vêtements contaminés et la peau avant de les enlever. EN CAS d’exposition prouvée ou suspectée: Appeler un CENTRE ANTIPOISON/un médecin/… EN CAS d’exposition prouvée ou suspectée: Appeler un CENTRE ANTIPOISON/un médecin/… EN CAS d’exposition prouvée ou suspectée: Appeler un CENTRE ANTIPOISON EN CAS d’exposition prouvée ou suspectée: Appeler un médecin EN CAS d’exposition prouvée ou suspectée: Appeler {1} EN CAS d’exposition prouvée ou suspectée: consulter un médecin. En cas d’irritation cutanée: consulter un médecin. En cas d’irritation ou d'éruption cutanée: consulter un médecin. Dégeler les parties gelées avec de l'eau tiède. Ne pas frotter les zones touchées. Consulter immédiatement un médecin. Si l’irritation oculaire persiste: consulter un médecin. En cas de symptômes respiratoires: Appeler un CENTRE ANTIPOISON/un médecin/… En cas de symptômes respiratoires: Appeler un CENTRE ANTIPOISON/un médecin/… En cas de symptômes respiratoires: Appeler un CENTRE ANTIPOISON En cas de symptômes respiratoires: Appeler un médecin En cas de symptômes respiratoires: Appeler {1} Enlever immédiatement tous les vêtements contaminés et les laver avant réutilisation. Enlever les vêtements contaminés et les laver avant réutilisation. En cas d'incendie: Risque d'explosion. Évacuer la zone. NE PAS combattre l'incendie lorsque le feu atteint les explosifs. En cas d’incendie: obturer la fuite si cela peut se faire sans danger. En cas d’incendie: Utiliser… pour l’extinction. En cas d’incendie: Utiliser… pour l’extinction. En cas d’incendie: Utiliser {1} pour l’extinction. En cas d’incendie: évacuer la zone. Combattre l’incendie à distance à cause du risque d’explosion. En cas d'incendie: Évacuer la zone. Combattre l'incendie à distance à cause du risque d'explosion. Utiliser … pour l'extinction. En cas d'incendie: Évacuer la zone. Combattre l'incendie à distance à cause du risque d'explosion. Utiliser … pour l'extinction. En cas d'incendie: Évacuer la zone. Combattre l'incendie à distance à cause du risque d'explosion. Utiliser {1} pour l'extinction. En cas d’incendie important et s’il s’agit de grandes quantités: évacuer la zone. Combattre l’incendie à distance à cause du risque d’explosion. Stocker conformément à… . Stocker conformément à… . Stocker conformément à {1}. Stocker dans un endroit sec. Stocker dans un endroit bien ventilé. Stocker dans un récipient fermé. Garder sous clef. Stocker dans un récipient résistant à la corrosion/… avec doublure intérieure. Stocker dans un récipient résistant à la corrosion/… avec doublure intérieure. Stocker dans un récipient résistant à la corrosion avec doublure intérieure. Stocker dans un récipient {1} avec doublure intérieure. Maintenir un intervalle d'air entre les piles ou les palettes. Protéger du rayonnement solaire. Stocker à une température ne dépassant pas … °C/… °F. Stocker à une température ne dépassant pas … °C/… °F. Stocker à une température ne dépassant pas {1} °C. Stocker à une température ne dépassant pas {1} °F. Ne pas exposer à une température supérieure à 50 °C/122 °F. Ne pas exposer à une température supérieure à 50 °C/122 °F. Ne pas exposer à une température supérieure à 50 °C. Ne pas exposer à une température supérieure à 122 °F. Stocker les quantités en vrac de plus de … kg/… lb à une température ne dépassant pas … °C/… °F. Stocker les quantités en vrac de plus de … kg/… lb à une température ne dépassant pas … °C/… °F. Stocker les quantités en vrac de plus de {1} kg à une température ne dépassant pas {2} °C. Stocker les quantités en vrac de plus de {1} lb à une température ne dépassant pas {2} °F. Stocker séparément. Stocker dans un endroit sec. Stocker dans un récipient fermé. Stocker dans un endroit bien ventilé. Maintenir le récipient fermé de manière étanche. Stocker dans un endroit bien ventilé. Tenir au frais. Protéger du rayonnement solaire. Stocker dans un endroit bien ventilé. Protéger du rayonnement solaire. Ne pas exposer à une température supérieure à 50 °C/122 °F. Protéger du rayonnement solaire. Ne pas exposer à une température supérieure à 50 °C/122 °F. Protéger du rayonnement solaire. Ne pas exposer à une température supérieure à 50 °C. Protéger du rayonnement solaire. Ne pas exposer à une température supérieure à 122 °F. Éliminer le contenu/récipient dans … Éliminer le contenu/récipient dans … Éliminer le contenu/récipient dans {1} Éliminer le contenu {1} Éliminer le récipient {1} Consulter le fabricant ou le fournisseur pour des informations relatives à la récupération ou au recyclage
+Esplosivo instabile. "Esplosivo; pericolo di esplosione di massa." "Esplosivo; grave pericolo di proiezione." "Esplosivo; pericolo di incendio, di spostamento d'aria o di proiezione." Pericolo di incendio o di proiezione. Pericolo di esplosione di massa in caso d'incendio. "Pericolo d'incendio, di spostamento d'aria o di proiezione; maggior rischio di esplosione se l'agente desensibilizzante è ridotto." "Pericolo d'incendio o di proiezione; maggior rischio di esplosione se l'agente desensibilizzante è ridotto." "Pericolo d'incendio; maggior rischio di esplosione se l'agente desensibilizzante è ridotto." Gas altamente infiammabile. Gas infiammabile. Aerosol altamente infiammabile. Aerosol infiammabile. Liquido e vapori altamente infiammabili. Liquido e vapori facilmente infiammabili. Liquido e vapori infiammabili. Solido infiammabile. Contenitore pressurizzato: può esplodere se riscaldato. Può esplodere anche in assenza di aria. Può esplodere anche in assenza di aria a pressione e/o temperatura elevata. Spontaneamente infiammabile all'aria. Rischio di esplosione per riscaldamento. Rischio d'incendio o di esplosione per riscaldamento. Rischio d'incendio per riscaldamento. Spontaneamente infiammabile all'aria. "Autoriscaldante; può infiammarsi." "Autoriscaldante in grandi quantità; può infiammarsi." A contatto con l'acqua libera gas infiammabili che possono infiammarsi spontaneamente. A contatto con l'acqua libera gas infiammabili. "Può provocare o aggravare un incendio; comburente." "Può provocare un incendio o un'esplosione; molto comburente." "Può aggravare un incendio; comburente." "Contiene gas sotto pressione; può esplodere se riscaldato." "Contiene gas refrigerato; può provocare ustioni o lesioni criogeniche." Può essere corrosivo per i metalli. Letale se ingerito. Tossico se ingerito. Nocivo se ingerito. Può essere letale in caso di ingestione e di penetrazione nelle vie respiratorie. Letale per contatto con la pelle. Tossico per contatto con la pelle. Nocivo per contatto con la pelle. Provoca gravi ustioni cutanee e gravi lesioni oculari. Provoca irritazione cutanea. Può provocare una reazione allergica cutanea. Provoca gravi lesioni oculari. Provoca grave irritazione oculare. Letale se inalato. Tossico se inalato. Nocivo se inalato. Può provocare sintomi allergici o asmatici o difficoltà respiratorie se inalato. Può irritare le vie respiratorie. Può provocare sonnolenza o vertigini. Può provocare alterazioni genetiche . Può provocare alterazioni genetiche. Può provocare alterazioni genetiche {1}. Sospettato di provocare alterazioni genetiche . Sospettato di provocare alterazioni genetiche . Sospettato di provocare alterazioni genetiche. Sospettato di provocare alterazioni genetiche {1}. Può provocare il cancro . Può provocare il cancro . Può provocare il cancro. Può provocare il cancro {1}. Può provocare il cancro se inalato. Sospettato di provocare il cancro . Sospettato di provocare il cancro . Sospettato di provocare il cancro. Sospettato di provocare il cancro {1}. Può nuocere alla fertilità o al feto . Può nuocere alla fertilità o al feto . Può nuocere alla fertilità o al feto. Può nuocere alla fertilità o al feto {1}. Può nuocere alla fertilità. Può nuocere al feto. Può nuocere alla fertilità. Può nuocere al feto. Può nuocere alla fertilità. Sospettato di nuocere al feto. Può nuocere al feto. Sospettato di nuocere alla fertilità. Sospettato di nuocere alla fertilità o al feto . Sospettato di nuocere alla fertilità o al feto . Sospettato di nuocere alla fertilità o al feto {1}. Sospettato di nuocere alla fertilità. Sospettato di nuocere al feto. Sospettato di nuocere alla fertilità. Sospettato di nuocere al feto. Può essere nocivo per i lattanti allattati al seno. Provoca danni agli organi . Provoca danni agli organi . Provoca danni agli organi. Provoca danni agli organi {1}. Provoca danni a {1}. Provoca danni a {1} {2}. Può provocare danni agli organi . Può provocare danni agli organi . Può provocare danni agli organi. Può provocare danni agli organi {1}. Può provocare danni a {1}. Può provocare danni a {1} {2}. Provoca danni agli organi in caso di esposizione prolungata o ripetuta . Provoca danni agli organi in caso di esposizione prolungata o ripetuta . Provoca danni agli organi in caso di esposizione prolungata o ripetuta. Provoca danni agli organi {1}. Provoca danni a {1} in caso di esposizione prolungata o ripetuta. Provoca danni a {1} {2}. Può provocare danni agli organi in caso di esposizione prolungata o ripetuta . Può provocare danni agli organi in caso di esposizione prolungata o ripetuta . Può provocare danni agli organi in caso di esposizione prolungata o ripetuta. Può provocare danni agli organi {1}. Può provocare danni a {1} in caso di esposizione prolungata o ripetuta. Può provocare danni a {1} {2}. Mortale in caso di ingestione o a contatto con la pelle Mortale se ingerito, a contatto con la pelle o se inalato Mortale se ingerito o inalato Tossico se ingerito o a contatto con la pelle Tossico se ingerito, a contatto con la pelle o se inalato Tossico se ingerito o inalato Nocivo se ingerito o a contatto con la pelle Nocivo se ingerito, a contatto con la pelle o se inalato Nocivo se ingerito o inalato Mortale a contatto con la pelle o in caso di inalazione Tossico a contatto con la pelle o se inalato Nocivo a contatto con la pelle o se inalato Molto tossico per gli organismi acquatici. Molto tossico per gli organismi acquatici con effetti di lunga durata. Tossico per gli organismi acquatici con effetti di lunga durata. Nocivo per gli organismi acquatici con effetti di lunga durata. Può essere nocivo per gli organismi acquatici con effetti di lunga durata. Nuoce alla salute pubblica e all’ambiente distruggendo l’ozono dello strato superiore dell’atmosfera Reagisce violentemente con l'acqua. Durante l'uso può formarsi una miscela vapore-aria esplosiva/infiammabile. Durante l'uso può formarsi una miscela vapore-aria esplosiva/infiammabile. Durante l'uso può formarsi una miscela vapore-aria infiammabile. Durante l'uso può formarsi una miscela vapore-aria esplosiva. Può formare perossidi esplosivi. A contatto con l'acqua libera un gas tossico. A contatto con acidi libera gas tossici. A contatto con acidi libera gas molto tossici. Rischio di esplosione per riscaldamento in ambiente confinato. L'esposizione ripetuta può provocare secchezza o screpolature della pelle. Tossico per contatto oculare. Corrosivo per le vie respiratorie. Contiene piombo. Non utilizzare su oggetti che possono essere masticati o succhiati dai bambini. Attenzione! Contiene piombo. Cianoacrilato. Pericolo. Incolla la pelle e gli occhi in pochi secondi. Tenere fuori dalla portata dei bambini. Contiene cromo (VI). Può provocare una reazione allergica. Contiene isocianati. Può provocare una reazione allergica. Contiene componenti epossidici. Può provocare una reazione allergica. Attenzione! Non utilizzare in combinazione con altri prodotti. Possono liberarsi gas pericolosi (cloro). Attenzione! Contiene cadmio. Durante l'uso si sviluppano fumi pericolosi. Leggere le informazioni fornite dal fabbricante. Rispettare le disposizioni di sicurezza. Contiene . Può provocare una reazione allergica. Contiene . Può provocare una reazione allergica. Contiene {1}. Può provocare una reazione allergica. Può diventare facilmente infiammabile durante l'uso. Può diventare infiammabile durante l'uso. Scheda dati di sicurezza disponibile su richiesta. Attenzione! In caso di vaporizzazione possono formarsi goccioline respirabili pericolose. Non respirare i vapori o le nebbie. Attenzione! In caso di utilizzo possono formarsi polveri respirabili pericolose. Non respirare le polveri. Può interferire con il sistema endocrino negli esseri umani Sospettato di interferire con il sistema endocrino negli esseri umani Per evitare rischi per la salute umana e per l'ambiente, seguire le istruzioni per l'uso. Può interferire con il sistema endocrino nell’ambiente Sospettato di interferire con il sistema endocrino nell’ambiente Si accumula nell’ambiente e negli organismi viventi, compresi gli esseri umani Si accumula notevolmente nell’ambiente e negli organismi viventi, compresi gli esseri umani Può provocare la contaminazione duratura e diffusa delle risorse idriche Può provocare la contaminazione molto duratura e diffusa delle risorse idriche In caso di consultazione di un medico, tenere a disposizione il contenitore o l'etichetta del prodotto. Tenere fuori dalla portata dei bambini. Leggere attentamente e seguire tutte le istruzioni. Procurarsi le istruzioni prima dell'uso. Non manipolare prima di avere letto e compreso tutte le avvertenze. Tenere lontano da fonti di calore, superfici riscaldate, scintille, fiamme e altre fonti di innesco. Vietato fumare. Non vaporizzare su una fiamma libera o altra fonte di accensione. Evitare di riscaldare sotto confinamento o di ridurre l'agente desensibilizzante. Tenere lontano da indumenti e altri materiali combustibili. Evitare il contatto con l'aria. Evitare qualunque contatto con l'acqua. Mantenere umido con… Mantenere umido con… Mantenere umido con {1} Manipolare e conservare in atmosfera di gas inerte/… Manipolare e conservare in atmosfera di gas inerte/… Manipolare e conservare in atmosfera di gas inerte Manipolare e conservare in atmosfera di {1} Proteggere dall’umidità. Tenere il recipiente ben chiuso. Conservare soltanto nell'imballaggio originale. Conservare in luogo fresco. Mettere a terra e a massa il contenitore e il dispositivo ricevente. Utilizzare impianti [elettrici/di ventilazione/d'illuminazione/…] a prova di esplosione. Utilizzare impianti [elettrici/di ventilazione/d'illuminazione/…] a prova di esplosione. Utilizzare impianti elettrici a prova di esplosione. Utilizzare impianti di ventilazione a prova di esplosione. Utilizzare impianti d'illuminazione a prova di esplosione. Utilizzare impianti {1} a prova di esplosione. Utilizzare utensili antiscintillamento. Fare in modo di prevenire le scariche elettrostatiche. Mantenere le valvole e i raccordi liberi da olio e grasso. Evitare le abrasioni/gli urti/gli attriti/… . Evitare le abrasioni/gli urti/gli attriti/… . Evitare le abrasioni. Evitare gli urti. Evitare gli attriti. Evitare {1} . Non perforare né bruciare, neppure dopo l’uso. Non respirare la polvere/i fumi/i gas/la nebbia/i vapori/gli aerosol. Non respirare la polvere/i fumi/i gas/la nebbia/i vapori/gli aerosol. Non respirare la polvere. Non respirare i fumi. Non respirare i gas. Non respirare la nebbia. Non respirare i vapori. Non respirare gli aerosol. Evitare di respirare la polvere/i fumi/i gas/la nebbia/i vapori/gli aerosol. Evitare di respirare la polvere/i fumi/i gas/la nebbia/i vapori/gli aerosol. Evitare di respirare la polvere. Evitare di respirare i fumi. Evitare di respirare i gas. Evitare di respirare la nebbia. Evitare di respirare i vapori. Evitare di respirare gli aerosol. Evitare il contatto con gli occhi, la pelle o gli indumenti. Evitare il contatto durante la gravidanza e l'allattamento. Lavare accuratamente … dopo l’uso. Lavare accuratamente … dopo l’uso. Lavare accuratamente {1} dopo l’uso. Non mangiare, né bere, né fumare durante l’uso. Utilizzare soltanto all’aperto o in luogo ben ventilato. Gli indumenti da lavoro contaminati non devono essere portati fuori dal luogo di lavoro. Non disperdere nell’ambiente. Indossare guanti/indumenti protettivi/Proteggere gli occhi/il viso. Indossare guanti/indumenti protettivi/Proteggere gli occhi/il viso. Indossare guanti. Indossare indumenti protettivi. Proteggere gli occhi. Proteggere il viso. Utilizzare guanti termici e schermo facciale o protezione per gli occhi. Indossare indumenti completamente ignifughi o in tessuti ritardanti di fiamma. [Quando la ventilazione del locale è insufficiente] indossare un apparecchio di protezione respiratoria. Manipolare e conservare in atmosfera di gas inerte/…. Tenere al riparo dall'umidità. Manipolare e conservare in atmosfera di gas inerte/…. Tenere al riparo dall'umidità. Manipolare e conservare in atmosfera di gas inerte. Tenere al riparo dall'umidità. Manipolare e conservare in atmosfera di {1}. Tenere al riparo dall'umidità. IN CASO DI INGESTIONE: IN CASO DI CONTATTO CON LA PELLE: IN CASO DI CONTATTO CON LA PELLE (o con i capelli): IN CASO DI INALAZIONE: IN CASO DI CONTATTO CON GLI OCCHI: IN CASO DI CONTATTO CON GLI INDUMENTI: IN CASO di esposizione o di possibile esposizione: Contattare immediatamente un CENTRO ANTIVELENI/un medico… Contattare immediatamente un CENTRO ANTIVELENI/un medico… Contattare immediatamente un CENTRO ANTIVELENI Contattare immediatamente un medico Contattare immediatamente {1} Contattare un CENTRO ANTIVELENI/un medico/… Contattare un CENTRO ANTIVELENI/un medico/… Contattare un CENTRO ANTIVELENI Contattare un medico Contattare {1} In caso di malessere, contattare un CENTRO ANTIVELENI/un medico/… . In caso di malessere, contattare un CENTRO ANTIVELENI/un medico/… . In caso di malessere, contattare un CENTRO ANTIVELENI. In caso di malessere, contattare un medico. In caso di malessere, contattare {1}. Consultare un medico. In caso di malessere, consultare un medico. Consultare immediatamente un medico. Trattamento specifico urgente (vedere … su questa etichetta). Trattamento specifico urgente (vedere … su questa etichetta). Trattamento specifico urgente (vedere {1} su questa etichetta). Trattamento specifico urgente (vedere {1}). Trattamento specifico (vedere … su questa etichetta). Trattamento specifico (vedere … su questa etichetta). Trattamento specifico (vedere {1} su questa etichetta). Trattamento specifico (vedere {1}). Sciacquare la bocca. NON provocare il vomito. In caso di irritazione della pelle: In caso di irritazione o eruzione della pelle: Immergere in acqua fredda [o avvolgere con un bendaggio umido]. Immergere in acqua fredda [o avvolgere con un bendaggio umido]. Immergere in acqua fredda. Immergere in acqua fredda o avvolgere con un bendaggio umido. Rimuovere le particelle depositate sulla pelle. Sgelare le parti congelate usando acqua tiepida. Non sfregare la parte interessata. Se l’irritazione degli occhi persiste: Togliere le eventuali lenti a contatto se è agevole farlo. Continuare a sciacquare. Trasportare l’infortunato all’aria aperta e mantenerlo a riposo in posizione che favorisca la respirazione. In caso di sintomi respiratori: Sciacquare accuratamente per parecchi minuti. Lavare abbondantemente con acqua/… Lavare abbondantemente con acqua/… Lavare abbondantemente con acqua Lavare abbondantemente con {1} Sciacquare la pelle [o fare una doccia]. Sciacquare la pelle [o fare una doccia]. Sciacquare la pelle. Sciacquare la pelle o fare una doccia. Sciacquare immediatamente e abbondantemente gli indumenti contaminati e la pelle prima di togliersi gli indumenti. Togliere immediatamente tutti gli indumenti contaminati. Togliere gli indumenti contaminati. Lavare gli indumenti contaminati prima di indossarli nuovamente. E lavarli prima di indossarli nuovamente. In caso di incendio: In caso di incendio grave e di quantità rilevanti: Rischio di esplosione. NON utilizzare mezzi estinguenti se l’incendio raggiunge materiali esplosivi. Rischio di esplosione. Utilizzare i mezzi estinguenti a grande distanza. Bloccare la perdita se non c’è pericolo. In caso d’incendio dovuto a perdita di gas, non estinguere a meno che non sia possibile bloccare la perdita senza pericolo. Utilizzare… per estinguere. Utilizzare… per estinguere. Utilizzare {1} per estinguere. Evacuare la zona. In caso di perdita, eliminare ogni fonte di accensione. Assorbire la fuoriuscita per evitare danni materiali. Raccogliere il materiale fuoriuscito. IN CASO DI INGESTIONE: contattare immediatamente un CENTRO ANTIVELENI/un medico/… IN CASO DI INGESTIONE: contattare immediatamente un CENTRO ANTIVELENI/un medico/… IN CASO DI INGESTIONE: contattare immediatamente un CENTRO ANTIVELENI IN CASO DI INGESTIONE: contattare immediatamente un medico IN CASO DI INGESTIONE: contattare immediatamente {1} IN CASO DI INGESTIONE: in presenza di malessere, contattare un CENTRO ANTIVELENI/un medico/… . IN CASO DI INGESTIONE: in presenza di malessere, contattare un CENTRO ANTIVELENI/un medico/… . IN CASO DI INGESTIONE: in presenza di malessere, contattare un CENTRO ANTIVELENI. IN CASO DI INGESTIONE: in presenza di malessere, contattare un medico. IN CASO DI INGESTIONE: in presenza di malessere, contattare {1}. IN CASO DI INGESTIONE: sciacquare la bocca. NON provocare il vomito. IN CASO DI CONTATTO CON LA PELLE: immergere in acqua fredda o avvolgere con un bendaggio umido. IN CASO DI CONTATTO CON LA PELLE: rimuovere le particelle depositate sulla pelle. Immergere in acqua fredda [o avvolgere con un bendaggio umido]. IN CASO DI CONTATTO CON LA PELLE: rimuovere le particelle depositate sulla pelle. Immergere in acqua fredda [o avvolgere con un bendaggio umido]. IN CASO DI CONTATTO CON LA PELLE: rimuovere le particelle depositate sulla pelle. Immergere in acqua fredda. IN CASO DI CONTATTO CON LA PELLE: rimuovere le particelle depositate sulla pelle. Immergere in acqua fredda o avvolgere con un bendaggio umido. IN CASO DI CONTATTO CON LA PELLE: lavare abbondantemente con acqua/… IN CASO DI CONTATTO CON LA PELLE: lavare abbondantemente con acqua/… IN CASO DI CONTATTO CON LA PELLE: lavare abbondantemente con acqua IN CASO DI CONTATTO CON LA PELLE: lavare abbondantemente con {1} IN CASO DI CONTATTO CON LA PELLE (o con i capelli): togliersi di dosso immediatamente tutti gli indumenti contaminati. Sciacquare la pelle [o fare una doccia]. IN CASO DI CONTATTO CON LA PELLE (o con i capelli): togliersi di dosso immediatamente tutti gli indumenti contaminati. Sciacquare la pelle [o fare una doccia]. IN CASO DI CONTATTO CON LA PELLE (o con i capelli): togliersi di dosso immediatamente tutti gli indumenti contaminati. Sciacquare la pelle. IN CASO DI CONTATTO CON LA PELLE (o con i capelli): togliersi di dosso immediatamente tutti gli indumenti contaminati. Sciacquare la pelle o fare una doccia. IN CASO DI INALAZIONE: trasportare l’infortunato all’aria aperta e mantenerlo a riposo in posizione che favorisca la respirazione. IN CASO DI CONTATTO CON GLI OCCHI: sciacquare accuratamente per parecchi minuti. Togliere le eventuali lenti a contatto se è agevole farlo. Continuare a sciacquare. IN CASO DI CONTATTO CON GLI INDUMENTI: sciacquare immediatamente e abbondantemente gli indumenti contaminati e la pelle prima di togliersi gli indumenti. In caso di esposizione o di possibile esposizione: contattare un CENTRO ANTIVELENI/un medico/… In caso di esposizione o di possibile esposizione: contattare un CENTRO ANTIVELENI/un medico/… In caso di esposizione o di possibile esposizione: contattare un CENTRO ANTIVELENI In caso di esposizione o di possibile esposizione: contattare un medico In caso di esposizione o di possibile esposizione: contattare {1} IN CASO di esposizione o di possibile esposizione, consultare un medico. In caso di irritazione della pelle: consultare un medico. In caso di irritazione o eruzione della pelle: consultare un medico. Sgelare le parti congelate usando acqua tiepida. Non sfregare la parte interessata. Consultare immediatamente un medico. Se l’irritazione degli occhi persiste, consultare un medico. In caso di sintomi respiratori: contattare un CENTRO ANTIVELENI/un medico/… In caso di sintomi respiratori: contattare un CENTRO ANTIVELENI/un medico/… In caso di sintomi respiratori: contattare un CENTRO ANTIVELENI In caso di sintomi respiratori: contattare un medico In caso di sintomi respiratori: contattare {1} Togliere immediatamente tutti gli indumenti contaminati e lavarli prima di indossarli nuovamente. Togliere tutti gli indumenti contaminati e lavarli prima di indossarli nuovamente. Rischio di esplosione in caso di incendio. Evacuare la zona. NON utilizzare mezzi estinguenti se l'incendio raggiunge materiali esplosivi. In caso di incendio: bloccare la perdita se non c’è pericolo. In caso d’incendio: utilizzare… per estinguere. In caso d’incendio: utilizzare… per estinguere. In caso d’incendio: utilizzare {1} per estinguere. In caso di incendio: evacuare la zona. Rischio di esplosione. Utilizzare i mezzi estinguenti a grande distanza. In caso di incendio: evacuare la zona. Rischio di esplosione. Utilizzare i mezzi estinguenti a grande distanza. Estinguere con… . In caso di incendio: evacuare la zona. Rischio di esplosione. Utilizzare i mezzi estinguenti a grande distanza. Estinguere con… . In caso di incendio: evacuare la zona. Rischio di esplosione. Utilizzare i mezzi estinguenti a grande distanza. Estinguere con {1} . In caso di incendio grave e di grandi quantità: evacuare la zona. Rischio di esplosione. Utilizzare i mezzi estinguenti a grande distanza. Conservare secondo… . Conservare secondo… . Conservare secondo {1} . Conservare in luogo asciutto. Conservare in luogo ben ventilato. Conservare in un recipiente chiuso. Conservare sotto chiave. Conservare in recipiente resistente alla corrosione/… provvisto di rivestimento interno resistente. Conservare in recipiente resistente alla corrosione/… provvisto di rivestimento interno resistente. Conservare in recipiente resistente alla corrosione provvisto di rivestimento interno resistente. Conservare in recipiente {1} provvisto di rivestimento interno resistente. Mantenere uno spazio libero tra gli scaffali o i pallet. Proteggere dai raggi solari. Conservare a temperature non superiori a … °C/… °F. Conservare a temperature non superiori a … °C/… °F. Conservare a temperature non superiori a {1} °C. Conservare a temperature non superiori a {1} °F. Non esporre a temperature superiori a 50 °C/122 °F. Non esporre a temperature superiori a 50 °C/122 °F. Non esporre a temperature superiori a 50 °C. Non esporre a temperature superiori a 122 °F. Conservare le rinfuse di peso superiore a … kg/… lb a temperature non superiori a … °C/… °F. Conservare le rinfuse di peso superiore a … kg/… lb a temperature non superiori a … °C/… °F. Conservare le rinfuse di peso superiore a {1} kg a temperature non superiori a {2} °C. Conservare le rinfuse di peso superiore a {1} lb a temperature non superiori a {2} °F. Conservare separatamente. Conservare in luogo asciutto e in recipiente chiuso. Tenere il recipiente ben chiuso e in luogo ben ventilato. Conservare in luogo fresco e ben ventilato. Proteggere dai raggi solari. Conservare in luogo ben ventilato. Proteggere dai raggi solari. Non esporre a temperature superiori a 50 °C/122 °F. Proteggere dai raggi solari. Non esporre a temperature superiori a 50 °C/122 °F. Proteggere dai raggi solari. Non esporre a temperature superiori a 50 °C. Proteggere dai raggi solari. Non esporre a temperature superiori a 122 °F. Smaltire il prodotto/recipiente in … Smaltire il prodotto/recipiente in … Smaltire il prodotto/recipiente in {1} Smaltire il prodotto {1} Smaltire il recipiente {1} Chiedere informazioni al produttore o fornitore per il recupero o il riciclaggio.
diff --git a/packages/preview/typsium-ghs/0.1.1/typst.toml b/packages/preview/typsium-ghs/0.1.1/typst.toml
new file mode 100644
index 0000000000..29e437bf93
--- /dev/null
+++ b/packages/preview/typsium-ghs/0.1.1/typst.toml
@@ -0,0 +1,15 @@
+[package]
+name = "typsium-ghs"
+version = "0.1.1"
+repository = "https://github.com/Typsium/typsium-ghs"
+license = "MIT"
+entrypoint = "src/lib.typ"
+authors = [
+ "Typsium Community ",
+ "Ants Aare Alamaa <@Ants-Aare>",
+ "Joshua Bohr <@joshuabohr>",
+]
+description = "Display and format Hazard & Precautionary statements and GHS pictograms in Typst."
+categories = [ "layout", "text", "paper" ]
+disciplines = [ "education", "chemistry" ]
+keywords = ["chemistry", "chemical", "hazard", "precaution", "h and p", "statement", "hp", "ghs", "icon", "pictogram"]
\ No newline at end of file