diff --git a/docker-compose.yml b/docker-compose.yml index edd2dc719..18dfb852b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -44,7 +44,7 @@ services: - tripbot_website-net - moodle_data-net volumes: - - ./assets:/usr/src/app/assets # Needed for hot-reloading of source code + - ./src/global/assets:/usr/src/app/src/global/assets # For viewing downloaded assets in development - ./src:/usr/src/app/src # Needed for hot-reloading of source code - ./.env:/usr/src/app/.env # Needed for hot-reloading the .env labels: diff --git a/src/api/v1/drugs/drugs.queries.ts b/src/api/v1/drugs/drugs.queries.ts index 715412b53..361a57f2d 100644 --- a/src/api/v1/drugs/drugs.queries.ts +++ b/src/api/v1/drugs/drugs.queries.ts @@ -1,5 +1,5 @@ import { Category, Drug } from 'tripsit_drug_db'; -import drugJsonData from '../../../global/assets/data/drug_db_tripsit.json'; +import drugJsonData from '../../../global/assets/data/tripsitDB.json'; import { combo } from '../../../global/commands/g.combo'; // eslint-disable-next-line @typescript-eslint/no-unused-vars diff --git a/src/dbscan.ts b/src/dbscan.ts index 8006e4bfc..45fe5117d 100644 --- a/src/dbscan.ts +++ b/src/dbscan.ts @@ -2,7 +2,7 @@ import { Category, Drug } from 'tripsit_drug_db'; import fs from 'fs'; import path from 'path'; -import drugs from './global/assets/data/drug_db_tripsit.json'; +import drugs from './global/assets/data/tripsitDB.json'; import combos from './global/assets/data/combo.json'; import { Combos } from './global/@types/tripsitCombos'; diff --git a/src/discord/commands/global/d.drug.ts b/src/discord/commands/global/d.drug.ts index ae37fcd07..cb4a2f5da 100644 --- a/src/discord/commands/global/d.drug.ts +++ b/src/discord/commands/global/d.drug.ts @@ -199,6 +199,9 @@ async function addDurations( let columns = 0; roaNames.forEach(roaName => { if (columns < 3) { + if (!drugData.roas) { + return; + } const roaInfo = drugData.roas.find(r => r.name === roaName); if (roaInfo && roaInfo.duration) { let durationString = ''; diff --git a/src/discord/commands/guild/d.bottest.ts b/src/discord/commands/guild/d.bottest.ts index 8ac11667f..02ccecd2a 100644 --- a/src/discord/commands/guild/d.bottest.ts +++ b/src/discord/commands/guild/d.bottest.ts @@ -15,7 +15,7 @@ import { embedTemplate } from '../../utils/embedTemplate'; import commandContext from '../../utils/context'; // import fs from 'fs/promises'; // eslint-disable-line const F = f(__filename); -// import drugDataAll from '../../../global/assets/data/drug_db_combined.json'; +// import drugDataAll from '../../../../assets/data/tripsitDB.json'; // const drugNames = drugDataAll.map((d) => d.name); type ResultsObject = { total: string[] diff --git a/src/discord/events/autocomplete.ts b/src/discord/events/autocomplete.ts index b7988e6d7..51cf58eaa 100644 --- a/src/discord/events/autocomplete.ts +++ b/src/discord/events/autocomplete.ts @@ -5,12 +5,20 @@ import { import Fuse from 'fuse.js'; import { PrismaClient, ai_model } from '@prisma/client'; +import { Drug } from 'tripsit_drug_db'; import pillColors from '../../global/assets/data/pill_colors.json'; import pillShapes from '../../global/assets/data/pill_shapes.json'; -import drugDataAll from '../../global/assets/data/drug_db_combined.json'; -import drugDataTripsit from '../../global/assets/data/drug_db_tripsit.json'; +import cbData from '../../global/assets/data/combinedDB.json'; +import tsData from '../../global/assets/data/tripsitDB.json'; import timezones from '../../global/assets/data/timezones.json'; import unitsOfMeasurement from '../../global/assets/data/units_of_measurement.json'; +import { CbSubstance } from '../../global/@types/combined'; + +const drugDataTripsit = tsData as { + [key: string]: Drug; +}; + +const drugDataAll = cbData as CbSubstance[]; const db = new PrismaClient({ log: ['error'] }); diff --git a/src/global/@types/combined.d.ts b/src/global/@types/combined.d.ts index d2a2ca8f7..80026b51e 100644 --- a/src/global/@types/combined.d.ts +++ b/src/global/@types/combined.d.ts @@ -2,42 +2,132 @@ export interface CbSubstance { url: string; - experiencesUrl: null | string; + experiencesUrl?: string; name: string; - aliases: string[]; - aliasesStr: string; - summary: null | string; - reagents: null | string; - classes: Classes | null; - toxicity: string[] | null; - addictionPotential: null | string; - tolerance: Tolerance | null; - crossTolerances: string[] | null; - roas: Roa[]; - interactions: Interaction[] | null; + aliases?: string[]; + aliasesStr?: string; + summary?: string; + reagents?: string; + classes?: Classes; + toxicity?: string[] ; + addictionPotential?: string; + tolerance?: Tolerance; + crossTolerances?: string[]; + roas?: Roa[]; + interactions?: Interaction[]; } export interface Classes { - chemical: string[] | null; - psychoactive: Psychoactive[] | null; + chemical?: [Chemical]; + psychoactive?: [Psychoactive]; } export enum Psychoactive { - Antidepressants = 'Antidepressants', + Antidepressant = 'Antidepressant', Antipsychotic = 'Antipsychotic', + 'Atypical neuroleptic' = 'Atypical neuroleptic', Cannabinoid = 'Cannabinoid', Deliriant = 'Deliriant', Depressant = 'Depressant', - Dissociatives = 'Dissociatives', - Entactogens = 'Entactogens', - Eugeroics = 'Eugeroics', - Hallucinogens = 'Hallucinogens', + Dissociative = 'Dissociative', + Empathogen = 'Empathogen', + Entactogen = 'Entactogen', + Eugeroic = 'Eugeroic', + 'Habit Forming' = 'Habit Forming', + Hallucinogen = 'Hallucinogen', + Hypnotic = 'Hypnotic', + Inactive = 'Inactive', Nootropic = 'Nootropic', Oneirogen = 'Oneirogen', - Opioids = 'Opioids', - Psychedelics = 'Psychedelics', - Sedative = 'Sedative', - Stimulants = 'Stimulants', + Opioid = 'Opioid', + Psychedelic = 'Psychedelic', + 'Research Chemical' = 'Research Chemical', + SSRI = 'SSRI', + Stimulant = 'Stimulant', + Supplement = 'Supplement', + Tentative = 'Tentative', +} + +export enum Chemical { + '4-oxazolidinone' = '4-oxazolidinone', + 'Amino acid' = 'Amino acid', + 'Amino acid analogue' = 'Amino acid analogue', + 'Ammonium salt' = 'Ammonium salt', + Amine = 'Amine', + Aminoindane = 'Aminoindane', + Amphetamine = 'Amphetamine', + Adamantanes = 'Adamantanes', + Alcohol = 'Alcohol', + Alkanediol = 'Alkanediol', + Anilidopiperidine = 'Anilidopiperidine', + Arylcyclohexylamines = 'Arylcyclohexylamines', + Barbiturates = 'Barbiturates', + Benzamide = 'Benzamide', + Benzazepine = 'Benzazepine', + Benzhydryl = 'Benzhydryl', + Benzisoxazole = 'Benzisoxazole', + Benzodiazepines = 'Benzodiazepines', + Butyrophenone = 'Butyrophenone', + 'Butyric acid' = 'Butyric acid', + Cannabinoid = 'Cannabinoid', + Carbamate = 'Carbamate', + Common = 'Common', + 'Choline derivative' = 'Choline derivative', + Cysteine = 'Cysteine', + Cycloalkylamines = 'Cycloalkylamines', + Cyclopyrrolone = 'Cyclopyrrolone', + Diarylethylamines = 'Diarylethylamines', + Diol = 'Diol', + Diphenylpropylamine = 'Diphenylpropylamine', + Dibenzothiazepine = 'Dibenzothiazepine', + 'Ethanolamine#1#' = 'Ethanolamine#1#', + Gabapentinoids = 'Gabapentinoids', + Imidazoline = 'Imidazoline', + Imidazopyridine = 'Imidazopyridine', + Indazole = 'Indazole', + Indazolecarboxamide = 'Indazolecarboxamide', + Indolecarboxamide = 'Indolecarboxamide', + Indolecarboxylate = 'Indolecarboxylate', + 'Indole alkaloids' = 'Indole alkaloids', + 'Indole cannabinoid' = 'Indole cannabinoid', + Khat = 'Khat#1#', + Lactone = 'Lactone', + Lysergamides = 'Lysergamides', + MDxx = 'MDxx', + Naphthoylindole = 'Naphthoylindole', + Naphthoylindazole = 'Naphthoylindazole', + 'Nitrogenous organic acid' = 'Nitrogenous organic acid', + Peptide = 'Peptide', + Phenothiazine = 'Phenothiazine', + Phenylmorpholine = 'Phenylmorpholine', + Phenylpropenes = 'Phenylpropenes', + Phenylpropylamine = 'Phenylpropylamine', + Piperazinoazepine = 'Piperazinoazepine', + Poppers = 'Poppers', + Pyridine = 'Pyridine', + Quinazolinone = 'Quinazolinone', + Racetams = 'Racetams', + Salvinorin = 'Salvinorin', + 'Substituted aminorexes' = 'Substituted aminorexes', + 'Substituted amphetamines' = 'Substituted amphetamines', + 'Substituted benzofurans' = 'Substituted benzofurans', + 'Substituted cathinones' = 'Substituted cathinones', + 'Substituted morphinans' = 'Substituted morphinans', + 'Substituted phenethylamines' = 'Substituted phenethylamines', + 'Substituted phenidates' = 'Substituted phenidates', + 'Substituted piperazines' = 'Substituted piperazines', + 'Substituted piperidines' = 'Substituted piperidines', + 'Substituted pyrrolidines' = 'Substituted pyrrolidines', + 'Substituted tropanes' = 'Substituted tropanes', + 'Substituted tryptamines' = 'Substituted tryptamines', + Terpenoid = 'Terpenoid', + Tetrahydroisoxazole = 'Tetrahydroisoxazole', + Tetrahydroisoxazolopyridine = 'Tetrahydroisoxazolopyridine', + Thienodiazepines = 'Thienodiazepines', + Thiophene = 'Thiophene', + 'Tricyclic antidepressant' = 'Tricyclic antidepressant', + 'Purine alkaloid' = 'Purine alkaloid', + Xanthines = 'Xanthines', } export interface Interaction { @@ -57,29 +147,38 @@ export enum Status { export interface Roa { name: string; - dosage?: Dosage[] | null; - duration?: Dosage[] | null; + dosage?: Dosage[]; + duration?: Duration[]; bioavailability?: string; } export interface Dosage { - name: Name; + name: Strength; + value: string; + note?: string; +} + +export interface Duration { + name: Period; value: null | string; note?: string; } -export enum Name { - AfterEffects = 'After effects', - ComeUp = 'Come up', +export enum Strength { Common = 'Common', - Duration = 'Duration', Heavy = 'Heavy', Light = 'Light', + Strong = 'Strong', + Threshold = 'Threshold', +} + +export enum Period { + AfterEffects = 'After effects', + ComeUp = 'Come up', + Duration = 'Duration', Offset = 'Offset', Onset = 'Onset', Peak = 'Peak', - Strong = 'Strong', - Threshold = 'Threshold', Total = 'Total', } diff --git a/src/global/@types/psychonaut.d.ts b/src/global/@types/psychonaut.d.ts index 8a9a3547b..9d10a1085 100644 --- a/src/global/@types/psychonaut.d.ts +++ b/src/global/@types/psychonaut.d.ts @@ -1,90 +1,191 @@ /* eslint-disable no-unused-vars */ export interface PwSubstance { - name: String; - url: String; + name: string; + url: string; featured: Boolean; effects: [Effect]; experiences: [Experience]; - class: SubstanceClass; - tolerance: SubstanceTolerance; - roa: SubstanceRoaTypes; - roas: [SubstanceRoa]; - summary: String; - images: [SubstanceImage]; - addictionPotential: String; - toxicity: [String]; - crossTolerances: [String]; - commonNames: [String]; + class: Class; + tolerance: Tolerance; + roa: Types; + roas: [Roa]; + summary: string; + images: [Image]; + addictionPotential: string; + toxicity: [string]; + crossTolerances: [string]; + commonNames: [string]; uncertainInteractions: [PwSubstance]; unsafeInteractions: [PwSubstance]; dangerousInteractions: [PwSubstance]; } -export type SubstanceClass = { - chemical: [String] - psychoactive: [String] +export type Class = { + chemical: [Chemical] + psychoactive: [Psychoactive] }; -export type SubstanceTolerance = { - full: String - half: String - zero: String +export enum Psychoactive { + Stimulants = 'Stimulants', + Depressant = 'Depressant', + Psychedelic = 'Psychedelic', + Entactogen = 'Entactogen', + Dissociatives = 'Dissociatives', + Nootropic = 'Nootropic', + Cannabinoid = 'Cannabinoid', + Opioids = 'Opioids', + Eugeroics = 'Eugeroics', + Deliriant = 'Deliriant', + Hallucinogens = 'Hallucinogens', + Hypnotic = 'Hypnotic', + Oneirogen = 'Oneirogen', + Antipsychotic = 'Antipsychotic', + Antidepressants = 'Antidepressants', + 'Atypical neuroleptic' = 'Atypical neuroleptic', +} + +export enum Chemical { + Amine = 'Amine', + Alkanediol = 'Alkanediol', + Diol = 'Diol', + Lysergamides = 'Lysergamides', + Amphetamine = 'Amphetamine', + Aminoindane = 'Aminoindane', + 'Substituted amphetamines' = 'Substituted amphetamines', + Arylcyclohexylamines = 'Arylcyclohexylamines', + 'Substituted phenethylamines' = 'Substituted phenethylamines', + 'Substituted benzofurans' = 'Substituted benzofurans', + Alcohol = 'Alcohol', + 'Substituted phenidates' = 'Substituted phenidates', + Phenylmorpholine = 'Phenylmorpholine', + 'Khat#1#' = 'Khat#1#', + 'Substituted tryptamines' = 'Substituted tryptamines', + 'Amino acid' = 'Amino acid', + Indazolecarboxamide = 'Indazolecarboxamide', + Adamantanes = 'Adamantanes', + Indolecarboxylate = 'Indolecarboxylate', + Xanthines = 'Xanthines', + 'Substituted cathinones' = 'Substituted cathinones', + 'Substituted pyrrolidines' = 'Substituted pyrrolidines', + Indolecarboxamide = 'Indolecarboxamide', + 'Indole cannabinoid' = 'Indole cannabinoid', + Anilidopiperidine = 'Anilidopiperidine', + 'Choline derivative' = 'Choline derivative', + Benzodiazepines = 'Benzodiazepines', + Racetams = 'Racetams', + Benzhydryl = 'Benzhydryl', + 'Substituted tropanes' = 'Substituted tropanes', + 'Butyric acid' = 'Butyric acid', + Indazole = 'Indazole', + 'Substituted morphinans' = 'Substituted morphinans', + MDxx = 'MDxx', + Cannabinoid = 'Cannabinoid', + Carbamate = 'Carbamate', + 'Ammonium salt' = 'Ammonium salt', + Imidazoline = 'Imidazoline', + 'Nitrogenous organic acid' = 'Nitrogenous organic acid', + 'Substituted aminorexes' = 'Substituted aminorexes', + '4-oxazolidinone' = '4-oxazolidinone', + Thienodiazepines = 'Thienodiazepines', + 'Substituted piperidines' = 'Substituted piperidines', + Phenylpropylamine = 'Phenylpropylamine', + 'Ethanolamine#1#' = 'Ethanolamine#1#', + Diarylethylamines = 'Diarylethylamines', + Cyclopyrrolone = 'Cyclopyrrolone', + Gabapentinoids = 'Gabapentinoids', + Lactone = 'Lactone', + Tetrahydroisoxazole = 'Tetrahydroisoxazole', + Tetrahydroisoxazolopyridine = 'Tetrahydroisoxazolopyridine', + Benzazepine = 'Benzazepine', + Butyrophenone = 'Butyrophenone', + 'Inorganic molecule' = 'Inorganic molecule', + Naphthoylindole = 'Naphthoylindole', + 'Indole alkaloids' = 'Indole alkaloids', + 'Substituted piperazines' = 'Substituted piperazines', + Quinazolinone = 'Quinazolinone', + Diphenylpropylamine = 'Diphenylpropylamine', + Thiophene = 'Thiophene', + Piperazinoazepine = 'Piperazinoazepine', + Phenylpropenes = 'Phenylpropenes', + Cysteine = 'Cysteine', + Pyridine = 'Pyridine', + Peptide = 'Peptide', + Barbiturates = 'Barbiturates', + Poppers = 'Poppers', + Phenothiazine = 'Phenothiazine', + Cycloalkylamines = 'Cycloalkylamines', + Dibenzothiazepine = 'Dibenzothiazepine', + Benzisoxazole = 'Benzisoxazole', + Salvinorin = 'Salvinorin', + Terpenoid = 'Terpenoid', + Naphthoylindazole = 'Naphthoylindazole', + 'Purine alkaloid' = 'Purine alkaloid', + 'Amino acid analogue' = 'Amino acid analogue', + 'Tricyclic antidepressant' = 'Tricyclic antidepressant', + Benzamide = 'Benzamide', + Imidazopyridine = 'Imidazopyridine', +} + +export type Tolerance = { + full: string + half: string + zero: string }; -export interface RoaRange { +export interface Range { min: number max: number units?: string } -export type SubstanceRoaDose = { - units: String +export type Dose = { + units: string threshold: number heavy: number - common: RoaRange - light: RoaRange - strong: RoaRange + common: Range + light: Range + strong: Range }; - type SubstanceRoaDuration = { - afterglow: RoaRange - comeup: RoaRange - duration: RoaRange - offset: RoaRange - onset: RoaRange - peak: RoaRange - total: RoaRange - }; +export type Duration = { + afterglow: Range + comeup: Range + duration: Range + offset: Range + onset: Range + peak: Range + total: Range +}; - type SubstanceRoa = { - name: String - dose: SubstanceRoaDose - duration: SubstanceRoaDuration - bioavailability: RoaRange - }; +export type Roa = { + name: string + dose: Dose + duration: Duration + bioavailability: Range +}; - type SubstanceRoaTypes = { - oral: SubstanceRoa - sublingual: SubstanceRoa - buccal: SubstanceRoa - insufflated: SubstanceRoa - rectal: SubstanceRoa - transdermal: SubstanceRoa - subcutaneous: SubstanceRoa - intramuscular: SubstanceRoa - intravenous: SubstanceRoa - smoked: SubstanceRoa - }; +export type Types = { + oral: Roa + sublingual: Roa + buccal: Roa + insufflated: Roa + rectal: Roa + transdermal: Roa + subcutaneous: Roa + intramuscular: Roa + intravenous: Roa + smoked: Roa +}; - type SubstanceImage = { - thumb: String - image: String + type Image = { + thumb: string + image: string }; type Effect = { - name: String - url: String + name: string + url: string substances: [PwSubstance] experiences: [Experience] }; @@ -96,26 +197,26 @@ export type SubstanceRoaDose = { type Query = { substances( - effect: String, - query: String, - chemicalClass: String, - psychoactiveClass: String, + effect: string, + query: string, + chemicalClass: string, + psychoactiveClass: string, limit: number | 10, offset: number | 10, ): [PwSubstance] substances_by_effect( - effect: [String], + effect: [string], limit: number | 50, offset: number | 0, ): [PwSubstance] effects_by_substance( - substance: String, + substance: string, limit: number | 50, offset: number | 0 ): [Effect] experiences( - substances_by_effect: String, - effects_by_substance: String, - substance: String + substances_by_effect: string, + effects_by_substance: string, + substance: string ): [Experience] }; diff --git a/src/global/assets/data/combinedDB.json b/src/global/assets/data/combinedDB.json new file mode 100644 index 000000000..a15c31ecb --- /dev/null +++ b/src/global/assets/data/combinedDB.json @@ -0,0 +1,71370 @@ +[ + { + "url": "https://psychonautwiki.org/wiki/1,3-dimethylbutylamine", + "name": "1,3-dimethylbutylamine" + }, + { + "url": "https://psychonautwiki.org/wiki/1,4-Butanediol", + "name": "1,4-Butanediol", + "aliases": [ + "bd", + "1,4-bd", + "14bd" + ], + "aliasesStr": "bd, 1,4-bd, 14bd", + "summary": "1,4-BD is a clear liquid with intoxicating effects. It is a pro-drug for GHB, and has similar though reportedly inferior effects. It also carries the potential for more health risks than GHB, such as liver toxicity.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately physically and psychologically addictive", + "tolerance": { + "full": "within several weeks of continuous use", + "half": null, + "zero": "7 - 14 days" + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mL" + }, + { + "name": "Light", + "value": "0.5-1 mL" + }, + { + "name": "Common", + "value": "1-2.5 mL" + }, + { + "name": "Strong", + "value": "2.5-4 mL" + }, + { + "name": "Heavy", + "value": "4 mL" + }, + { + "name": "Light", + "value": "0.5-1 ml" + }, + { + "name": "Common", + "value": "1-1.5 ml" + }, + { + "name": "Strong", + "value": "1.5 ml" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "1.5-2 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "3-5 hours" + }, + { + "name": "Onset", + "value": "10-45 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "2-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mL" + }, + { + "name": "Light", + "value": "0.5-1 mL" + }, + { + "name": "Common", + "value": "1-2.5 mL" + }, + { + "name": "Strong", + "value": "2.5-4 mL" + }, + { + "name": "Heavy", + "value": "4 mL" + }, + { + "name": "Light", + "value": "0.5-1 ml" + }, + { + "name": "Common", + "value": "1-1.5 ml" + }, + { + "name": "Strong", + "value": "1.5 ml" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "1.5-2 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "3-5 hours" + }, + { + "name": "Onset", + "value": "10-45 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "2-4 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + }, + { + "status": "Dangerous", + "name": "Dissociatives" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_14Butanediol.shtml", + "reagents": "Marquis: Faint Brown. | Mandelin: Brown.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/1P-ETH-LAD", + "name": "1P-ETH-LAD", + "aliases": [ + "1pethlad" + ], + "aliasesStr": "1pethlad", + "summary": "A new psychedelic lysergamide which is suspected to be a prodrug of ETH-LAD, which could explain why the doses are very similar. Or it could be active on its own. Scientific studies would need to be written to understand, yet there are none.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 µg" + }, + { + "name": "Light", + "value": "30-60 µg" + }, + { + "name": "Common", + "value": "60-100 µg" + }, + { + "name": "Strong", + "value": "100-200 µg" + }, + { + "name": "Heavy", + "value": "200 µg" + }, + { + "name": "Threshold", + "value": "20-30 ug", + "note": " NOTE: These doses are very tentative, and are based on the likelihood that the dosage profile will be similar to ETH-LAD." + }, + { + "name": "Light", + "value": "30-60 ug", + "note": " NOTE: These doses are very tentative, and are based on the likelihood that the dosage profile will be similar to ETH-LAD." + }, + { + "name": "Common", + "value": "60-100 ug", + "note": " NOTE: These doses are very tentative, and are based on the likelihood that the dosage profile will be similar to ETH-LAD." + }, + { + "name": "Strong", + "value": "100-200 ug", + "note": " NOTE: These doses are very tentative, and are based on the likelihood that the dosage profile will be similar to ETH-LAD." + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "6-12 hours" + }, + { + "name": "Onset", + "value": "15-90 minutes" + }, + { + "name": "Duration", + "value": "6-10 hours" + }, + { + "name": "After Effects", + "value": "2-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 µg" + }, + { + "name": "Light", + "value": "30-60 µg" + }, + { + "name": "Common", + "value": "60-100 µg" + }, + { + "name": "Strong", + "value": "100-200 µg" + }, + { + "name": "Heavy", + "value": "200 µg" + }, + { + "name": "Threshold", + "value": "20-30 ug", + "note": " NOTE: These doses are very tentative, and are based on the likelihood that the dosage profile will be similar to ETH-LAD." + }, + { + "name": "Light", + "value": "30-60 ug", + "note": " NOTE: These doses are very tentative, and are based on the likelihood that the dosage profile will be similar to ETH-LAD." + }, + { + "name": "Common", + "value": "60-100 ug", + "note": " NOTE: These doses are very tentative, and are based on the likelihood that the dosage profile will be similar to ETH-LAD." + }, + { + "name": "Strong", + "value": "100-200 ug", + "note": " NOTE: These doses are very tentative, and are based on the likelihood that the dosage profile will be similar to ETH-LAD." + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "6-12 hours" + }, + { + "name": "Onset", + "value": "15-90 minutes" + }, + { + "name": "Duration", + "value": "6-10 hours" + }, + { + "name": "After Effects", + "value": "2-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/1P-LSD", + "name": "1P-LSD", + "aliases": [ + "1plsd", + "1p" + ], + "aliasesStr": "1plsd, 1p", + "summary": "An LSD analogue which appears to be slightly more potent with a shorter duration. Its effects are reported to be extremely similar to LSD, and thus far seems to be similarly safe. Released in late 2014, It has quickly become a highly popular research chemical due to its implicit legality, similarity to LSD and wide availability on the Internet.", + "toxicity": [ + "extremely low toxicity relative to dose" + ], + "addictionPotential": "non-addictive with a low abuse potential", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "5-7 days", + "zero": "14 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "15 µg" + }, + { + "name": "Light", + "value": "25-75 µg" + }, + { + "name": "Common", + "value": "75-150 µg" + }, + { + "name": "Strong", + "value": "150-300 µg" + }, + { + "name": "Heavy", + "value": "300 µg" + }, + { + "name": "Light", + "value": "25-50 ug" + }, + { + "name": "Common", + "value": "50-125 ug" + }, + { + "name": "Strong", + "value": "125-200 ug" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-120 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "3-5 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "6-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "15 µg" + }, + { + "name": "Light", + "value": "25-75 µg" + }, + { + "name": "Common", + "value": "75-150 µg" + }, + { + "name": "Strong", + "value": "150-300 µg" + }, + { + "name": "Heavy", + "value": "300 µg" + }, + { + "name": "Light", + "value": "25-50 ug" + }, + { + "name": "Common", + "value": "50-125 ug" + }, + { + "name": "Strong", + "value": "125-200 ug" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-120 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "3-5 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "6-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_1PLSD.shtml", + "reagents": "Marquis: Slow Purple. | Mecke: Brown. | Mandelin: No colour change. | Froehde: No colour change. | Liebermann: No colour change. | Ehrlich's Reagent: No colour change. | Gallic Acid: Brown.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/1V-LSD", + "name": "1V-LSD", + "aliases": [ + "1V-LSD" + ], + "aliasesStr": "1V-LSD", + "toxicity": [ + "extremely low toxicity relative to dose" + ], + "addictionPotential": "non-addictive with a low abuse potential", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "5-7 days", + "zero": "14 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "15 µg" + }, + { + "name": "Light", + "value": "25-75 µg" + }, + { + "name": "Common", + "value": "75-150 µg" + }, + { + "name": "Strong", + "value": "150-300 µg" + }, + { + "name": "Heavy", + "value": "300 µg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-120 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "3-5 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "8-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/1cP-AL-LAD", + "name": "1cP-AL-LAD", + "aliases": [ + "1cP-AL-LAD" + ], + "aliasesStr": "1cP-AL-LAD", + "toxicity": [ + "toxic dose is unknown", + "extremely low toxicity" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "5-7 days", + "zero": "14 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 µg" + }, + { + "name": "Light", + "value": "50-100 µg" + }, + { + "name": "Common", + "value": "100-225 µg" + }, + { + "name": "Strong", + "value": "225-350 µg" + }, + { + "name": "Heavy", + "value": "350 µg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "2.5-5 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "2-18 hours" + }, + { + "name": "Total", + "value": "7-10 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/1cP-LSD", + "name": "1cP-LSD", + "aliases": [ + "1cplsd", + "curie", + "1cp" + ], + "aliasesStr": "1cplsd, curie, 1cp", + "summary": "1cP-LSD (1-cyclopropionyl-lysergic acid diethylamide) is a novel lysergamide with little to no history of use. It is said to be a less pushy and shorter lasting version of LSD. Described as having a more gradual onset than 1P-LSD, with a less visual more meditative headspace when compared with LSD.*NOTE: This is a very new research chemical - take all info with a grain of salt.*", + "addictionPotential": "non-addictive with a low abuse potential", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "5-7 days", + "zero": "14 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "15 µg" + }, + { + "name": "Light", + "value": "25-75 µg" + }, + { + "name": "Common", + "value": "75-150 µg" + }, + { + "name": "Strong", + "value": "150-300 µg" + }, + { + "name": "Heavy", + "value": "300 µg" + }, + { + "name": "Light", + "value": "25-50 ug" + }, + { + "name": "Common", + "value": "50-100 ug" + }, + { + "name": "Strong", + "value": "100-200 ug" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-120 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "3-5 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "8-10 hours" + }, + { + "name": "After Effects", + "value": "6-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "15 µg" + }, + { + "name": "Light", + "value": "25-75 µg" + }, + { + "name": "Common", + "value": "75-150 µg" + }, + { + "name": "Strong", + "value": "150-300 µg" + }, + { + "name": "Heavy", + "value": "300 µg" + }, + { + "name": "Light", + "value": "25-50 ug" + }, + { + "name": "Common", + "value": "50-100 ug" + }, + { + "name": "Strong", + "value": "100-200 ug" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-120 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "3-5 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "8-10 hours" + }, + { + "name": "After Effects", + "value": "6-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/1cP-MiPLA", + "name": "1cP-MiPLA", + "aliases": [ + "1cP-MiPLA" + ], + "aliasesStr": "1cP-MiPLA", + "toxicity": [ + "toxic dose is unknown", + "extremely low toxicity" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "5-7 days", + "zero": "14 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 µg" + }, + { + "name": "Light", + "value": "100-150 µg" + }, + { + "name": "Common", + "value": "150-200 µg" + }, + { + "name": "Strong", + "value": "200-250 µg" + }, + { + "name": "Heavy", + "value": "300 µg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-90 minutes" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/2,5-DMA", + "name": "2,5-DMA", + "aliases": [ + "2,5-DMA", + "DOH" + ], + "aliasesStr": "2,5-DMA, DOH", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "after ingestion over the couse of multiple days", + "half": "3-5 days", + "zero": "7-10 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/2-Aminoindane", + "name": "2-Aminoindane", + "aliases": [ + "2-AI" + ], + "aliasesStr": "2-AI", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "1-2 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "MDMA" + }, + { + "status": "Dangerous", + "name": "Cocaine" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/2-FA", + "name": "2-FA", + "aliases": [ + "2-fluoroamphetamine", + "2-fmp", + "2fa" + ], + "aliasesStr": "2-fluoroamphetamine, 2-fmp, 2fa", + "summary": "Stimulant drug of the amphetamine family. Reported as having effects similar to those of Dextroamphetamine, but with a milder euphoria and a comparatively smoother comedown. Has a shorter duration and less empathogenic effect-profile as compared with 4-FA. Thought to produce less neurotoxic metabolites compared to amphetamine.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 10 days" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "15-30 mg" + }, + { + "name": "Common", + "value": "30-50 mg" + }, + { + "name": "Strong", + "value": "50-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + }, + { + "name": "Light", + "value": "5-15 mg", + "note": " Note: Insufflating does not appear to raise the bioavailability than oral ingestion, and can cause damage to nasal cavities." + }, + { + "name": "Common", + "value": "15-30 mg", + "note": " Note: Insufflating does not appear to raise the bioavailability than oral ingestion, and can cause damage to nasal cavities." + }, + { + "name": "Strong", + "value": "30-50 mg", + "note": " Note: Insufflating does not appear to raise the bioavailability than oral ingestion, and can cause damage to nasal cavities." + }, + { + "name": "Heavy", + "value": "50 mg", + "note": " Note: Insufflating does not appear to raise the bioavailability than oral ingestion, and can cause damage to nasal cavities." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-30 minutes" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "1-1.5 hours" + }, + { + "name": "Total", + "value": "2-4 hours" + }, + { + "name": "Onset", + "value": "15-20 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "2-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "15-30 mg" + }, + { + "name": "Common", + "value": "30-50 mg" + }, + { + "name": "Strong", + "value": "50-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + }, + { + "name": "Light", + "value": "5-15 mg", + "note": " Note: Insufflating does not appear to raise the bioavailability than oral ingestion, and can cause damage to nasal cavities." + }, + { + "name": "Common", + "value": "15-30 mg", + "note": " Note: Insufflating does not appear to raise the bioavailability than oral ingestion, and can cause damage to nasal cavities." + }, + { + "name": "Strong", + "value": "30-50 mg", + "note": " Note: Insufflating does not appear to raise the bioavailability than oral ingestion, and can cause damage to nasal cavities." + }, + { + "name": "Heavy", + "value": "50 mg", + "note": " Note: Insufflating does not appear to raise the bioavailability than oral ingestion, and can cause damage to nasal cavities." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-30 minutes" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "1-1.5 hours" + }, + { + "name": "Total", + "value": "2-4 hours" + }, + { + "name": "Onset", + "value": "15-20 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "2-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "GHB" + }, + { + "status": "Caution", + "name": "GBL" + }, + { + "status": "Caution", + "name": "Opioids" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Caffeine" + }, + { + "status": "Caution", + "name": "Ketamine" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Psychedelic" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "PCP" + }, + { + "status": "Unsafe", + "name": "25x-NBOMe" + }, + { + "status": "Unsafe", + "name": "2C-T-x" + }, + { + "status": "Unsafe", + "name": "5-MeO-xxT" + }, + { + "status": "Unsafe", + "name": "DOx" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "ΑMT" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2Fluoroamphetamine.shtml", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/2-FEA", + "name": "2-FEA", + "aliases": [ + "2-fluoroethylamphetamine" + ], + "aliasesStr": "2-fluoroethylamphetamine", + "summary": "Stimulant closely related to 2-FMA. Presumably slightly less potent than the prior. Toxicology and the likes are pretty much completely unknown. Tread with caution.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "15 mg" + }, + { + "name": "Light", + "value": "20-30 mg" + }, + { + "name": "Common", + "value": "30-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "5-10 minutes" + }, + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Peak", + "value": "30-60 minutes" + }, + { + "name": "Offset", + "value": "30-60 minutes" + }, + { + "name": "Afterglow", + "value": "1-3 hours" + }, + { + "name": "Total", + "value": "1-2.5 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "MDMA" + }, + { + "status": "Dangerous", + "name": "Cocaine" + } + ], + "classes": { + "psychoactive": [ + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/2-FMA", + "name": "2-FMA", + "aliases": [ + "2fma" + ], + "aliasesStr": "2fma", + "summary": "A long-acting stimulant often compared to lisdexamphetamine. Thought to lack some of amphetamine's neurotoxic metabolites. Very functional, and for this reason it is commonly used for studying.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "15-25 mg", + "note": " NOTE: Sensitivity varies from person-to-person and with usage factors. Higher doses can often result in long crashes and sleepless nights. Always start low and titrate slowly." + }, + { + "name": "Common", + "value": "25-35 mg", + "note": " NOTE: Sensitivity varies from person-to-person and with usage factors. Higher doses can often result in long crashes and sleepless nights. Always start low and titrate slowly." + }, + { + "name": "Strong", + "value": "35-65 mg", + "note": " NOTE: Sensitivity varies from person-to-person and with usage factors. Higher doses can often result in long crashes and sleepless nights. Always start low and titrate slowly." + }, + { + "name": "Heavy", + "value": "65-80 mg", + "note": " NOTE: Sensitivity varies from person-to-person and with usage factors. Higher doses can often result in long crashes and sleepless nights. Always start low and titrate slowly." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-40 minutes" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "2.5-4 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "4-12 hours" + }, + { + "name": "Total", + "value": "7-9 hours" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Duration", + "value": "6-8 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "10-20 minutes" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "1-3 hours" + }, + { + "name": "Offset", + "value": "1.5-3 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "15-25 mg", + "note": " NOTE: Sensitivity varies from person-to-person and with usage factors. Higher doses can often result in long crashes and sleepless nights. Always start low and titrate slowly." + }, + { + "name": "Common", + "value": "25-35 mg", + "note": " NOTE: Sensitivity varies from person-to-person and with usage factors. Higher doses can often result in long crashes and sleepless nights. Always start low and titrate slowly." + }, + { + "name": "Strong", + "value": "35-65 mg", + "note": " NOTE: Sensitivity varies from person-to-person and with usage factors. Higher doses can often result in long crashes and sleepless nights. Always start low and titrate slowly." + }, + { + "name": "Heavy", + "value": "65-80 mg", + "note": " NOTE: Sensitivity varies from person-to-person and with usage factors. Higher doses can often result in long crashes and sleepless nights. Always start low and titrate slowly." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-40 minutes" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "2.5-4 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "4-12 hours" + }, + { + "name": "Total", + "value": "7-9 hours" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Duration", + "value": "6-8 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "GHB" + }, + { + "status": "Caution", + "name": "GBL" + }, + { + "status": "Caution", + "name": "Opioids" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Caffeine" + }, + { + "status": "Caution", + "name": "Ketamine" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Psychedelic" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "PCP" + }, + { + "status": "Unsafe", + "name": "25x-NBOMe" + }, + { + "status": "Unsafe", + "name": "2C-T-x" + }, + { + "status": "Unsafe", + "name": "5-MeO-xxT" + }, + { + "status": "Unsafe", + "name": "DOx" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "ΑMT" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ], + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/2-Fluorodeschloroketamine", + "name": "2-Fluorodeschloroketamine", + "aliases": [ + "2-Fluoroketamine", + "Fluoroketamine", + "2-FK", + "2-FDCK" + ], + "aliasesStr": "2-Fluoroketamine, Fluoroketamine, 2-FK, 2-FDCK", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dissociative" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-25 mg" + }, + { + "name": "Common", + "value": "25-70 mg" + }, + { + "name": "Strong", + "value": "70-140 mg" + }, + { + "name": "Heavy", + "value": "140 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-50 minutes" + }, + { + "name": "Peak", + "value": "50-100 minutes" + }, + { + "name": "Afterglow", + "value": "3-8 hours" + }, + { + "name": "Total", + "value": "2.5-5 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-45 mg" + }, + { + "name": "Common", + "value": "45-100 mg" + }, + { + "name": "Strong", + "value": "100-175 mg" + }, + { + "name": "Heavy", + "value": "175 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "5-10 minutes" + }, + { + "name": "Onset", + "value": "1-3 minutes" + }, + { + "name": "Afterglow", + "value": "1-4 hours" + }, + { + "name": "Total", + "value": "1.5-3 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Benzodiazepines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Opioids" + }, + { + "status": "Dangerous", + "name": "Tramadol" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/2-Methyl-AP-237", + "name": "2-Methyl-AP-237", + "aliases": [ + "2-Methyl-AP-237", + "Apex", + "2-MAP" + ], + "aliasesStr": "2-Methyl-AP-237, Apex, 2-MAP", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-20 mg" + }, + { + "name": "Strong", + "value": "20-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "10-40 minutes" + }, + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Peak", + "value": "15-20 minutes" + }, + { + "name": "Offset", + "value": "5-60 minutes" + }, + { + "name": "Afterglow", + "value": "4-6 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/25B-NBOH", + "name": "25B-NBOH", + "aliases": [ + "25bnboh", + "nboh-2cb", + "2cb-nboh", + "2c-b-nboh" + ], + "aliasesStr": "25bnboh, nboh-2cb, 2cb-nboh, 2c-b-nboh", + "summary": "A phenethylamine psychedelic and stimulant derivative of 2C-B, this compound is related to and has similar effects to 25b-NBOMe. It is significantly more potent than 2C-B but less potent than 25B-NBOMe. Overdoses of NBOH compounds may cause dangerous vasoconstriction. May induce uncomfortable body load.", + "toxicity": [ + "potentially fatal at heavy dosages" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "1 week", + "zero": "2 weeks" + }, + "crossTolerances": [ + "psychedelic" + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Sublingual", + "dosage": [ + { + "name": "Light", + "value": "200-400 ug", + "note": " NOTE: Do not play around with this substance as there is very little data around." + }, + { + "name": "Common", + "value": "400-800 ug", + "note": " NOTE: Do not play around with this substance as there is very little data around." + }, + { + "name": "Strong", + "value": "800 ug", + "note": " NOTE: Do not play around with this substance as there is very little data around." + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/25B-NBOMe", + "name": "25B-NBOMe", + "aliases": [ + "25b" + ], + "aliasesStr": "25b", + "summary": "Psychedelic Phenethylamine, active in the lower microgram range, that is not active orally.", + "toxicity": [ + "potentially fatal at heavy dosages" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "1 week", + "zero": "2 weeks" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "50 µg" + }, + { + "name": "Light", + "value": "100-300 µg" + }, + { + "name": "Common", + "value": "300-500 µg" + }, + { + "name": "Strong", + "value": "500-700 µg" + }, + { + "name": "Threshold", + "value": "100 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Light", + "value": "100-300 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Common", + "value": "350-500 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Strong", + "value": "500-700 ug", + "note": " Note: Do not exceed 1500ug." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-90 minutes" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "4-6 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "2-6 hours" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "20-40 minutes" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "50 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Light", + "value": "50-200 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Common", + "value": "200-350 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Strong", + "value": "350-500 ", + "note": " Note: Do not exceed 1500ug." + } + ], + "duration": [ + { + "name": "Onset", + "value": "2-5 minutes" + } + ] + }, + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "50 µg" + }, + { + "name": "Light", + "value": "100-300 µg" + }, + { + "name": "Common", + "value": "300-500 µg" + }, + { + "name": "Strong", + "value": "500-700 µg" + }, + { + "name": "Threshold", + "value": "100 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Light", + "value": "100-300 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Common", + "value": "350-500 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Strong", + "value": "500-700 ug", + "note": " Note: Do not exceed 1500ug." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-90 minutes" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "4-6 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "2-6 hours" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "20-40 minutes" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "2C-T-X" + }, + { + "status": "Caution", + "name": "5-MeO-xxt" + }, + { + "status": "Caution", + "name": "Caffeine" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "DOx" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "MDMA" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Unsafe", + "name": "Substituted amphetamines" + }, + { + "status": "Unsafe", + "name": "ΑMT" + }, + { + "status": "Unsafe", + "name": "Cocaine" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_25BNBOMe.shtml", + "reagents": "Marquis: Dark Green. | Mecke: Dark Green. | Mandelin: Red and Green. | Froehde: Yellow | Liebermann: Yellow > Black. | Ehrlich's Reagent: No colour change.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/25C-NBOH", + "name": "25C-NBOH", + "aliases": [], + "aliasesStr": "", + "summary": "A phenethylamine psychedelic and stimulant derivative of 2C-C, this compound is related and has similar effects to 25c-NBOMe. It is significantly more potent than 2C-C but less potent than 25c-NBOMe. Overdoses of NBOH compounds may cause dangerous vasoconstriction. May induce uncomfortable body load.", + "toxicity": [ + "potentially fatal at heavy dosages" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "1 week", + "zero": "2 weeks" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "100 µg" + }, + { + "name": "Light", + "value": "250-500 µg" + }, + { + "name": "Common", + "value": "500-750 µg" + }, + { + "name": "Strong", + "value": "750-1000 µg" + }, + { + "name": "Threshold", + "value": "100-200 ug" + }, + { + "name": "Light", + "value": "300-600 ug" + }, + { + "name": "Common", + "value": "600-1400 ug" + }, + { + "name": "Heavy", + "value": "1400-2000 ug" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-90 minutes" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Afterglow", + "value": "3-6 days" + }, + { + "name": "Total", + "value": "5-7 hours" + } + ] + }, + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "100 µg" + }, + { + "name": "Light", + "value": "250-500 µg" + }, + { + "name": "Common", + "value": "500-750 µg" + }, + { + "name": "Strong", + "value": "750-1000 µg" + }, + { + "name": "Threshold", + "value": "100-200 ug" + }, + { + "name": "Light", + "value": "300-600 ug" + }, + { + "name": "Common", + "value": "600-1400 ug" + }, + { + "name": "Heavy", + "value": "1400-2000 ug" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-90 minutes" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Afterglow", + "value": "3-6 days" + }, + { + "name": "Total", + "value": "5-7 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/25C-NBOMe", + "name": "25C-NBOMe", + "aliases": [ + "25c", + "2c-nbome" + ], + "aliasesStr": "25c, 2c-nbome", + "summary": "A relatively new and popular research chemical. A short acting psychedelic related to 2C-C with similar effects to LSD, though more visual with less of a 'head-trip.' Frequently mis-sold as LSD. Causes an uncomfortable body load and has caused several deaths even within regular dose ranges.", + "toxicity": [ + "fatal at heavy dosages" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "7 days", + "zero": "14 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "50 µg" + }, + { + "name": "Light", + "value": "100-300 µg" + }, + { + "name": "Common", + "value": "300-700 µg" + }, + { + "name": "Strong", + "value": "700-1000 µg" + }, + { + "name": "Threshold", + "value": "50-250 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Light", + "value": "250-500 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Common", + "value": "500-750 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Strong", + "value": "750-1250 ug", + "note": " Note: Do not exceed 1500ug." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-90 minutes" + }, + { + "name": "Peak", + "value": "4-6 hours" + }, + { + "name": "Offset", + "value": "1-4 hours" + }, + { + "name": "Total", + "value": "8-10 hours" + } + ] + }, + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "50 µg" + }, + { + "name": "Light", + "value": "100-300 µg" + }, + { + "name": "Common", + "value": "300-700 µg" + }, + { + "name": "Strong", + "value": "700-1000 µg" + }, + { + "name": "Threshold", + "value": "50-250 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Light", + "value": "250-500 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Common", + "value": "500-750 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Strong", + "value": "750-1250 ug", + "note": " Note: Do not exceed 1500ug." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-90 minutes" + }, + { + "name": "Peak", + "value": "4-6 hours" + }, + { + "name": "Offset", + "value": "1-4 hours" + }, + { + "name": "Total", + "value": "8-10 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "2C-T-X" + }, + { + "status": "Caution", + "name": "5-MeO-xxt" + }, + { + "status": "Caution", + "name": "Caffeine" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "DOx" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "MDMA" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Unsafe", + "name": "Substituted amphetamines" + }, + { + "status": "Unsafe", + "name": "ΑMT" + }, + { + "status": "Unsafe", + "name": "Cocaine" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_25CNBOMe.shtml", + "reagents": "Marquis: Slow Purple. | Mecke: Brown. | Mandelin: No colour change. | Froehde: Yellow. | Liebermann: Yellow > Black. | Ehrlich's Reagent: No colour change.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/25D-NBOMe", + "name": "25D-NBOMe", + "aliases": [ + "2c-d-nbome", + "25d" + ], + "aliasesStr": "2c-d-nbome, 25d", + "summary": "Uncommon analogue of 2C-D. Extremely potent psychedelic with stimulating qualities. Could cause dangerous vasoconstriction at high doses. May induce uncomfortable body load.", + "crossTolerances": [ + "psychedelics" + ], + "roas": [ + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "300 µg" + }, + { + "name": "Light", + "value": "300-800 µg" + }, + { + "name": "Common", + "value": "800-1000 µg" + }, + { + "name": "Strong", + "value": "1000-1200 µg" + }, + { + "name": "Threshold", + "value": "100-300 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Light", + "value": "300-500 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Common", + "value": "500-1000 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Strong", + "value": "1000-1250 ug", + "note": " Note: Do not exceed 1500ug." + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + } + ] + }, + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "300 µg" + }, + { + "name": "Light", + "value": "300-800 µg" + }, + { + "name": "Common", + "value": "800-1000 µg" + }, + { + "name": "Strong", + "value": "1000-1200 µg" + }, + { + "name": "Threshold", + "value": "100-300 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Light", + "value": "300-500 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Common", + "value": "500-1000 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Strong", + "value": "1000-1250 ug", + "note": " Note: Do not exceed 1500ug." + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "2C-T-X" + }, + { + "status": "Caution", + "name": "5-MeO-xxt" + }, + { + "status": "Caution", + "name": "Caffeine" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "DOx" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "MDMA" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Unsafe", + "name": "Substituted amphetamines" + }, + { + "status": "Unsafe", + "name": "ΑMT" + }, + { + "status": "Unsafe", + "name": "Cocaine" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_25DNBOMe.shtml", + "reagents": "Marquis: Orange > Red. | Mecke: Brown > Green. | Mandelin: Red and Green. | Liebermann: Yellow > Black. | Simon's: Red > Brown. | Ehrlich: No colour change.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/25E-NBOH", + "name": "25E-NBOH" + }, + { + "url": "https://psychonautwiki.org/wiki/25I-NBOH", + "name": "25I-NBOH", + "aliases": [ + "nboh-2ci", + "cimbi-27" + ], + "aliasesStr": "nboh-2ci, cimbi-27", + "summary": "A phenethylamine psychedelic and stimulant derivative of 2C-I, this compound is related and has similar effects to 25i-NBOMe. It is significantly more potent than 2C-I but less potent than 25i-NBOMe. Overdoses of NBOH compounds may cause dangerous vasoconstriction. May induce uncomfortable body load.", + "toxicity": [ + "potentially fatal at heavy dosages" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "1 week", + "zero": "2 weeks" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "50 µg" + }, + { + "name": "Light", + "value": "200-500 µg" + }, + { + "name": "Common", + "value": "500-900 µg" + }, + { + "name": "Strong", + "value": "900-1400 µg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-90 minutes" + }, + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Peak", + "value": "2-3.5 hours" + }, + { + "name": "Offset", + "value": "1.5-2.5 hours" + }, + { + "name": "Afterglow", + "value": "3-12 days" + }, + { + "name": "Total", + "value": "5-8 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "166 ug" + }, + { + "name": "Light", + "value": "416 ug" + }, + { + "name": "Common", + "value": "800-1400 ug" + }, + { + "name": "Strong", + "value": "1400 ug" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "5-10 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_25INBOH.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/25I-NBOMe", + "name": "25I-NBOMe", + "aliases": [ + "25i", + "2-c-i-nbome", + "25-i" + ], + "aliasesStr": "25i, 2-c-i-nbome, 25-i", + "summary": "A relatively new and popular research chemical with psychedelic properties. Users report an uncomfortable body load with very strong visuals, though with less of a mental aspect than most psychedelics. Commonly mis-sold as LSD, since it is much cheaper to produce. Is considered quite unsafe, and has caused several deaths at 'regular' doses.", + "toxicity": [ + "potentially fatal at heavy dosages" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "1 week", + "zero": "2 weeks" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "50 µg" + }, + { + "name": "Light", + "value": "200-500 µg" + }, + { + "name": "Common", + "value": "500-700 µg" + }, + { + "name": "Strong", + "value": "700-1000 µg" + }, + { + "name": "Threshold", + "value": "50-250 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Light", + "value": "200-500 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Common", + "value": "500-750 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Strong", + "value": "700-1000 ug", + "note": " Note: Do not exceed 1500ug." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-120 minutes" + }, + { + "name": "Onset", + "value": "15-120 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "1-4 hours" + }, + { + "name": "Afterglow", + "value": "3-6 days" + }, + { + "name": "Total", + "value": "6-10 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "50 µg" + }, + { + "name": "Light", + "value": "200-500 µg" + }, + { + "name": "Common", + "value": "500-700 µg" + }, + { + "name": "Strong", + "value": "700-null µg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "10-30 minutes" + }, + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Peak", + "value": "60-120 minutes" + }, + { + "name": "Offset", + "value": "120-180 minutes" + }, + { + "name": "Afterglow", + "value": "1-7 days" + }, + { + "name": "Total", + "value": "4-6 hours" + } + ] + }, + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "50 µg" + }, + { + "name": "Light", + "value": "200-500 µg" + }, + { + "name": "Common", + "value": "500-700 µg" + }, + { + "name": "Strong", + "value": "700-1000 µg" + }, + { + "name": "Threshold", + "value": "50-250 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Light", + "value": "200-500 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Common", + "value": "500-750 ug", + "note": " Note: Do not exceed 1500ug." + }, + { + "name": "Strong", + "value": "700-1000 ug", + "note": " Note: Do not exceed 1500ug." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-120 minutes" + }, + { + "name": "Onset", + "value": "15-120 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "1-4 hours" + }, + { + "name": "Afterglow", + "value": "3-6 days" + }, + { + "name": "Total", + "value": "6-10 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "2C-T-X" + }, + { + "status": "Caution", + "name": "5-MeO-xxt" + }, + { + "status": "Caution", + "name": "Caffeine" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "DOx" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "MDMA" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Unsafe", + "name": "Substituted amphetamines" + }, + { + "status": "Unsafe", + "name": "ΑMT" + }, + { + "status": "Unsafe", + "name": "Cocaine" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_25INBOMe.shtml", + "reagents": "Marquis: Orange > Black. | Mecke: Brown > Black. | Mandelin: Brown > Black. | Froehde: Yellow | Ehrlich: No colour change.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/25N-NBOMe", + "name": "25N-NBOMe", + "aliases": [ + "2-c-n-nbome", + "25n" + ], + "aliasesStr": "2-c-n-nbome, 25n", + "summary": "A rare, highly potent and yellow psychedelic phenethylamine and derivative of 2C-N. Effects are similar to other NBOMe compounds, with hallucinations, intense body load, stimulation and vasoconstriction. At high doses vasoconstriction can be dangerous, exercise caution.", + "toxicity": [ + "potentially fatal at heavy dosages" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "100 µg" + }, + { + "name": "Light", + "value": "100-300 µg" + }, + { + "name": "Common", + "value": "300-800 µg" + }, + { + "name": "Strong", + "value": "800-1300 µg" + }, + { + "name": "Light", + "value": "100-300 ug" + }, + { + "name": "Common", + "value": "300-800 ug" + }, + { + "name": "Strong", + "value": "800-1300 ug" + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-75 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "5-10 hours" + }, + { + "name": "Total", + "value": "5-10 hours" + } + ] + }, + { + "name": "Buccal", + "dosage": [ + { + "name": "Light", + "value": "100-300 ug" + }, + { + "name": "Common", + "value": "300-800 ug" + }, + { + "name": "Strong", + "value": "800-1300 ug" + } + ] + }, + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "100 µg" + }, + { + "name": "Light", + "value": "100-300 µg" + }, + { + "name": "Common", + "value": "300-800 µg" + }, + { + "name": "Strong", + "value": "800-1300 µg" + }, + { + "name": "Light", + "value": "100-300 ug" + }, + { + "name": "Common", + "value": "300-800 ug" + }, + { + "name": "Strong", + "value": "800-1300 ug" + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-75 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "5-10 hours" + }, + { + "name": "Total", + "value": "5-10 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "2C-T-X" + }, + { + "status": "Caution", + "name": "5-MeO-xxt" + }, + { + "status": "Caution", + "name": "Caffeine" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "DOx" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "MDMA" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Unsafe", + "name": "Substituted amphetamines" + }, + { + "status": "Unsafe", + "name": "ΑMT" + }, + { + "status": "Unsafe", + "name": "Cocaine" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "reagents": "Marquis: Red > Brown. | Mecke: Blue > Black. | Mandelin: Blue > Black. | Froehde: Brown. | Liebermann: Brown. | Simon's: Red > Brown. | Ehrlich: No colour change.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/25x-NBOH", + "name": "25x-NBOH", + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "1 week", + "zero": "2 weeks" + }, + "crossTolerances": [ + "psychedelic" + ], + "interactions": [ + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/25x-NBOMe", + "name": "25x-NBOMe", + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "1 week", + "zero": "2 weeks" + }, + "crossTolerances": [ + "psychedelic" + ], + "interactions": [ + { + "status": "Caution", + "name": "2C-T-X" + }, + { + "status": "Caution", + "name": "5-MeO-xxt" + }, + { + "status": "Caution", + "name": "Caffeine" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "DOx" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "MDMA" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Unsafe", + "name": "Substituted amphetamines" + }, + { + "status": "Unsafe", + "name": "ΑMT" + }, + { + "status": "Unsafe", + "name": "Cocaine" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "Lithium" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/2C-B", + "name": "2C-B", + "aliases": [ + "bees", + "nexus", + "2cb", + "2cb", + "2-cb" + ], + "aliasesStr": "bees, nexus, 2cb, 2cb, 2-cb", + "summary": "A popular psychedelic in the phenethylamine family. Provides empathic experiences at lower doses and strong visual and psychedelic experiences at higher doses. Commonly used as a party drug as it is more clear-headed than most psychedelics. 2C-B has been in use since the early 1990s", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "non-addictive with a low potential for abuse", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-45 mg" + }, + { + "name": "Heavy", + "value": "45 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "60-90 minutes" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "60-90 minutes" + }, + { + "name": "Offset", + "value": "2.5-3.5 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "5-7 hours" + }, + { + "name": "Onset", + "value": "20-75 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "2-4 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "5-8 mg" + }, + { + "name": "Common", + "value": "8-12 mg" + }, + { + "name": "Strong", + "value": "12-23 mg" + }, + { + "name": "Heavy", + "value": "23 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + }, + { + "name": "Heavy", + "value": "30 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "4-7 hours" + }, + { + "name": "Onset", + "value": "1-10 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + } + ] + }, + { + "name": "Rectal", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "5-8 mg" + }, + { + "name": "Common", + "value": "8-12 mg" + }, + { + "name": "Strong", + "value": "12-23 mg" + }, + { + "name": "Heavy", + "value": "23 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + }, + { + "name": "Heavy", + "value": "30 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "4-7 hours" + }, + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "5-8 mg" + }, + { + "name": "Common", + "value": "8-12 mg" + }, + { + "name": "Strong", + "value": "12-23 mg" + }, + { + "name": "Heavy", + "value": "23 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + }, + { + "name": "Heavy", + "value": "30 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "4-7 hours" + }, + { + "name": "Onset", + "value": "1-10 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-45 mg" + }, + { + "name": "Heavy", + "value": "45 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "60-90 minutes" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "60-90 minutes" + }, + { + "name": "Offset", + "value": "2.5-3.5 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "5-7 hours" + }, + { + "name": "Onset", + "value": "20-75 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "2-4 hours" + } + ] + }, + { + "name": "Rectal", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "5-8 mg" + }, + { + "name": "Common", + "value": "8-12 mg" + }, + { + "name": "Strong", + "value": "12-23 mg" + }, + { + "name": "Heavy", + "value": "23 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + }, + { + "name": "Heavy", + "value": "30 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "4-7 hours" + }, + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CB.shtml", + "reagents": "Marquis: Yellow > Green. | Mecke: Yellow > Green/Brown. | Mandelin: Green. | Froehde: Yellow > Green. | Liebermann: Yellow > Black. | Simon's No colour change or Purple. | Ehrlich: No colour change.", + "classes": { + "psychoactive": [ + "Empathogen", + "Psychedelic" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/2C-B-FLY", + "name": "2C-B-FLY", + "aliases": [ + "2cb-fly", + "2cbfly" + ], + "aliasesStr": "2cb-fly, 2cbfly", + "summary": "Psychedelic phenethylamine that is the dihydrodifuran analog of 2C-B.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-18 mg" + }, + { + "name": "Strong", + "value": "18-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-18 mg" + }, + { + "name": "Strong", + "value": "18-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "7-12 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-18 mg" + }, + { + "name": "Strong", + "value": "18-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-18 mg" + }, + { + "name": "Strong", + "value": "18-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "7-12 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CBFly.shtml", + "reagents": "Marquis: Yellow > Brown Green. | Mecke: Yellow > Brown Green. | Mandelin: Brown.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/2C-C", + "name": "2C-C", + "aliases": [ + "2cc" + ], + "aliasesStr": "2cc", + "summary": "A short-acting psychedelic research chemical of the 2c-x family. Often described as being less stimulating than the other 2c-x, and is a relatively unique psychedelic in this respect.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "15-30 mg" + }, + { + "name": "Common", + "value": "30-50 mg" + }, + { + "name": "Strong", + "value": "50-90 mg" + }, + { + "name": "Heavy", + "value": "90 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-30 mg" + }, + { + "name": "Heavy", + "value": "30-40 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-90 minutes" + }, + { + "name": "Onset", + "value": "20-45 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-3 hours" + }, + { + "name": "Afterglow", + "value": "4-12 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "30-120 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "15-30 mg" + }, + { + "name": "Common", + "value": "30-50 mg" + }, + { + "name": "Strong", + "value": "50-90 mg" + }, + { + "name": "Heavy", + "value": "90 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-30 mg" + }, + { + "name": "Heavy", + "value": "30-40 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-90 minutes" + }, + { + "name": "Onset", + "value": "20-45 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-3 hours" + }, + { + "name": "Afterglow", + "value": "4-12 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "30-120 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CC.shtml", + "reagents": "Marquis: Yellow > Green Brown. | Mecke: Yellow Green > Brown. | Mandelin: Orange > Yellow. | Froehde: Yellow > Green. | Liebermann: Yellow > Black > Clear. | Simon's: Pink > Brown. | Ehrlich: No colour change.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/2C-D", + "name": "2C-D", + "aliases": [ + "2cd", + "2c-m", + "2cm" + ], + "aliasesStr": "2cd, 2c-m, 2cm", + "summary": "A fairly generic psychedelic famed for being usable as \"psychedelic tofu\". Little character of its own but pleasant in combinations.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "10-25 mg" + }, + { + "name": "Common", + "value": "25-50 mg" + }, + { + "name": "Strong", + "value": "50-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + }, + { + "name": "Threshold", + "value": "3-4 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "20-50 mg" + }, + { + "name": "Strong", + "value": "50-100 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-40 minutes" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "1.5-2.5 hours" + }, + { + "name": "Offset", + "value": "0.5-1.5 hours" + }, + { + "name": "Afterglow", + "value": "1-4 hours" + }, + { + "name": "Total", + "value": "3-5 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "10-25 mg" + }, + { + "name": "Common", + "value": "25-50 mg" + }, + { + "name": "Strong", + "value": "50-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + }, + { + "name": "Threshold", + "value": "3-4 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "20-50 mg" + }, + { + "name": "Strong", + "value": "50-100 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-40 minutes" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "1.5-2.5 hours" + }, + { + "name": "Offset", + "value": "0.5-1.5 hours" + }, + { + "name": "Afterglow", + "value": "1-4 hours" + }, + { + "name": "Total", + "value": "3-5 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CD.shtml", + "reagents": "Marquis: Yellow > Brown. | Mecke: Green > Brown. | Mandelin: Green/Yellow. | Simon's Brown > Red. | Ehrlich: No colour change.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/2C-E", + "name": "2C-E", + "aliases": [ + "2ce" + ], + "aliasesStr": "2ce", + "summary": "An intense psychedelic drug with very strong visuals, sometimes criticised for its relatively uncomfortable body load. Otherwise, effects are comparable to other 2c-x drugs.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-30 mg" + }, + { + "name": "Heavy", + "value": "30 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-30 mg" + }, + { + "name": "Heavy", + "value": "25-40 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Duration", + "value": "6-14 hours" + }, + { + "name": "After Effects", + "value": "2-6 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "1-4 mg" + }, + { + "name": "Common", + "value": "4-7 mg" + }, + { + "name": "Strong", + "value": "7-14 mg" + }, + { + "name": "Heavy", + "value": "14 mg" + }, + { + "name": "Light", + "value": "1-3 mg" + }, + { + "name": "Common", + "value": "3-7 mg" + }, + { + "name": "Strong", + "value": "6-10 mg" + }, + { + "name": "Heavy", + "value": "10 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-2 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "1-4 mg" + }, + { + "name": "Common", + "value": "4-7 mg" + }, + { + "name": "Strong", + "value": "7-14 mg" + }, + { + "name": "Heavy", + "value": "14 mg" + }, + { + "name": "Light", + "value": "1-3 mg" + }, + { + "name": "Common", + "value": "3-7 mg" + }, + { + "name": "Strong", + "value": "6-10 mg" + }, + { + "name": "Heavy", + "value": "10 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-2 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-30 mg" + }, + { + "name": "Heavy", + "value": "30 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-30 mg" + }, + { + "name": "Heavy", + "value": "25-40 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Duration", + "value": "6-14 hours" + }, + { + "name": "After Effects", + "value": "2-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CE.shtml", + "reagents": "Marquis: Yellow-Pale Brown. | Mecke: Yellow > Brown. | Mandelin: Yellow-Green. | Froehde: Yellow. | Liebermann: Yellow > Black. | Simon's: No colour change. | Ehrlich: No colour change.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/2C-H", + "name": "2C-H", + "aliases": [ + "2C-H", + "DMPEA" + ], + "aliasesStr": "2C-H, DMPEA", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3-5 days", + "zero": "7-10 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/2C-I", + "name": "2C-I", + "aliases": [ + "2ci" + ], + "aliasesStr": "2ci", + "summary": "A psychedelic similar to the more well-known 2C-B. Users frequently report very vivid and bright open-eye visuals and more mild closed-eye visuals compared to 2C-B and other drugs in the 2C family. Can also be more stimulating than 2C-B along with having a slight body load for some users. Less safe at high doses compared to 2C-B", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3-5 days", + "zero": "7-10 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + }, + { + "name": "Heavy", + "value": "30 mg" + }, + { + "name": "Threshold", + "value": "2-5 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-90 minutes" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "45-120 minutes" + }, + { + "name": "Duration", + "value": "4-12 hours" + }, + { + "name": "After Effects", + "value": "4-12 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "0.5-2 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10 mg" + } + ], + "duration": [ + { + "name": "Duration", + "value": "4-8 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + }, + { + "name": "Heavy", + "value": "30 mg" + }, + { + "name": "Threshold", + "value": "2-5 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-90 minutes" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "45-120 minutes" + }, + { + "name": "Duration", + "value": "4-12 hours" + }, + { + "name": "After Effects", + "value": "4-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CI.shtml", + "reagents": "Marquis: Yellow > Green/Blue. | Mecke: Brown > Black. | Mandelin: (Pale) Brown > Black. | Simon's: Red > Orange. | Ehrlich: Brown.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/2C-P", + "name": "2C-P", + "aliases": [ + "2cp" + ], + "aliasesStr": "2cp", + "summary": "A synthetic phenylethlyamine that is sometimes compared in effects to 2C-E, yet with a much longer duration. With a much more pronouced bodyload. Is one of the most potent of the 2C-X series.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "low potential for abuse and dependence", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-6 mg" + }, + { + "name": "Common", + "value": "6-10 mg" + }, + { + "name": "Strong", + "value": "10-16 mg" + }, + { + "name": "Heavy", + "value": "16 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-6 mg" + }, + { + "name": "Strong", + "value": "6-10 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "2-4 hours" + }, + { + "name": "Onset", + "value": "1-3 hours" + }, + { + "name": "Peak", + "value": "4-8 hours" + }, + { + "name": "Offset", + "value": "3-6 hours" + }, + { + "name": "Afterglow", + "value": "8-48 hours" + }, + { + "name": "Total", + "value": "10-20 hours" + }, + { + "name": "Onset", + "value": "60-180 minutes" + }, + { + "name": "Duration", + "value": "10-16 hours" + }, + { + "name": "After Effects", + "value": "6-24 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "1-3 mg" + }, + { + "name": "Common", + "value": "3-5 mg" + }, + { + "name": "Strong", + "value": "5-10 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-6 mg" + }, + { + "name": "Common", + "value": "6-10 mg" + }, + { + "name": "Strong", + "value": "10-16 mg" + }, + { + "name": "Heavy", + "value": "16 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-6 mg" + }, + { + "name": "Strong", + "value": "6-10 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "2-4 hours" + }, + { + "name": "Onset", + "value": "1-3 hours" + }, + { + "name": "Peak", + "value": "4-8 hours" + }, + { + "name": "Offset", + "value": "3-6 hours" + }, + { + "name": "Afterglow", + "value": "8-48 hours" + }, + { + "name": "Total", + "value": "10-20 hours" + }, + { + "name": "Onset", + "value": "60-180 minutes" + }, + { + "name": "Duration", + "value": "10-16 hours" + }, + { + "name": "After Effects", + "value": "6-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CP.shtml", + "reagents": "Marquis: Yellow. | Mecke: Green > Brown. | Mandelin: Green. | Froehde: Green. | Liebermann: Green. | Ehrlich: No colour change.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/2C-T", + "name": "2C-T", + "aliases": [ + "2ct" + ], + "aliasesStr": "2ct", + "summary": "A very rare psychedelic phenylethylamine, that is quite lovely.", + "toxicity": [ + "no negative health effects attributed to trying this drug" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "40-60 mg" + }, + { + "name": "Common", + "value": "60-100 mg" + }, + { + "name": "Strong", + "value": "100-120 mg" + }, + { + "name": "Heavy", + "value": "125 mg" + }, + { + "name": "Light", + "value": "50-60 mg" + }, + { + "name": "Common", + "value": "60-90 mg" + }, + { + "name": "Strong", + "value": "90-120 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Peak", + "value": "30-115 minutes" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "1-2 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "25-60 minutes" + }, + { + "name": "Duration", + "value": "2-6 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "40-60 mg" + }, + { + "name": "Common", + "value": "60-100 mg" + }, + { + "name": "Strong", + "value": "100-120 mg" + }, + { + "name": "Heavy", + "value": "125 mg" + }, + { + "name": "Light", + "value": "50-60 mg" + }, + { + "name": "Common", + "value": "60-90 mg" + }, + { + "name": "Strong", + "value": "90-120 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Peak", + "value": "30-115 minutes" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "1-2 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "25-60 minutes" + }, + { + "name": "Duration", + "value": "2-6 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Empathogen", + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/2C-T-2", + "name": "2C-T-2", + "aliases": [ + "2ct2" + ], + "aliasesStr": "2ct2", + "summary": "An unusual psychedelic with similar effects to 2C-B and a slightly longer duration, but maligned because of some deaths in the 2000s. Also similar to 2c-t-7, but with a shorter duration. Potentially unsafe with stimulants and empathogens.", + "toxicity": [ + "no negative health effects attributed to trying this drug" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + }, + { + "name": "Heavy", + "value": "30 mg" + }, + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-25 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "2.5-5 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "2-6 hours" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "3-7 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + }, + { + "name": "Heavy", + "value": "30 mg" + }, + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-25 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "2.5-5 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "2-6 hours" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CT2.shtml", + "reagents": "Marquis: Fizzes Pale Orange. | Mecke: Orange > Purple. | Mandelin: Purple. | Froehde: Orange > Purple | Liebermann: Red or Purple. | Ehrlich: No colour change.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/2C-T-21", + "name": "2C-T-21", + "aliases": [], + "aliasesStr": "", + "summary": "A rare psychedelic phenethylamine.", + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-12 mg" + }, + { + "name": "Strong", + "value": "12-15 mg" + }, + { + "name": "Heavy", + "value": "15 mg" + }, + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-8 mg" + }, + { + "name": "Heavy", + "value": "8-12 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "90-120 minutes" + }, + { + "name": "Peak", + "value": "3-4 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "10-12 hours" + }, + { + "name": "Onset", + "value": "15-40 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "2-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-12 mg" + }, + { + "name": "Strong", + "value": "12-15 mg" + }, + { + "name": "Heavy", + "value": "15 mg" + }, + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-8 mg" + }, + { + "name": "Heavy", + "value": "8-12 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "90-120 minutes" + }, + { + "name": "Peak", + "value": "3-4 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "10-12 hours" + }, + { + "name": "Onset", + "value": "15-40 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "2-12 hours" + } + ] + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CT21.shtml", + "reagents": "Marquis: Fizzes Light Orange. | Mecke: Dark Purple. | Simon's: Greenish Blue.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/2C-T-7", + "name": "2C-T-7", + "aliases": [ + "2ct7" + ], + "aliasesStr": "2ct7", + "summary": "A relatively uncommon psychedelic phenethylamine and possible MAOI. Long lasting, an possesses an unpredictable dosage curve. Questionable safety in combination with most things.", + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + }, + { + "name": "Light", + "value": "10-20 mg", + "note": " NOTE: 2C-T-7 reacts widely in varying ways. Start low, work your way up." + }, + { + "name": "Common", + "value": "15-30 mg", + "note": " NOTE: 2C-T-7 reacts widely in varying ways. Start low, work your way up." + }, + { + "name": "Strong", + "value": "30-40 mg", + "note": " NOTE: 2C-T-7 reacts widely in varying ways. Start low, work your way up." + }, + { + "name": "Heavy", + "value": "40 mg", + "note": " NOTE: 2C-T-7 reacts widely in varying ways. Start low, work your way up." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "10-30 minutes" + }, + { + "name": "Onset", + "value": "60-90 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "1-3 hours" + }, + { + "name": "Afterglow", + "value": "2-8 hours" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "20-140 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "4-12 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-15 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-60 minutes" + }, + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "1-2 hours" + }, + { + "name": "Total", + "value": "3-7 hours" + }, + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + }, + { + "name": "Light", + "value": "10-20 mg", + "note": " NOTE: 2C-T-7 reacts widely in varying ways. Start low, work your way up." + }, + { + "name": "Common", + "value": "15-30 mg", + "note": " NOTE: 2C-T-7 reacts widely in varying ways. Start low, work your way up." + }, + { + "name": "Strong", + "value": "30-40 mg", + "note": " NOTE: 2C-T-7 reacts widely in varying ways. Start low, work your way up." + }, + { + "name": "Heavy", + "value": "40 mg", + "note": " NOTE: 2C-T-7 reacts widely in varying ways. Start low, work your way up." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "10-30 minutes" + }, + { + "name": "Onset", + "value": "60-90 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "1-3 hours" + }, + { + "name": "Afterglow", + "value": "2-8 hours" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "20-140 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "4-12 hours" + } + ] + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CT7.shtml", + "reagents": "Marquis: Fizzes Pale Orange. | Mecke: Red > Purple. | Mandelin: Red > Purple. | Froehde: Violet Orange | Liebermann: Deep Purple. | Simon's Red > Brown. | Ehrlich: No colour change.", + "classes": { + "psychoactive": [ + "Empathogen", + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/2C-T-x", + "name": "2C-T-x" + }, + { + "url": "https://psychonautwiki.org/wiki/2C-x", + "name": "2C-x", + "interactions": [ + { + "status": "Caution", + "name": "5-meo-xxt" + }, + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Caution", + "name": "maois" + }, + { + "status": "Caution", + "name": "nbomes" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "ΑMT" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/2M2B", + "name": "2M2B", + "aliases": [ + "2M2B", + "2-methyl-2-butanol" + ], + "aliasesStr": "2M2B, 2-methyl-2-butanol", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "GABA", + "depressants" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mL" + }, + { + "name": "Light", + "value": "1-5 mL" + }, + { + "name": "Common", + "value": "5-10 mL" + }, + { + "name": "Strong", + "value": "10-15 mL" + }, + { + "name": "Heavy", + "value": "15 mL" + } + ], + "duration": [ + { + "name": "Peak", + "value": "6-8 hours" + }, + { + "name": "Offset", + "value": "4-6 hours" + }, + { + "name": "Total", + "value": "8-14 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + }, + { + "status": "Dangerous", + "name": "Dissociatives" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/3,4-CTMP", + "name": "3,4-CTMP", + "aliases": [ + "34ctmp", + "3,4-dichloromethylphenidate" + ], + "aliasesStr": "34ctmp, 3,4-dichloromethylphenidate", + "summary": "A strong stimulant, NDRI and analogue of methylphenidate. Has increased in popularity in recent years. Said to be seven times more potent than methylphenidate but with a slower onset, however discrimination studies have found it to be more addictive than cocaine.", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-6 mg" + }, + { + "name": "Strong", + "value": "6-8 mg" + }, + { + "name": "Heavy", + "value": "8 mg" + }, + { + "name": "Threshold", + "value": "1-2 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-6 mg" + }, + { + "name": "Heavy", + "value": "6-10 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "2-24 hours" + }, + { + "name": "Total", + "value": "6-18 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "4-18 hours" + }, + { + "name": "After Effects", + "value": "2-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-6 mg" + }, + { + "name": "Strong", + "value": "6-8 mg" + }, + { + "name": "Heavy", + "value": "8 mg" + }, + { + "name": "Threshold", + "value": "1-2 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-6 mg" + }, + { + "name": "Heavy", + "value": "6-10 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "2-24 hours" + }, + { + "name": "Total", + "value": "6-18 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "4-18 hours" + }, + { + "name": "After Effects", + "value": "2-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_34Dichloromethylphenidate.shtml", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/3-Cl-PCP", + "name": "3-Cl-PCP", + "toxicity": [ + "toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for adverse side effects such as psychosis", + "tolerance": { + "full": "with prolonged and repeated use", + "half": "4 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dissociative" + ], + "interactions": [ + { + "status": "Dangerous", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/3-FA", + "name": "3-FA", + "aliases": [ + "3fa" + ], + "aliasesStr": "3fa", + "summary": "A stimulant that is close to equipotent with methamphetamine and acts as a monoamine releasing agent , but has more selectivity for dopamine/noradrenaline over serotonin.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 10 days" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "20-30 mg" + }, + { + "name": "Common", + "value": "30-50 mg" + }, + { + "name": "Strong", + "value": "50-70 mg" + }, + { + "name": "Heavy", + "value": "70 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-60 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-1.5 hours" + }, + { + "name": "Afterglow", + "value": "2-6 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "20-30 mg" + }, + { + "name": "Common", + "value": "30-50 mg" + }, + { + "name": "Strong", + "value": "50-70 mg" + }, + { + "name": "Heavy", + "value": "70 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-60 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-1.5 hours" + }, + { + "name": "Afterglow", + "value": "2-6 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "GHB" + }, + { + "status": "Caution", + "name": "GBL" + }, + { + "status": "Caution", + "name": "Opioids" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Caffeine" + }, + { + "status": "Caution", + "name": "Ketamine" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Psychedelic" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "PCP" + }, + { + "status": "Unsafe", + "name": "25x-NBOMe" + }, + { + "status": "Unsafe", + "name": "2C-T-x" + }, + { + "status": "Unsafe", + "name": "5-MeO-xxT" + }, + { + "status": "Unsafe", + "name": "DOx" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "ΑMT" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ], + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/3-FEA", + "name": "3-FEA", + "aliases": [], + "aliasesStr": "", + "summary": "A novel fluorinated amphetamine with serotonergic properties. Effects are similar to 4-FA, in that it provides slight dopamine and norepinephrine release or reuptake inhibition, as well as serotonin release and reuptake inhibition. Effects on the serotonin side are more pronounced than dopamine and norepinephrine, the latter two being almost negligibly.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "2 - 3 days", + "zero": "3-7 days" + }, + "crossTolerances": [ + "dopamine", + "serotonin|serotonergic", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "15 mg" + }, + { + "name": "Light", + "value": "20-35 mg" + }, + { + "name": "Common", + "value": "35-70 mg" + }, + { + "name": "Strong", + "value": "70-90 mg" + }, + { + "name": "Heavy", + "value": "90 mg" + }, + { + "name": "Light", + "value": "10-30 mg" + }, + { + "name": "Common", + "value": "30-50 mg" + }, + { + "name": "Strong", + "value": "50-70 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "1.5-2.5 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "6-12 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "20-50 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "15 mg" + }, + { + "name": "Light", + "value": "20-35 mg" + }, + { + "name": "Common", + "value": "35-60 mg" + }, + { + "name": "Strong", + "value": "50-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "5-10 minutes" + }, + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Peak", + "value": "30-60 minutes" + }, + { + "name": "Offset", + "value": "30-60 minutes" + }, + { + "name": "Afterglow", + "value": "1-3 hours" + }, + { + "name": "Total", + "value": "1-2 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "15 mg" + }, + { + "name": "Light", + "value": "20-35 mg" + }, + { + "name": "Common", + "value": "35-70 mg" + }, + { + "name": "Strong", + "value": "70-90 mg" + }, + { + "name": "Heavy", + "value": "90 mg" + }, + { + "name": "Light", + "value": "10-30 mg" + }, + { + "name": "Common", + "value": "30-50 mg" + }, + { + "name": "Strong", + "value": "50-70 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "1.5-2.5 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "6-12 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "20-50 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "GHB" + }, + { + "status": "Caution", + "name": "GBL" + }, + { + "status": "Caution", + "name": "Opioids" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Caffeine" + }, + { + "status": "Caution", + "name": "Ketamine" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Psychedelic" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "PCP" + }, + { + "status": "Unsafe", + "name": "25x-NBOMe" + }, + { + "status": "Unsafe", + "name": "2C-T-x" + }, + { + "status": "Unsafe", + "name": "5-MeO-xxT" + }, + { + "status": "Unsafe", + "name": "DOx" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "ΑMT" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ], + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/3-FMA", + "name": "3-FMA", + "aliases": [ + "3fma" + ], + "aliasesStr": "3fma", + "summary": "Stimulant drug in the amphetamine family", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 10 days" + }, + "crossTolerances": [ + "dopamine", + "serotonin|serotonergic", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-35 mg" + }, + { + "name": "Strong", + "value": "35-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-60 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "1-3 hours" + }, + { + "name": "Afterglow", + "value": "6-12 hours" + }, + { + "name": "Total", + "value": "3-7 hours" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-35 mg" + }, + { + "name": "Strong", + "value": "35-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-60 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "1-3 hours" + }, + { + "name": "Afterglow", + "value": "6-12 hours" + }, + { + "name": "Total", + "value": "3-7 hours" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "GHB" + }, + { + "status": "Caution", + "name": "GBL" + }, + { + "status": "Caution", + "name": "Opioids" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Caffeine" + }, + { + "status": "Caution", + "name": "Ketamine" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Psychedelic" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "PCP" + }, + { + "status": "Unsafe", + "name": "25x-NBOMe" + }, + { + "status": "Unsafe", + "name": "2C-T-x" + }, + { + "status": "Unsafe", + "name": "5-MeO-xxT" + }, + { + "status": "Unsafe", + "name": "DOx" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "ΑMT" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ], + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/3-FPM", + "name": "3-FPM", + "aliases": [ + "3fpm", + "3-fph", + "3f-phenmetrazine", + "3f-p", + "3fp", + "pal-593" + ], + "aliasesStr": "3fpm, 3-fph, 3f-phenmetrazine, 3f-p, 3fp, pal-593", + "summary": "A functional stimulant related to phenmetrazine. Effects similar to amphetamine, but longer and more focused. Observed as being relatively benign in low doses, but seems to cause worrying health effects for heavy users. Pain from insufflation is eye-wateringly intense, but short.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "10-30 mg" + }, + { + "name": "Common", + "value": "30-60 mg" + }, + { + "name": "Strong", + "value": "60-90 mg" + }, + { + "name": "Heavy", + "value": "90 mg" + }, + { + "name": "Threshold", + "value": "5-10 mg", + "note": " NOTE: Repeated dosing appears to lengthen after-effects of sleeplessness / insomnia." + }, + { + "name": "Light", + "value": "10-25 mg", + "note": " NOTE: Repeated dosing appears to lengthen after-effects of sleeplessness / insomnia." + }, + { + "name": "Common", + "value": "25-50 mg", + "note": " NOTE: Repeated dosing appears to lengthen after-effects of sleeplessness / insomnia." + }, + { + "name": "Strong", + "value": "50-70 mg", + "note": " NOTE: Repeated dosing appears to lengthen after-effects of sleeplessness / insomnia." + }, + { + "name": "Heavy", + "value": "70-100 mg", + "note": " NOTE: Repeated dosing appears to lengthen after-effects of sleeplessness / insomnia." + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Afterglow", + "value": "30-90 minutes" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "20-30 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-35 mg" + }, + { + "name": "Strong", + "value": "35-50 mg" + }, + { + "name": "Light", + "value": "10-20 mg", + "note": " NOTE: Repeated dosing appears to lengthen after-effects of sleeplessness / insomnia." + }, + { + "name": "Common", + "value": "20-35 mg", + "note": " NOTE: Repeated dosing appears to lengthen after-effects of sleeplessness / insomnia." + }, + { + "name": "Strong", + "value": "35-50 mg", + "note": " NOTE: Repeated dosing appears to lengthen after-effects of sleeplessness / insomnia." + }, + { + "name": "Heavy", + "value": "50 mg", + "note": " NOTE: Repeated dosing appears to lengthen after-effects of sleeplessness / insomnia." + } + ], + "duration": [ + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "1-5 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-35 mg" + }, + { + "name": "Strong", + "value": "35-50 mg" + }, + { + "name": "Light", + "value": "10-20 mg", + "note": " NOTE: Repeated dosing appears to lengthen after-effects of sleeplessness / insomnia." + }, + { + "name": "Common", + "value": "20-35 mg", + "note": " NOTE: Repeated dosing appears to lengthen after-effects of sleeplessness / insomnia." + }, + { + "name": "Strong", + "value": "35-50 mg", + "note": " NOTE: Repeated dosing appears to lengthen after-effects of sleeplessness / insomnia." + }, + { + "name": "Heavy", + "value": "50 mg", + "note": " NOTE: Repeated dosing appears to lengthen after-effects of sleeplessness / insomnia." + } + ], + "duration": [ + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "1-5 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "10-30 mg" + }, + { + "name": "Common", + "value": "30-60 mg" + }, + { + "name": "Strong", + "value": "60-90 mg" + }, + { + "name": "Heavy", + "value": "90 mg" + }, + { + "name": "Threshold", + "value": "5-10 mg", + "note": " NOTE: Repeated dosing appears to lengthen after-effects of sleeplessness / insomnia." + }, + { + "name": "Light", + "value": "10-25 mg", + "note": " NOTE: Repeated dosing appears to lengthen after-effects of sleeplessness / insomnia." + }, + { + "name": "Common", + "value": "25-50 mg", + "note": " NOTE: Repeated dosing appears to lengthen after-effects of sleeplessness / insomnia." + }, + { + "name": "Strong", + "value": "50-70 mg", + "note": " NOTE: Repeated dosing appears to lengthen after-effects of sleeplessness / insomnia." + }, + { + "name": "Heavy", + "value": "70-100 mg", + "note": " NOTE: Repeated dosing appears to lengthen after-effects of sleeplessness / insomnia." + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Afterglow", + "value": "30-90 minutes" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "20-30 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_3FPhenmetrazine.shtml", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/3-HO-PCE", + "name": "3-HO-PCE", + "aliases": [ + "3hopce" + ], + "aliasesStr": "3hopce", + "summary": "A rare and very potent PCP analogue, eight times more potent than PCP as NMDA receptor antagonist and also a μ-opioid receptor agonist. Similar in structure to methoxetamine.", + "toxicity": [ + "toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a moderate potential for adverse side effects such as psychosis", + "tolerance": { + "full": "with prolonged and repeated use", + "half": "4 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dissociative" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + }, + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-15 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "3-4 hours" + }, + { + "name": "After Effects", + "value": "2 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + }, + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-15 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "3-4 hours" + }, + { + "name": "After Effects", + "value": "2 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + } + ], + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/3-HO-PCP", + "name": "3-HO-PCP", + "aliases": [ + "3hopcp" + ], + "aliasesStr": "3hopcp", + "summary": "An arylcyclohexamine dissociative analogue of PCP, this drug is relatively uncommon, and little information is available. It is reported to not only have dissociative activity but also be an opioid. Some trip reports suggest very negative side-effects including intense muscle tension.", + "toxicity": [ + "toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for adverse side effects such as psychosis", + "tolerance": { + "full": "with prolonged and repeated use", + "half": "4 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dissociative" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-6 mg" + }, + { + "name": "Strong", + "value": "6-8 mg" + }, + { + "name": "Heavy", + "value": "8 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-5 mg" + }, + { + "name": "Strong", + "value": "5 " + } + ], + "duration": [ + { + "name": "Comeup", + "value": "60-90 minutes" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "3-4 hours" + }, + { + "name": "After Effects", + "value": "2 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-6 mg" + }, + { + "name": "Strong", + "value": "6-8 mg" + }, + { + "name": "Heavy", + "value": "8 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-5 mg" + }, + { + "name": "Strong", + "value": "5 " + } + ], + "duration": [ + { + "name": "Comeup", + "value": "60-90 minutes" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "3-4 hours" + }, + { + "name": "After Effects", + "value": "2 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + } + ], + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/3-MMC", + "name": "3-MMC", + "aliases": [ + "3mmc", + "3-methylmethcathinone", + "3methylmethcathinone", + "3-meph", + "3-mephedrone" + ], + "aliasesStr": "3mmc, 3-methylmethcathinone, 3methylmethcathinone, 3-meph, 3-mephedrone", + "summary": "A euphoric stimulant similar to mephedrone but said to lack much of the \"magic.\" Never gained the same popularity. Slightly less potent.", + "addictionPotential": "extremely addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 mg" + }, + { + "name": "Light", + "value": "50-150 mg" + }, + { + "name": "Common", + "value": "150-250 mg" + }, + { + "name": "Strong", + "value": "250-350 mg" + }, + { + "name": "Heavy", + "value": "350 mg" + }, + { + "name": "Light", + "value": "25-75 mg" + }, + { + "name": "Common", + "value": "75-150 mg" + }, + { + "name": "Strong", + "value": "150 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-1.5 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "1 hours" + }, + { + "name": "Duration", + "value": "4-7 hours" + }, + { + "name": "After Effects", + "value": "3-4 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "20-40 mg" + }, + { + "name": "Common", + "value": "40-60 mg" + }, + { + "name": "Strong", + "value": "60-120 mg" + }, + { + "name": "Heavy", + "value": "120 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "10-20 minutes" + }, + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Peak", + "value": "1-1.5 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "1-1.5 hours" + }, + { + "name": "Total", + "value": "2.5-4.5 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 mg" + }, + { + "name": "Light", + "value": "50-150 mg" + }, + { + "name": "Common", + "value": "150-250 mg" + }, + { + "name": "Strong", + "value": "250-350 mg" + }, + { + "name": "Heavy", + "value": "350 mg" + }, + { + "name": "Light", + "value": "25-75 mg" + }, + { + "name": "Common", + "value": "75-150 mg" + }, + { + "name": "Strong", + "value": "150 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-1.5 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "1 hours" + }, + { + "name": "Duration", + "value": "4-7 hours" + }, + { + "name": "After Effects", + "value": "3-4 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/3-MeO-PCE", + "name": "3-MeO-PCE", + "aliases": [ + "3meopce", + "methoxyieticyclidine" + ], + "aliasesStr": "3meopce, methoxyieticyclidine", + "summary": "3-MeO-PCP with a change of a ring replacement. Slightly more potent than 3-MeO-PCP.", + "toxicity": [ + "toxic dosage is unknown" + ], + "addictionPotential": "highly addictive with a high potential for adverse side effects such as psychosis", + "tolerance": { + "full": "with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dissociatives" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "4-8 mg" + }, + { + "name": "Common", + "value": "8-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "3-6 mg" + }, + { + "name": "Common", + "value": "6-12 mg" + }, + { + "name": "Strong", + "value": "12-20 mg" + }, + { + "name": "Heavy", + "value": "20 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-90 minutes" + }, + { + "name": "Onset", + "value": "3-15 minutes" + }, + { + "name": "Peak", + "value": "1.5-2 hours" + }, + { + "name": "Offset", + "value": "45-60 minutes" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "3-5 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "4-8 mg" + }, + { + "name": "Common", + "value": "8-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_3MEOPCE_.shtml", + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/3-MeO-PCMo", + "name": "3-MeO-PCMo", + "aliases": [], + "aliasesStr": "", + "summary": "A less common dissociative anaesthetic compound related to PCP. An analogue of 3-meo-pcp, but far less potent. Possibly an antitussive and antidepressant. Very little history of human use or pharmacological information.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dissociative" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 mg" + }, + { + "name": "Light", + "value": "100-200 mg" + }, + { + "name": "Common", + "value": "200-300 mg" + }, + { + "name": "Strong", + "value": "300-400 mg" + }, + { + "name": "Heavy", + "value": "400 mg" + }, + { + "name": "Light", + "value": "50-80 mg" + }, + { + "name": "Common", + "value": "80-125 mg" + }, + { + "name": "Strong", + "value": "125-150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-2 hours" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "2-3 hours" + }, + { + "name": "Total", + "value": "5-6 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "2-8 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 mg" + }, + { + "name": "Light", + "value": "100-200 mg" + }, + { + "name": "Common", + "value": "200-300 mg" + }, + { + "name": "Strong", + "value": "300-400 mg" + }, + { + "name": "Heavy", + "value": "400 mg" + }, + { + "name": "Light", + "value": "50-80 mg" + }, + { + "name": "Common", + "value": "80-125 mg" + }, + { + "name": "Strong", + "value": "125-150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-2 hours" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "2-3 hours" + }, + { + "name": "Total", + "value": "5-6 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "2-8 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_3MeOPCMo.shtml", + "classes": { + "psychoactive": [ + "Dissociative", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/3-MeO-PCP", + "name": "3-MeO-PCP", + "aliases": [ + "3meopcp" + ], + "aliasesStr": "3meopcp", + "summary": "A potent dissociative often compared to MXE but with a longer duration, much less sedating effects and causing an overall different experience. Users have reported effects as being similar to PCP. Roughtly ten times more potent than 4-MeO-PCP.", + "toxicity": [ + "toxic dosage is unknown" + ], + "addictionPotential": "produces dependence with chronic use and has a high potential for abuse", + "tolerance": { + "full": "with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dissociative" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "4-8 mg" + }, + { + "name": "Common", + "value": "8-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + }, + { + "name": "Threshold", + "value": "1.5-3 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-15 mg" + }, + { + "name": "Heavy", + "value": "15-18 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-120 minutes" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "2-48 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-15 mg" + }, + { + "name": "Threshold", + "value": "1-2 mg" + }, + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-8 mg" + }, + { + "name": "Strong", + "value": "8-12 mg" + }, + { + "name": "Heavy", + "value": "12-15 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-90 minutes" + }, + { + "name": "Onset", + "value": "5-30 minutes" + }, + { + "name": "Peak", + "value": "1.5-2 hours" + }, + { + "name": "Offset", + "value": "45-60 minutes" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "3-5 hours" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "45-120 minutes" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-15 mg" + }, + { + "name": "Threshold", + "value": "1-2 mg" + }, + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-8 mg" + }, + { + "name": "Strong", + "value": "8-12 mg" + }, + { + "name": "Heavy", + "value": "12-15 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-90 minutes" + }, + { + "name": "Onset", + "value": "5-30 minutes" + }, + { + "name": "Peak", + "value": "1.5-2 hours" + }, + { + "name": "Offset", + "value": "45-60 minutes" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "3-5 hours" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "4-8 mg" + }, + { + "name": "Common", + "value": "8-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + }, + { + "name": "Threshold", + "value": "1.5-3 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-15 mg" + }, + { + "name": "Heavy", + "value": "15-18 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-120 minutes" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "2-48 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_3MeOPCP.shtml", + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming", + "Research Chemical" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/3C-E", + "name": "3C-E", + "aliases": [], + "aliasesStr": "", + "summary": "Three-Carbon Analog of Escaline. Substituted Amphetamine.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "30-40 mg" + }, + { + "name": "Common", + "value": "40-60 mg" + }, + { + "name": "Strong", + "value": "60-80 mg" + }, + { + "name": "Heavy", + "value": "80 mg" + }, + { + "name": "Threshold", + "value": "15-25 mg" + }, + { + "name": "Light", + "value": "25-35 mg" + }, + { + "name": "Common", + "value": "35-50 mg" + }, + { + "name": "Strong", + "value": "50-70 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-2 hours" + }, + { + "name": "Peak", + "value": "4-8 hours" + }, + { + "name": "Offset", + "value": "3-6 hours" + }, + { + "name": "Afterglow", + "value": "3-6 hours" + }, + { + "name": "Total", + "value": "10-16 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "8-14 hours" + }, + { + "name": "After Effects", + "value": "2-16 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "15 mg" + }, + { + "name": "Light", + "value": "20-35 mg" + }, + { + "name": "Common", + "value": "35-60 mg" + }, + { + "name": "Strong", + "value": "60-70 mg" + }, + { + "name": "Heavy", + "value": "70 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-90 minutes" + }, + { + "name": "Peak", + "value": "4-7 hours" + }, + { + "name": "Offset", + "value": "2-5 hours" + }, + { + "name": "Afterglow", + "value": "3-5 hours" + }, + { + "name": "Total", + "value": "5-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "30-40 mg" + }, + { + "name": "Common", + "value": "40-60 mg" + }, + { + "name": "Strong", + "value": "60-80 mg" + }, + { + "name": "Heavy", + "value": "80 mg" + }, + { + "name": "Threshold", + "value": "15-25 mg" + }, + { + "name": "Light", + "value": "25-35 mg" + }, + { + "name": "Common", + "value": "35-50 mg" + }, + { + "name": "Strong", + "value": "50-70 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-2 hours" + }, + { + "name": "Peak", + "value": "4-8 hours" + }, + { + "name": "Offset", + "value": "3-6 hours" + }, + { + "name": "Afterglow", + "value": "3-6 hours" + }, + { + "name": "Total", + "value": "10-16 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "8-14 hours" + }, + { + "name": "After Effects", + "value": "2-16 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_3CE.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/3C-P", + "name": "3C-P", + "aliases": [ + "3cp" + ], + "aliasesStr": "3cp", + "summary": "Rather new and uncommon stimulant, psychedelic and amphetamine with properties similar to the 2Cx class of drugs. 3-carbon homologue of proscaline.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_3CP.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5-10 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Heavy", + "value": "40 " + } + ], + "duration": [ + { + "name": "Onset", + "value": "60-150 minutes" + }, + { + "name": "Duration", + "value": "10-18 hours" + }, + { + "name": "After Effects", + "value": "2-24 hours" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/4-AcO-DET", + "name": "4-AcO-DET", + "aliases": [ + "ethacetin", + "ethylacybin", + "4-acetoxy-det" + ], + "aliasesStr": "ethacetin, ethylacybin, 4-acetoxy-det", + "summary": "Rare drug that is of the tryptamine family, can be comparable to Psilocybin. Expected to quickly hydrolyzed into the free phenolic 4-HO-DET.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-20 mg" + }, + { + "name": "Strong", + "value": "20-35 mg" + }, + { + "name": "Heavy", + "value": "35 mg" + }, + { + "name": "Threshold", + "value": "2-5 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-30 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-1.5 hours" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "1.5-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "4-7 hours" + }, + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Duration", + "value": "2-6 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-20 mg" + }, + { + "name": "Strong", + "value": "20-35 mg" + }, + { + "name": "Heavy", + "value": "35 mg" + }, + { + "name": "Threshold", + "value": "2-5 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-30 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-1.5 hours" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "1.5-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "4-7 hours" + }, + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Duration", + "value": "2-6 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4AcODET.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/4-AcO-DMT", + "name": "4-AcO-DMT", + "aliases": [ + "4acodmt", + "psilacetin", + "4-aco", + "4-acetoxy-dmt" + ], + "aliasesStr": "4acodmt, psilacetin, 4-aco, 4-acetoxy-dmt", + "summary": "A prodrug for Psilocin with extremely similar effects as Mushrooms.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "non-addictive with low potential for abuse", + "tolerance": { + "full": "almost immediately after ingestion", + "half": null, + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "7.5-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-45 mg" + }, + { + "name": "Heavy", + "value": "45 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Heavy", + "value": "25-40 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-75 minutes" + }, + { + "name": "Onset", + "value": "15-40 minutes" + }, + { + "name": "Peak", + "value": "2-3.5 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "4-7 hours" + }, + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "5-25 minutes" + }, + { + "name": "Peak", + "value": "1.5-2.5 hours" + }, + { + "name": "Offset", + "value": "1-1.5 hours" + }, + { + "name": "Afterglow", + "value": "2null hours" + }, + { + "name": "Total", + "value": "3-5 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "7.5-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-45 mg" + }, + { + "name": "Heavy", + "value": "45 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Heavy", + "value": "25-40 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-75 minutes" + }, + { + "name": "Onset", + "value": "15-40 minutes" + }, + { + "name": "Peak", + "value": "2-3.5 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "4-7 hours" + }, + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4AcODMT.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/4-AcO-DiPT", + "name": "4-AcO-DiPT", + "aliases": [ + "4-acetoxy-dipt", + "4acodipt", + "ipracetin", + "iprocetyl", + "aces" + ], + "aliasesStr": "4-acetoxy-dipt, 4acodipt, ipracetin, iprocetyl, aces", + "summary": "An uncommon psychedelic tryptamine with a short history of human use, also known as Ipracetin. Possibly first synthesised by Alexander Shulgin. Some reports of heavy nausea, with effects comparable to 2c-b and mushrooms.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-45 mg" + }, + { + "name": "Heavy", + "value": "45 mg" + }, + { + "name": "Threshold", + "value": "3-5 mg", + "note": " NOTE: The freebase salt form of 4-AcO-DiPT is 10% more potent than the HCl salt form. These dosages are provided for the freebase salt" + }, + { + "name": "Light", + "value": "5-10 mg", + "note": " NOTE: The freebase salt form of 4-AcO-DiPT is 10% more potent than the HCl salt form. These dosages are provided for the freebase salt" + }, + { + "name": "Common", + "value": "10-20 mg", + "note": " NOTE: The freebase salt form of 4-AcO-DiPT is 10% more potent than the HCl salt form. These dosages are provided for the freebase salt" + }, + { + "name": "Strong", + "value": "20-35 mg", + "note": " NOTE: The freebase salt form of 4-AcO-DiPT is 10% more potent than the HCl salt form. These dosages are provided for the freebase salt" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-40 minutes" + }, + { + "name": "Onset", + "value": "15-40 minutes" + }, + { + "name": "Peak", + "value": "1.5-2 hours" + }, + { + "name": "Offset", + "value": "1-1.5 hours" + }, + { + "name": "Afterglow", + "value": "2-6 hours" + }, + { + "name": "Total", + "value": "3-4 hours" + }, + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-45 mg" + }, + { + "name": "Heavy", + "value": "45 mg" + }, + { + "name": "Threshold", + "value": "3-5 mg", + "note": " NOTE: The freebase salt form of 4-AcO-DiPT is 10% more potent than the HCl salt form. These dosages are provided for the freebase salt" + }, + { + "name": "Light", + "value": "5-10 mg", + "note": " NOTE: The freebase salt form of 4-AcO-DiPT is 10% more potent than the HCl salt form. These dosages are provided for the freebase salt" + }, + { + "name": "Common", + "value": "10-20 mg", + "note": " NOTE: The freebase salt form of 4-AcO-DiPT is 10% more potent than the HCl salt form. These dosages are provided for the freebase salt" + }, + { + "name": "Strong", + "value": "20-35 mg", + "note": " NOTE: The freebase salt form of 4-AcO-DiPT is 10% more potent than the HCl salt form. These dosages are provided for the freebase salt" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-40 minutes" + }, + { + "name": "Onset", + "value": "15-40 minutes" + }, + { + "name": "Peak", + "value": "1.5-2 hours" + }, + { + "name": "Offset", + "value": "1-1.5 hours" + }, + { + "name": "Afterglow", + "value": "2-6 hours" + }, + { + "name": "Total", + "value": "3-4 hours" + }, + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4AcODiPT.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/4-AcO-MET", + "name": "4-AcO-MET", + "aliases": [ + "metacetin", + "4-acetoxy-met", + "4acomet" + ], + "aliasesStr": "metacetin, 4-acetoxy-met, 4acomet", + "summary": "A rare psychedelic tryptamine which is thought to be metabolised into 4-HO-MET. Onset and duration, intensity will vary but effect profile is largely the same.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "12-18 mg" + }, + { + "name": "Common", + "value": "20-25 mg" + }, + { + "name": "Heavy", + "value": "25-35 " + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "2null hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "2-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "12-18 mg" + }, + { + "name": "Common", + "value": "20-25 mg" + }, + { + "name": "Heavy", + "value": "25-35 " + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "2null hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "2-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4AcOMET.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/4-AcO-MiPT", + "name": "4-AcO-MiPT", + "aliases": [ + "mipracetin", + "4acomipt" + ], + "aliasesStr": "mipracetin, 4acomipt", + "summary": "A quite potent tryptamine that has be related to having \"shroom-like\" visuals. Yet without much bodyload. Very hydroscopic. Seems to be quite safe in dosing. Similar to the likes of 2C-B.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-20 mg" + }, + { + "name": "Strong", + "value": "20-35 mg" + }, + { + "name": "Heavy", + "value": "35 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-40 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "1.5-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "4-9 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-20 mg" + }, + { + "name": "Strong", + "value": "20-35 mg" + }, + { + "name": "Heavy", + "value": "35 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-40 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "1.5-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "4-9 hours" + } + ] + }, + { + "name": "Vapourized", + "dosage": [ + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-15 " + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-2 minutes" + }, + { + "name": "Duration", + "value": "1-2 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "classes": { + "psychoactive": [ + "Empathogen", + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/4-FA", + "name": "4-FA", + "aliases": [ + "4-Fluoroamphetamine", + "4fa", + "4-fmp", + "4-fluoroamphetamine" + ], + "aliasesStr": "4-Fluoroamphetamine, 4fa, 4-fmp, 4-fluoroamphetamine", + "summary": "An empathogen commonly used in place of MDMA, having a similar duration of empathogenic effects. This drug, however, has a longer stimulant \"tail,\" during which effects are more like those of amphetamines. Not to be confused with 4-FMA, which has a similar potency, but is not particularly empathogenic.", + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulants" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "40 mg" + }, + { + "name": "Light", + "value": "40-100 mg" + }, + { + "name": "Common", + "value": "100-130 mg" + }, + { + "name": "Strong", + "value": "130-150 mg" + }, + { + "name": "Heavy", + "value": "150 mg" + }, + { + "name": "Light", + "value": "50-70 mg", + "note": " NOTE: Insufflating does not appear to provide a better bioavailability than oral ingestion, and can cause damage to nasal cavity." + }, + { + "name": "Common", + "value": "70-110 mg", + "note": " NOTE: Insufflating does not appear to provide a better bioavailability than oral ingestion, and can cause damage to nasal cavity." + }, + { + "name": "Heavy", + "value": "115-150 mg", + "note": " NOTE: Insufflating does not appear to provide a better bioavailability than oral ingestion, and can cause damage to nasal cavity." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-75 minutes" + }, + { + "name": "Onset", + "value": "45-75 minutes" + }, + { + "name": "Peak", + "value": "2.5-3.5 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "6-12 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "40 mg" + }, + { + "name": "Light", + "value": "40-100 mg" + }, + { + "name": "Common", + "value": "100-130 mg" + }, + { + "name": "Strong", + "value": "130-150 mg" + }, + { + "name": "Heavy", + "value": "150 mg" + }, + { + "name": "Light", + "value": "50-70 mg", + "note": " NOTE: Insufflating does not appear to provide a better bioavailability than oral ingestion, and can cause damage to nasal cavity." + }, + { + "name": "Common", + "value": "70-110 mg", + "note": " NOTE: Insufflating does not appear to provide a better bioavailability than oral ingestion, and can cause damage to nasal cavity." + }, + { + "name": "Heavy", + "value": "115-150 mg", + "note": " NOTE: Insufflating does not appear to provide a better bioavailability than oral ingestion, and can cause damage to nasal cavity." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-75 minutes" + }, + { + "name": "Onset", + "value": "45-75 minutes" + }, + { + "name": "Peak", + "value": "2.5-3.5 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "6-12 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "GHB" + }, + { + "status": "Caution", + "name": "GBL" + }, + { + "status": "Caution", + "name": "Opioids" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Caffeine" + }, + { + "status": "Caution", + "name": "Ketamine" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Psychedelic" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "PCP" + }, + { + "status": "Unsafe", + "name": "25x-NBOMe" + }, + { + "status": "Unsafe", + "name": "2C-T-x" + }, + { + "status": "Unsafe", + "name": "5-MeO-xxT" + }, + { + "status": "Unsafe", + "name": "DOx" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "ΑMT" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4Fluoroamphetamine.shtml", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/4-FMA", + "name": "4-FMA", + "aliases": [ + "4-fluromethamphetamine", + "4fma" + ], + "aliasesStr": "4-fluromethamphetamine, 4fma", + "summary": "A stimulant with some empathogenic properties, and analogue of Methamphetamine with similar effects. Reported to be less effective than 2-FMA and related compounds. Little is known about the pharmacological effects of this compound. Not to be confused with 4-FA, which has a different effect profile, despite similar potency.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "25-50 mg" + }, + { + "name": "Common", + "value": "50-75 mg" + }, + { + "name": "Strong", + "value": "100-125 mg" + }, + { + "name": "Heavy", + "value": "125 mg" + }, + { + "name": "Light", + "value": "50-75 mg" + }, + { + "name": "Common", + "value": "75-125 mg" + }, + { + "name": "Heavy", + "value": "125-200 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-40 minutes" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "2-5 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "3-12 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "25-50 mg" + }, + { + "name": "Common", + "value": "50-75 mg" + }, + { + "name": "Strong", + "value": "100-125 mg" + }, + { + "name": "Heavy", + "value": "125 mg" + }, + { + "name": "Light", + "value": "50-75 mg" + }, + { + "name": "Common", + "value": "75-125 mg" + }, + { + "name": "Heavy", + "value": "125-200 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-40 minutes" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "2-5 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "3-12 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "GHB" + }, + { + "status": "Caution", + "name": "GBL" + }, + { + "status": "Caution", + "name": "Opioids" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Caffeine" + }, + { + "status": "Caution", + "name": "Ketamine" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Psychedelic" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "PCP" + }, + { + "status": "Unsafe", + "name": "25x-NBOMe" + }, + { + "status": "Unsafe", + "name": "2C-T-x" + }, + { + "status": "Unsafe", + "name": "5-MeO-xxT" + }, + { + "status": "Unsafe", + "name": "DOx" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "ΑMT" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ], + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/4-HO-DET", + "name": "4-HO-DET", + "aliases": [ + "4hodet", + "4-hydroxy-det" + ], + "aliasesStr": "4hodet, 4-hydroxy-det", + "summary": "A rare compound first produced by Albert Hoffman, also known as ethocin. Structurally related to 4-HO-MET (metocin) and psilocin (4-HO-DMT), this drug has similar psychedelic effects but little recorded human usage. Probably similar to mushrooms. Potentially stimulating.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "20-30 mg" + }, + { + "name": "Strong", + "value": "30-45 mg" + }, + { + "name": "Heavy", + "value": "45 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-45 minutes" + }, + { + "name": "Peak", + "value": "2.5-3.5 hours" + }, + { + "name": "Offset", + "value": "1.5-2 hours" + }, + { + "name": "Afterglow", + "value": "1-4 hours" + }, + { + "name": "Total", + "value": "5-7 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "3-7 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "20-30 mg" + }, + { + "name": "Strong", + "value": "30-45 mg" + }, + { + "name": "Heavy", + "value": "45 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-45 minutes" + }, + { + "name": "Peak", + "value": "2.5-3.5 hours" + }, + { + "name": "Offset", + "value": "1.5-2 hours" + }, + { + "name": "Afterglow", + "value": "1-4 hours" + }, + { + "name": "Total", + "value": "5-7 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "3-7 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4HODET.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/4-HO-DPT", + "name": "4-HO-DPT", + "aliases": [ + "4hodpt", + "4-hydroxy-n", + "n-dipropyltryptamine" + ], + "aliasesStr": "4hodpt, 4-hydroxy-n, n-dipropyltryptamine", + "summary": "A psychedelic hallucinogenic first synthesized by alexander shulgin. At light doses it causes enhanced cognition and appreciation for things like art and music while high doses cause visuals. The drug is known to cause a bodyload.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "40-60 mg" + }, + { + "name": "Common", + "value": "60-90 mg" + }, + { + "name": "Strong", + "value": "90-130 mg" + }, + { + "name": "Heavy", + "value": "130 mg" + }, + { + "name": "Light", + "value": "25-50 mg" + }, + { + "name": "Common", + "value": "50-75 mg" + }, + { + "name": "Strong", + "value": "75-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "60-120 minutes" + }, + { + "name": "Onset", + "value": "45-60 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-35 mg" + }, + { + "name": "Heavy", + "value": "35 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-45 minutes" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "1-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "10-20 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "40-60 mg" + }, + { + "name": "Common", + "value": "60-90 mg" + }, + { + "name": "Strong", + "value": "90-130 mg" + }, + { + "name": "Heavy", + "value": "130 mg" + }, + { + "name": "Light", + "value": "25-50 mg" + }, + { + "name": "Common", + "value": "50-75 mg" + }, + { + "name": "Strong", + "value": "75-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "60-120 minutes" + }, + { + "name": "Onset", + "value": "45-60 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/4-HO-DiPT", + "name": "4-HO-DiPT", + "aliases": [ + "iprocin" + ], + "aliasesStr": "iprocin", + "summary": "A psychedelic tryptamine also known as iprocin. A homologue of psilocin, this drug likely has similar effects to psychedelic mushrooms. Said to have a rapid onset and relatively short duration for a drug of its class.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "3-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + }, + { + "name": "Heavy", + "value": "30 mg" + }, + { + "name": "Threshold", + "value": "3-5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-40 minutes" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Peak", + "value": "60-90 minutes" + }, + { + "name": "Offset", + "value": "30-60 minutes" + }, + { + "name": "Total", + "value": "2-4 hours" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "3-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + }, + { + "name": "Heavy", + "value": "30 mg" + }, + { + "name": "Threshold", + "value": "3-5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-40 minutes" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Peak", + "value": "60-90 minutes" + }, + { + "name": "Offset", + "value": "30-60 minutes" + }, + { + "name": "Total", + "value": "2-4 hours" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4HODiPT.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/4-HO-EPT", + "name": "4-HO-EPT", + "aliases": [], + "aliasesStr": "", + "summary": "The 4-Hydroxy version of EPT. Slightly more potent than the prior.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "15-20 mg" + }, + { + "name": "Common", + "value": "30-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Total", + "value": "3-7 hours" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "15-20 mg" + }, + { + "name": "Common", + "value": "30-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Total", + "value": "3-7 hours" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "classes": { + "psychoactive": [ + "Psychedelic", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/4-HO-MET", + "name": "4-HO-MET", + "aliases": [ + "4homet", + "homet", + "metocin", + "ethocin" + ], + "aliasesStr": "4homet, homet, metocin, ethocin", + "summary": "A lesser known psychedelic tryptamine. Functional analogue of Psilocin. Very poorly soluble in water and alcohol.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-45 mg" + }, + { + "name": "Heavy", + "value": "45 mg" + }, + { + "name": "Light", + "value": "10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "20 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "15-40 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-1.5 hours" + }, + { + "name": "Afterglow", + "value": "2-12 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "5-60 minutes" + }, + { + "name": "Duration", + "value": "3-7 hours" + }, + { + "name": "After Effects", + "value": "2-8 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-25 mg" + }, + { + "name": "Common", + "value": "25-35 mg" + }, + { + "name": "Strong", + "value": "35-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-120 seconds" + }, + { + "name": "Total", + "value": "25-45 minutes" + } + ] + }, + { + "name": "Intravenous", + "dosage": [ + { + "name": "Light", + "value": "5 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "2-10 minutes" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-45 mg" + }, + { + "name": "Heavy", + "value": "45 mg" + }, + { + "name": "Light", + "value": "10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "20 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "15-40 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-1.5 hours" + }, + { + "name": "Afterglow", + "value": "2-12 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "5-60 minutes" + }, + { + "name": "Duration", + "value": "3-7 hours" + }, + { + "name": "After Effects", + "value": "2-8 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4HOMET.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/4-HO-MPT", + "name": "4-HO-MPT", + "aliases": [ + "4hompt" + ], + "aliasesStr": "4hompt", + "summary": "Psychedelic drug of the tryptamine class. Higher homologue of Psilocin, and is the 4-hydroxy analogue of N-Methyl-N-Propyltryptamine.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "5-10 mg", + "note": " Note: I couldn't find a report that taking this substance rectally produced any effects." + }, + { + "name": "Common", + "value": "10-15 mg", + "note": " Note: I couldn't find a report that taking this substance rectally produced any effects." + }, + { + "name": "Strong", + "value": "15-25 mg", + "note": " Note: I couldn't find a report that taking this substance rectally produced any effects." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "2-12 hours" + }, + { + "name": "Total", + "value": "5-7 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "5-10 mg", + "note": " Note: I couldn't find a report that taking this substance rectally produced any effects." + }, + { + "name": "Common", + "value": "10-15 mg", + "note": " Note: I couldn't find a report that taking this substance rectally produced any effects." + }, + { + "name": "Strong", + "value": "15-25 mg", + "note": " Note: I couldn't find a report that taking this substance rectally produced any effects." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "2-12 hours" + }, + { + "name": "Total", + "value": "5-7 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + }, + { + "name": "Vapourized", + "dosage": [ + { + "name": "Light", + "value": "3-5 mg", + "note": " Note: I couldn't find a report that taking this substance rectally produced any effects." + }, + { + "name": "Common", + "value": "5-10 mg", + "note": " Note: I couldn't find a report that taking this substance rectally produced any effects." + }, + { + "name": "Strong", + "value": "10-15 mg", + "note": " Note: I couldn't find a report that taking this substance rectally produced any effects." + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-2 minutes" + }, + { + "name": "Duration", + "value": "45-90 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/4-HO-MiPT", + "name": "4-HO-MiPT", + "aliases": [ + "4homipt", + "homipt", + "ho-mipt", + "4-ho", + "miprocin" + ], + "aliasesStr": "4homipt, homipt, ho-mipt, 4-ho, miprocin", + "summary": "A reasonably popular tryptamine deriviative and Psilocin analogue, first synthesised by Alexander Shulgin. It has been reported as having comparable effects to psychedelic mushrooms, though with a shorter duration.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-35 mg" + }, + { + "name": "Heavy", + "value": "35 mg" + }, + { + "name": "Threshold", + "value": "5-10 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-60 minutes" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "1.5-2.5 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "2-12 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-35 mg" + }, + { + "name": "Heavy", + "value": "35 mg" + }, + { + "name": "Threshold", + "value": "5-10 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-60 minutes" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "1.5-2.5 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "2-12 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4HOMiPT.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/4-MeO-PCP", + "name": "4-MeO-PCP", + "aliases": [ + "4meopcp" + ], + "aliasesStr": "4meopcp", + "summary": "An arylcyclohexamine dissociative anaesthetic related to PCP. First discovered in the 1960s by Parke-Davis, it was introduced to the RC market in 2008. Reported to be less potent than PCP. It is not commonly seen, but has seen some increase in popularity with the inavailability of other dissociatives.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dissociative" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 mg" + }, + { + "name": "Light", + "value": "75-100 mg" + }, + { + "name": "Common", + "value": "100-170 mg" + }, + { + "name": "Strong", + "value": "170-250 mg" + }, + { + "name": "Heavy", + "value": "250 mg" + }, + { + "name": "Threshold", + "value": "25-50 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Light", + "value": "50-100 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Common", + "value": "100-150 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Strong", + "value": "150 mg", + "note": " NOTE: These doses are tentative and may need further research." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "45-120 minutes" + }, + { + "name": "Peak", + "value": "3-7 hours" + }, + { + "name": "Offset", + "value": "6-10 hours" + }, + { + "name": "Total", + "value": "12-20 hours" + }, + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Duration", + "value": "8-15 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "15 mg" + }, + { + "name": "Light", + "value": "30-75 mg" + }, + { + "name": "Common", + "value": "75-150 mg" + }, + { + "name": "Heavy", + "value": "150 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-30 minutes" + }, + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Peak", + "value": "3-6 hours" + }, + { + "name": "Offset", + "value": "3null hours" + }, + { + "name": "Afterglow", + "value": "3null hours" + }, + { + "name": "Total", + "value": "12-18 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 mg" + }, + { + "name": "Light", + "value": "75-100 mg" + }, + { + "name": "Common", + "value": "100-170 mg" + }, + { + "name": "Strong", + "value": "170-250 mg" + }, + { + "name": "Heavy", + "value": "250 mg" + }, + { + "name": "Threshold", + "value": "25-50 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Light", + "value": "50-100 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Common", + "value": "100-150 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Strong", + "value": "150 mg", + "note": " NOTE: These doses are tentative and may need further research." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "45-120 minutes" + }, + { + "name": "Peak", + "value": "3-7 hours" + }, + { + "name": "Offset", + "value": "6-10 hours" + }, + { + "name": "Total", + "value": "12-20 hours" + }, + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Duration", + "value": "8-15 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4MeOPCP.shtml", + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/4F-EPH", + "name": "4F-EPH", + "aliases": [ + "4F-EPH", + "4FEPH" + ], + "aliasesStr": "4F-EPH, 4FEPH", + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-30 mg" + }, + { + "name": "Heavy", + "value": "30 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-25 minutes" + }, + { + "name": "Afterglow", + "value": "4-12 hours" + }, + { + "name": "Total", + "value": "5-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/4F-MPH", + "name": "4F-MPH", + "aliases": [ + "4F-MPH" + ], + "aliasesStr": "4F-MPH", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-20 mg" + }, + { + "name": "Heavy", + "value": "20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "5-10 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-8 mg" + }, + { + "name": "Common", + "value": "8-14 mg" + }, + { + "name": "Strong", + "value": "14-20 mg" + }, + { + "name": "Heavy", + "value": "20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "4-8 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/5-APB", + "name": "5-APB", + "aliases": [ + "5apb" + ], + "aliasesStr": "5apb", + "summary": "A triple monoamine reuptake inhibitor. This agonism for 5-HT2B makes it likely that 5-APB would be cardiotoxic with long term use, as seen in other 5-HT2B agonists such as fenfluramine and MDMA.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "40-60 mg" + }, + { + "name": "Common", + "value": "60-80 mg" + }, + { + "name": "Strong", + "value": "80-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + }, + { + "name": "Light", + "value": "40-60 mg" + }, + { + "name": "Common", + "value": "70-100 mg" + }, + { + "name": "Strong", + "value": "100 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-90 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "1.5-3 hours" + }, + { + "name": "Afterglow", + "value": "6-48 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + }, + { + "name": "Onset", + "value": "45 minutes" + }, + { + "name": "Duration", + "value": "7-8 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "40-60 mg" + }, + { + "name": "Common", + "value": "60-80 mg" + }, + { + "name": "Strong", + "value": "80-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + }, + { + "name": "Light", + "value": "40-60 mg" + }, + { + "name": "Common", + "value": "70-100 mg" + }, + { + "name": "Strong", + "value": "100 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-90 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "1.5-3 hours" + }, + { + "name": "Afterglow", + "value": "6-48 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + }, + { + "name": "Onset", + "value": "45 minutes" + }, + { + "name": "Duration", + "value": "7-8 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5APB.shtml", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/5-Hydroxytryptophan", + "name": "5-Hydroxytryptophan", + "aliases": [ + "5-HTP", + "Oxitriptan", + "Cincofarm", + "Levothym", + "Levotonine", + "Oxyfan", + "Telesol", + "Tript-OH", + "Triptum" + ], + "aliasesStr": "5-HTP, Oxitriptan, Cincofarm, Levothym, Levotonine, Oxyfan, Telesol, Tript-OH, Triptum", + "interactions": [ + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Tricyclic antidepressants" + }, + { + "status": "Dangerous", + "name": "Tramadol" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/5-MAPB", + "name": "5-MAPB", + "aliases": [ + "5mapb" + ], + "aliasesStr": "5mapb", + "summary": "An empathogen structurally similar to MDMA. Typically more visual than MDMA. Often reported to be much less stimulating and more relaxing than most other stimulating empathogens. Less psychedelic than 6-APB. Much longer lasting than MDMA.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "40-60 mg" + }, + { + "name": "Common", + "value": "60-80 mg" + }, + { + "name": "Strong", + "value": "80-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + }, + { + "name": "Light", + "value": "40-60 mg" + }, + { + "name": "Common", + "value": "60-80 mg" + }, + { + "name": "Heavy", + "value": "80-100 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-90 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "1.5-3 hours" + }, + { + "name": "Afterglow", + "value": "6-48 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + }, + { + "name": "Onset", + "value": "45-60 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "2-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "40-60 mg" + }, + { + "name": "Common", + "value": "60-80 mg" + }, + { + "name": "Strong", + "value": "80-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + }, + { + "name": "Light", + "value": "40-60 mg" + }, + { + "name": "Common", + "value": "60-80 mg" + }, + { + "name": "Heavy", + "value": "80-100 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-90 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "1.5-3 hours" + }, + { + "name": "Afterglow", + "value": "6-48 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + }, + { + "name": "Onset", + "value": "45-60 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "2-4 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5MAPB.shtml", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/5-MeO-DALT", + "name": "5-MeO-DALT", + "aliases": [ + "5meodalt" + ], + "aliasesStr": "5meodalt", + "summary": "A strange drug with an unknown mechanism of action. Some psychedelic effects alongside some effects non-characteristic of psychedelics like appetite enhancement. Reported as having rapid, intense and short acting entheogenic effects.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "4 mg" + }, + { + "name": "Light", + "value": "5-12 mg" + }, + { + "name": "Common", + "value": "12-25 mg" + }, + { + "name": "Strong", + "value": "25-35 mg" + }, + { + "name": "Heavy", + "value": "35 mg" + }, + { + "name": "Threshold", + "value": "4-5 mg" + }, + { + "name": "Light", + "value": "5-12 mg" + }, + { + "name": "Common", + "value": "12-20 mg" + }, + { + "name": "Strong", + "value": "20 " + } + ], + "duration": [ + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "1-2 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-60 seconds" + }, + { + "name": "Peak", + "value": "1-5 minutes" + }, + { + "name": "Offset", + "value": "5-10 minutes" + }, + { + "name": "Afterglow", + "value": "5-10 minutes" + }, + { + "name": "Total", + "value": "15-20 minutes" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "4 mg" + }, + { + "name": "Light", + "value": "5-12 mg" + }, + { + "name": "Common", + "value": "12-25 mg" + }, + { + "name": "Strong", + "value": "25-35 mg" + }, + { + "name": "Heavy", + "value": "35 mg" + }, + { + "name": "Threshold", + "value": "4-5 mg" + }, + { + "name": "Light", + "value": "5-12 mg" + }, + { + "name": "Common", + "value": "12-20 mg" + }, + { + "name": "Strong", + "value": "20 " + } + ], + "duration": [ + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "1-2 hours" + } + ] + }, + { + "name": "Vapourized", + "dosage": [ + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-15 mg" + }, + { + "name": "Strong", + "value": "15 " + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "2C-T-X" + }, + { + "status": "Caution", + "name": "2C-X" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "DOx" + }, + { + "status": "Caution", + "name": "MDMA" + }, + { + "status": "Caution", + "name": "Mescaline" + }, + { + "status": "Caution", + "name": "25x-NBOMe" + }, + { + "status": "Unsafe", + "name": "Substituted amphetamines" + }, + { + "status": "Unsafe", + "name": "Cocaine" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "ΑMT" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "PCP" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5MeODALT.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/5-MeO-DMT", + "name": "5-MeO-DMT", + "aliases": [ + "5meodmt", + "toads", + "5-meo", + "5meo", + "5-medmt" + ], + "aliasesStr": "5meodmt, toads, 5-meo, 5meo, 5-medmt", + "summary": "A powerful psychedelic tryptamine found in many species of plants and some toad venom, with a history of use by native South Americans spanning thousands of years. Has similar qualities to DMT and related tryptamines. Very potent. Orally active in combination with an MAOI.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "non-addictive with a low abuse potential", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "1 hour", + "zero": "2 hours" + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "5-8 mg" + }, + { + "name": "Common", + "value": "8-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "8-15 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-10 minutes" + }, + { + "name": "Peak", + "value": "10-40 minutes" + }, + { + "name": "Offset", + "value": "30-60 minutes" + }, + { + "name": "Afterglow", + "value": "1-3 hours" + }, + { + "name": "Total", + "value": "2-3 hours" + }, + { + "name": "Onset", + "value": "1-5 minutes" + }, + { + "name": "Duration", + "value": "15-45 minutes" + }, + { + "name": "After Effects", + "value": "1-3 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "3-6 mg" + }, + { + "name": "Common", + "value": "6-12 mg" + }, + { + "name": "Strong", + "value": "12-20 mg" + }, + { + "name": "Heavy", + "value": "20 mg" + }, + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 seconds" + }, + { + "name": "Onset", + "value": "5-60 seconds" + }, + { + "name": "Peak", + "value": "5-15 minutes" + }, + { + "name": "Offset", + "value": "10-20 minutes" + }, + { + "name": "Afterglow", + "value": "15-60 minutes" + }, + { + "name": "Total", + "value": "20-40 minutes" + }, + { + "name": "Onset", + "value": "0-1 minutes" + }, + { + "name": "Duration", + "value": "5-15 minutes" + }, + { + "name": "After Effects", + "value": "1-2 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "5-8 mg" + }, + { + "name": "Common", + "value": "8-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "8-15 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-10 minutes" + }, + { + "name": "Peak", + "value": "10-40 minutes" + }, + { + "name": "Offset", + "value": "30-60 minutes" + }, + { + "name": "Afterglow", + "value": "1-3 hours" + }, + { + "name": "Total", + "value": "2-3 hours" + }, + { + "name": "Onset", + "value": "1-5 minutes" + }, + { + "name": "Duration", + "value": "15-45 minutes" + }, + { + "name": "After Effects", + "value": "1-3 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "3-6 mg" + }, + { + "name": "Common", + "value": "6-12 mg" + }, + { + "name": "Strong", + "value": "12-20 mg" + }, + { + "name": "Heavy", + "value": "20 mg" + }, + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 seconds" + }, + { + "name": "Onset", + "value": "5-60 seconds" + }, + { + "name": "Peak", + "value": "5-15 minutes" + }, + { + "name": "Offset", + "value": "10-20 minutes" + }, + { + "name": "Afterglow", + "value": "15-60 minutes" + }, + { + "name": "Total", + "value": "20-40 minutes" + }, + { + "name": "Onset", + "value": "0-1 minutes" + }, + { + "name": "Duration", + "value": "5-15 minutes" + }, + { + "name": "After Effects", + "value": "1-2 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "2C-T-X" + }, + { + "status": "Caution", + "name": "2C-X" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "DOx" + }, + { + "status": "Caution", + "name": "MDMA" + }, + { + "status": "Caution", + "name": "Mescaline" + }, + { + "status": "Caution", + "name": "25x-NBOMe" + }, + { + "status": "Unsafe", + "name": "Substituted amphetamines" + }, + { + "status": "Unsafe", + "name": "Cocaine" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "ΑMT" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "PCP" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5MeODMT.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/5-MeO-DiBF", + "name": "5-MeO-DiBF", + "aliases": [], + "aliasesStr": "", + "summary": "An uncommon and new psychedelic drug related to tryptamine; the Benzofuran analogue of 5-MeO-DiPT. Probably a serotonin receptor partial agonist. Little history of human use.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "50-80 mg" + }, + { + "name": "Common", + "value": "80-110 mg" + }, + { + "name": "Strong", + "value": "110-140 mg" + }, + { + "name": "Heavy", + "value": "140 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + } + ], + "duration": [ + { + "name": "Peak", + "value": "30-60 minutes" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-45 minutes" + }, + { + "name": "Duration", + "value": "6-8 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "50-80 mg" + }, + { + "name": "Common", + "value": "80-110 mg" + }, + { + "name": "Strong", + "value": "110-140 mg" + }, + { + "name": "Heavy", + "value": "140 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + } + ], + "duration": [ + { + "name": "Peak", + "value": "30-60 minutes" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5MeODiBF.shtml", + "classes": { + "psychoactive": [ + "Empathogen", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/5-MeO-DiPT", + "name": "5-MeO-DiPT", + "aliases": [ + "foxy", + "foxy-methoxy", + "5meodipt" + ], + "aliasesStr": "foxy, foxy-methoxy, 5meodipt", + "summary": "5-methoxy-di isopropyl tryptamine, also known as 'foxy', a psychedelic tryptamine related to DMT, which distorts visual and audio perception. Reported to have a heavy body load at high doses, it behaves similarly to other drugs of its class.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "3-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-20 mg" + }, + { + "name": "Heavy", + "value": "20 mg" + }, + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "8-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Afterglow", + "value": "2-6 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "2-3 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "3-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-20 mg" + }, + { + "name": "Heavy", + "value": "20 mg" + }, + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "8-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Afterglow", + "value": "2-6 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "2-3 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "2C-T-X" + }, + { + "status": "Caution", + "name": "2C-X" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "DOx" + }, + { + "status": "Caution", + "name": "MDMA" + }, + { + "status": "Caution", + "name": "Mescaline" + }, + { + "status": "Caution", + "name": "25x-NBOMe" + }, + { + "status": "Unsafe", + "name": "Substituted amphetamines" + }, + { + "status": "Unsafe", + "name": "Cocaine" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "ΑMT" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "PCP" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5MeODiPT.shtml", + "classes": { + "psychoactive": [ + "Empathogen", + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/5-MeO-MiPT", + "name": "5-MeO-MiPT", + "aliases": [ + "5meomipt", + "moxy", + "5meo-mipt" + ], + "aliasesStr": "5meomipt, moxy, 5meo-mipt", + "summary": "A potent, stimulating psychedelic tryptamine, sometimes compared to 5-MeO-DiPT. Has an unusually strong body component and weak visual effects. Often said to be very empathogenic.", + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "3-7 mg" + }, + { + "name": "Common", + "value": "7-15 mg" + }, + { + "name": "Strong", + "value": "15-20 mg" + }, + { + "name": "Heavy", + "value": "20 mg" + }, + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "1-3 mg" + }, + { + "name": "Common", + "value": "4-8 mg" + }, + { + "name": "Strong", + "value": "8-12 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + }, + { + "name": "Onset", + "value": "30 minutes" + }, + { + "name": "Duration", + "value": "3-7 hours" + }, + { + "name": "After Effects", + "value": "2-10 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-20 mg" + }, + { + "name": "Heavy", + "value": "20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "1-3 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "3-7 mg" + }, + { + "name": "Common", + "value": "7-15 mg" + }, + { + "name": "Strong", + "value": "15-20 mg" + }, + { + "name": "Heavy", + "value": "20 mg" + }, + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "1-3 mg" + }, + { + "name": "Common", + "value": "4-8 mg" + }, + { + "name": "Strong", + "value": "8-12 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + }, + { + "name": "Onset", + "value": "30 minutes" + }, + { + "name": "Duration", + "value": "3-7 hours" + }, + { + "name": "After Effects", + "value": "2-10 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "2C-T-X" + }, + { + "status": "Caution", + "name": "2C-X" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "DOx" + }, + { + "status": "Caution", + "name": "MDMA" + }, + { + "status": "Caution", + "name": "Mescaline" + }, + { + "status": "Caution", + "name": "25x-NBOMe" + }, + { + "status": "Unsafe", + "name": "Substituted amphetamines" + }, + { + "status": "Unsafe", + "name": "Cocaine" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "ΑMT" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "PCP" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5MeOMIPT.shtml", + "classes": { + "psychoactive": [ + "Empathogen", + "Psychedelic", + "Research Chemical" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/5F-AKB48", + "name": "5F-AKB48", + "aliases": [ + "5f-apinaca", + "5fapinaca", + "5fakb48" + ], + "aliasesStr": "5f-apinaca, 5fapinaca, 5fakb48", + "summary": "A synthetic cannabanoid that is a Indazole. Produces subjective effects somehwat similar to that of Cannabis, yet with a very short duration. Analogue of STS-135, in which the core indole structure is subbed with an indazole base.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "cannabinoids" + ], + "roas": [ + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Strong", + "value": "2-4 mg" + }, + { + "name": "Heavy", + "value": "4 mg" + } + ], + "duration": [ + { + "name": "Peak", + "value": "10-30 minutes" + }, + { + "name": "Offset", + "value": "5-10 minutes" + }, + { + "name": "Afterglow", + "value": "15-30 minutes" + }, + { + "name": "Total", + "value": "30-60 minutes" + } + ] + }, + { + "name": "Vapourized", + "dosage": [ + { + "name": "Threshold", + "value": "500 ug" + }, + { + "name": "Light", + "value": "500-1000 ug" + }, + { + "name": "Strong", + "value": "1000-2500 ug" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-30 minutes" + }, + { + "name": "Duration", + "value": "30-60 minutes" + }, + { + "name": "After Effects", + "value": "15-45 minutes" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "2C-T-x" + }, + { + "status": "Caution", + "name": "2C-x" + }, + { + "status": "Caution", + "name": "5-MeO-xxT" + }, + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "ΑMT" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Caution", + "name": "DMT" + }, + { + "status": "Caution", + "name": "DOx" + }, + { + "status": "Caution", + "name": "LSD" + }, + { + "status": "Caution", + "name": "Mescaline" + }, + { + "status": "Caution", + "name": "Psilocybin mushrooms" + }, + { + "status": "Caution", + "name": "25x-NBOMe" + } + ], + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/5F-PB-22", + "name": "5F-PB-22", + "aliases": [], + "aliasesStr": "", + "summary": "Synthetic cannabinoid, agonist of the cannabinoid receptors which has a strong sedating aspect. Being a synthetic cannabinoid it has a very fast onset.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "cannabinoids" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "1-3 mg" + }, + { + "name": "Common", + "value": "3-5 mg" + }, + { + "name": "Strong", + "value": "5-8 mg" + }, + { + "name": "Heavy", + "value": "8 mg" + }, + { + "name": "Threshold", + "value": "1 mg", + "note": " Note: As with all research chemicals, start with a low dose, and work your way up." + }, + { + "name": "Light", + "value": "1-3 mg", + "note": " Note: As with all research chemicals, start with a low dose, and work your way up." + }, + { + "name": "Common", + "value": "3-5 mg", + "note": " Note: As with all research chemicals, start with a low dose, and work your way up." + }, + { + "name": "Strong", + "value": "5-8 mg", + "note": " Note: As with all research chemicals, start with a low dose, and work your way up." + } + ], + "duration": [ + { + "name": "Total", + "value": "2-3 hours" + }, + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "60-90 minutes" + }, + { + "name": "After Effects", + "value": "30-60 minutes" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "1-3 mg" + }, + { + "name": "Common", + "value": "3-5 mg" + }, + { + "name": "Strong", + "value": "5-8 mg" + }, + { + "name": "Heavy", + "value": "8 mg" + }, + { + "name": "Threshold", + "value": "1 mg", + "note": " Note: As with all research chemicals, start with a low dose, and work your way up." + }, + { + "name": "Light", + "value": "1-3 mg", + "note": " Note: As with all research chemicals, start with a low dose, and work your way up." + }, + { + "name": "Common", + "value": "3-5 mg", + "note": " Note: As with all research chemicals, start with a low dose, and work your way up." + }, + { + "name": "Strong", + "value": "5-8 mg", + "note": " Note: As with all research chemicals, start with a low dose, and work your way up." + } + ], + "duration": [ + { + "name": "Total", + "value": "2-3 hours" + }, + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "60-90 minutes" + }, + { + "name": "After Effects", + "value": "30-60 minutes" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "2C-T-x" + }, + { + "status": "Caution", + "name": "2C-x" + }, + { + "status": "Caution", + "name": "5-MeO-xxT" + }, + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "ΑMT" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Caution", + "name": "DMT" + }, + { + "status": "Caution", + "name": "DOx" + }, + { + "status": "Caution", + "name": "LSD" + }, + { + "status": "Caution", + "name": "Mescaline" + }, + { + "status": "Caution", + "name": "Psilocybin mushrooms" + }, + { + "status": "Caution", + "name": "25x-NBOMe" + } + ], + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/6-APB", + "name": "6-APB", + "aliases": [ + "6apb" + ], + "aliasesStr": "6apb", + "summary": "A stimulant, empathogen and analog of MDA. Typically more visual than MDMA or MDA, as well as having a much longer onset and duration. Users often report a slightly more psychedelic headspace as well. Commonly sold as an alternative to MDMA and MDA.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "with prolonged and repeated use", + "half": "3-4 weeks", + "zero": "6-8 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "15 mg" + }, + { + "name": "Light", + "value": "30-60 mg" + }, + { + "name": "Common", + "value": "60-90 mg" + }, + { + "name": "Strong", + "value": "90-120 mg" + }, + { + "name": "Heavy", + "value": "120 mg" + }, + { + "name": "Light", + "value": "50-75 mg", + "note": " NOTE: Do not exceed 200mg in a night" + }, + { + "name": "Common", + "value": "75-125 mg", + "note": " NOTE: Do not exceed 200mg in a night" + }, + { + "name": "Heavy", + "value": "125 mg", + "note": " NOTE: Do not exceed 200mg in a night" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "60-120 minutes" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "3-4 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "6-48 hours" + }, + { + "name": "Total", + "value": "7-10 hours" + }, + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Duration", + "value": "8-14 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "15 mg" + }, + { + "name": "Light", + "value": "30-60 mg" + }, + { + "name": "Common", + "value": "60-90 mg" + }, + { + "name": "Strong", + "value": "90-120 mg" + }, + { + "name": "Heavy", + "value": "120 mg" + }, + { + "name": "Light", + "value": "50-75 mg", + "note": " NOTE: Do not exceed 200mg in a night" + }, + { + "name": "Common", + "value": "75-125 mg", + "note": " NOTE: Do not exceed 200mg in a night" + }, + { + "name": "Heavy", + "value": "125 mg", + "note": " NOTE: Do not exceed 200mg in a night" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "60-120 minutes" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "3-4 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "6-48 hours" + }, + { + "name": "Total", + "value": "7-10 hours" + }, + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Duration", + "value": "8-14 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_6APB.shtml", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/6-APDB", + "name": "6-APDB", + "aliases": [ + "4-desoxy-mda" + ], + "aliasesStr": "4-desoxy-mda", + "summary": "A stimulant and entactogen related to MDMA and an analogue of MDA. Reported as being fairly psychedlic at higher doses. It is a triple monoamine reuptake inhibitor. Potent full agonist of serotonin 2B receptors.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "with prolonged and repeated use", + "half": "21-30 days", + "zero": "2-3 months" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "30-70 mg" + }, + { + "name": "Common", + "value": "70-100 mg" + }, + { + "name": "Strong", + "value": "100-130 mg" + }, + { + "name": "Heavy", + "value": "130 mg" + }, + { + "name": "Threshold", + "value": "25-30 mg", + "note": "Some users report feeling drained the next day lasting a few days. Varies person to person." + }, + { + "name": "Light", + "value": "30-40 mg", + "note": "Some users report feeling drained the next day lasting a few days. Varies person to person." + }, + { + "name": "Common", + "value": "40-75 mg", + "note": "Some users report feeling drained the next day lasting a few days. Varies person to person." + }, + { + "name": "Heavy", + "value": "75-100 ", + "note": "Some users report feeling drained the next day lasting a few days. Varies person to person." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Total", + "value": "6-8 hours" + }, + { + "name": "Onset", + "value": "60-90 minutes" + }, + { + "name": "Duration", + "value": "7-9 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "30-70 mg" + }, + { + "name": "Common", + "value": "70-100 mg" + }, + { + "name": "Strong", + "value": "100-130 mg" + }, + { + "name": "Heavy", + "value": "130 mg" + }, + { + "name": "Threshold", + "value": "25-30 mg", + "note": "Some users report feeling drained the next day lasting a few days. Varies person to person." + }, + { + "name": "Light", + "value": "30-40 mg", + "note": "Some users report feeling drained the next day lasting a few days. Varies person to person." + }, + { + "name": "Common", + "value": "40-75 mg", + "note": "Some users report feeling drained the next day lasting a few days. Varies person to person." + }, + { + "name": "Heavy", + "value": "75-100 ", + "note": "Some users report feeling drained the next day lasting a few days. Varies person to person." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Total", + "value": "6-8 hours" + }, + { + "name": "Onset", + "value": "60-90 minutes" + }, + { + "name": "Duration", + "value": "7-9 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_6APDB.shtml", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/8-Chlorotheophylline", + "name": "8-Chlorotheophylline" + }, + { + "url": "https://psychonautwiki.org/wiki/A-PHP", + "name": "A-PHP", + "aliases": [ + "α-PHP", + "alpha-PHP", + "PV7" + ], + "aliasesStr": "α-PHP, alpha-PHP, PV7", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "highly addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "25-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "2-20 minutes" + }, + { + "name": "Peak", + "value": "1-2.5 hours" + }, + { + "name": "Offset", + "value": "1-5 hours" + }, + { + "name": "Afterglow", + "value": "1-48 hours" + }, + { + "name": "Total", + "value": "2-8 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "1-5 mg" + }, + { + "name": "Common", + "value": "5-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Peak", + "value": "20-45 minutes" + }, + { + "name": "Offset", + "value": "30-90 minutes" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "2-5 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "2-8 minutes" + }, + { + "name": "Peak", + "value": "30-90 minutes" + }, + { + "name": "Offset", + "value": "1-4 hours" + }, + { + "name": "Afterglow", + "value": "1-8 hours" + }, + { + "name": "Total", + "value": "2-5 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/A-PVP", + "name": "A-PVP", + "aliases": [ + "alpha-pvp", + "apvp", + "alpha-Pyrrolidinopentiophenone", + "flocka", + "flakka", + "α-pvp", + "αpvp" + ], + "aliasesStr": "alpha-pvp, apvp, alpha-Pyrrolidinopentiophenone, flocka, flakka, α-pvp, αpvp", + "summary": "A potent, short-lasting pyrovalerone-type stimulant which became popular despite often being said to not be particularly euphoric, perhaps due to its propensity to cause compulsive redosing. Effects should be similar to MDPV.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "highly addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "25-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Heavy", + "value": "25-50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "2-20 minutes" + }, + { + "name": "Peak", + "value": "1-2.5 hours" + }, + { + "name": "Offset", + "value": "1-5 hours" + }, + { + "name": "Afterglow", + "value": "4-12 hours" + }, + { + "name": "Total", + "value": "2-6 hours" + }, + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + }, + { + "name": "After Effects", + "value": "1-48 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "1-5 mg" + }, + { + "name": "Common", + "value": "5-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Peak", + "value": "20-45 minutes" + }, + { + "name": "Offset", + "value": "30-90 minutes" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "2-5 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 seconds" + }, + { + "name": "Peak", + "value": "3-6 minutes" + }, + { + "name": "Offset", + "value": "15-30 minutes" + }, + { + "name": "Afterglow", + "value": "1-3 hours" + }, + { + "name": "Total", + "value": "30-60 minutes" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "25-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Heavy", + "value": "25-50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "2-20 minutes" + }, + { + "name": "Peak", + "value": "1-2.5 hours" + }, + { + "name": "Offset", + "value": "1-5 hours" + }, + { + "name": "Afterglow", + "value": "4-12 hours" + }, + { + "name": "Total", + "value": "2-6 hours" + }, + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + }, + { + "name": "After Effects", + "value": "1-48 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_aPVP.shtml", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/AB-FUBINACA", + "name": "AB-FUBINACA", + "aliases": [ + "ab-fub" + ], + "aliasesStr": "ab-fub", + "summary": "Arguably the most common synthetic cannabinoid, AB-FUBINACA was originally developed by Pfizer as an analgesic, but has since abandoned for medical use. It has since found a following in the RC community, however it's extremely high potency and inclusion in synthetic blends makes it dangerous, and it has killed in overdose. Exercise caution.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "cannabinoids" + ], + "roas": [ + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-3 mg" + }, + { + "name": "Strong", + "value": "3-5 mg" + }, + { + "name": "Heavy", + "value": "5 mg" + } + ], + "duration": [ + { + "name": "Peak", + "value": "30-60 minutes" + }, + { + "name": "Offset", + "value": "10-20 minutes" + }, + { + "name": "Afterglow", + "value": "15-30 minutes" + }, + { + "name": "Total", + "value": "1-2 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "0.25-0.5 mg" + }, + { + "name": "Common", + "value": "0.5-1.5 mg" + }, + { + "name": "Strong", + "value": "1.5-3 mg" + }, + { + "name": "Heavy", + "value": "3 " + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-240 minutes" + }, + { + "name": "Duration", + "value": "5-15 hours" + }, + { + "name": "After Effects", + "value": "2-10 hours" + } + ] + }, + { + "name": "Vapourized", + "dosage": [ + { + "name": "Light", + "value": "0.25-0.5 mg" + }, + { + "name": "Common", + "value": "0.5-1.5 mg" + }, + { + "name": "Strong", + "value": "1.5-3 mg" + }, + { + "name": "Heavy", + "value": "3 " + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-5 minutes" + }, + { + "name": "Duration", + "value": "1-2 hours" + }, + { + "name": "After Effects", + "value": "1-2 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "2C-T-x" + }, + { + "status": "Caution", + "name": "2C-x" + }, + { + "status": "Caution", + "name": "5-MeO-xxT" + }, + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "ΑMT" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Caution", + "name": "DMT" + }, + { + "status": "Caution", + "name": "DOx" + }, + { + "status": "Caution", + "name": "LSD" + }, + { + "status": "Caution", + "name": "Mescaline" + }, + { + "status": "Caution", + "name": "Psilocybin mushrooms" + }, + { + "status": "Caution", + "name": "25x-NBOMe" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_ABFUBINACA.shtml", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/AL-LAD", + "name": "AL-LAD", + "aliases": [ + "allad" + ], + "aliasesStr": "allad", + "summary": "AL-LAD is a hallucinogenic drug, lysergamide and an analogue of LSD. It is reported as having some subtle experiential differences to LSD (such as increased visuals), and also appears to be slightly shorter lasting. AL-LAD doses are similar to those of LSD, depending on purity. Its availability on the Internet since 2013 has lead to strong popularity among the drug community.", + "toxicity": [ + "toxic dose is unknown", + "extremely low toxicity" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "5-7 days", + "zero": "14 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 µg" + }, + { + "name": "Light", + "value": "50-100 µg" + }, + { + "name": "Common", + "value": "100-225 µg" + }, + { + "name": "Strong", + "value": "225-350 µg" + }, + { + "name": "Heavy", + "value": "350 µg" + }, + { + "name": "Light", + "value": "40-75 ug" + }, + { + "name": "Common", + "value": "75-175 ug" + }, + { + "name": "Strong", + "value": "175-250 ug" + }, + { + "name": "Heavy", + "value": "250 ug" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "2.5-5 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "2-18 hours" + }, + { + "name": "Total", + "value": "7-10 hours" + }, + { + "name": "Onset", + "value": "45-120 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 µg" + }, + { + "name": "Light", + "value": "50-100 µg" + }, + { + "name": "Common", + "value": "100-225 µg" + }, + { + "name": "Strong", + "value": "225-350 µg" + }, + { + "name": "Heavy", + "value": "350 µg" + }, + { + "name": "Light", + "value": "40-75 ug" + }, + { + "name": "Common", + "value": "75-175 ug" + }, + { + "name": "Strong", + "value": "175-250 ug" + }, + { + "name": "Heavy", + "value": "250 ug" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "2.5-5 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "2-18 hours" + }, + { + "name": "Total", + "value": "7-10 hours" + }, + { + "name": "Onset", + "value": "45-120 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_ALLAD.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/ALD-52", + "name": "ALD-52", + "aliases": [ + "ald52", + "1alsd", + "1a-lsd" + ], + "aliasesStr": "ald52, 1alsd, 1a-lsd", + "summary": "ALD-52, or N-acetyl-LSD is a less common chemical analogue of LSD, first synthesised by Albert Hoffman. It was famously implicated in the 'Orange Sunshine' trial. A psychedelic lysergamide, this compound exhibits similar properties to LSD, and is thought to be a pro-drug for LSD.", + "toxicity": [ + "toxic dose is unknown", + "extremely low toxicity" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "5-7 days", + "zero": "14 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "30 µg" + }, + { + "name": "Light", + "value": "30-100 µg" + }, + { + "name": "Common", + "value": "100-175 µg" + }, + { + "name": "Strong", + "value": "175-325 µg" + }, + { + "name": "Heavy", + "value": "325 µg" + }, + { + "name": "Light", + "value": "25-75 ug" + }, + { + "name": "Common", + "value": "75-150 ug" + }, + { + "name": "Strong", + "value": "150-300 ug" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "3-5 hours" + }, + { + "name": "Afterglow", + "value": "4-24 hours" + }, + { + "name": "Total", + "value": "8-14 hours" + }, + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Duration", + "value": "9-14 hours" + }, + { + "name": "After Effects", + "value": "12-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "30 µg" + }, + { + "name": "Light", + "value": "30-100 µg" + }, + { + "name": "Common", + "value": "100-175 µg" + }, + { + "name": "Strong", + "value": "175-325 µg" + }, + { + "name": "Heavy", + "value": "325 µg" + }, + { + "name": "Light", + "value": "25-75 ug" + }, + { + "name": "Common", + "value": "75-150 ug" + }, + { + "name": "Strong", + "value": "150-300 ug" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "3-5 hours" + }, + { + "name": "Afterglow", + "value": "4-24 hours" + }, + { + "name": "Total", + "value": "8-14 hours" + }, + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Duration", + "value": "9-14 hours" + }, + { + "name": "After Effects", + "value": "12-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/APICA", + "name": "APICA", + "aliases": [ + "APICA", + "SDB-001", + "2NE1" + ], + "aliasesStr": "APICA, SDB-001, 2NE1", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "cannabinoids" + ], + "roas": [ + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "0.5-1.5 mg" + }, + { + "name": "Common", + "value": "1.5-2 mg" + }, + { + "name": "Strong", + "value": "2-4 mg" + }, + { + "name": "Heavy", + "value": "4 mg" + } + ], + "duration": [ + { + "name": "Peak", + "value": "10-30 minutes" + }, + { + "name": "Offset", + "value": "5-10 minutes" + }, + { + "name": "Afterglow", + "value": "15-35 minutes" + }, + { + "name": "Total", + "value": "30-60 minutes" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Acetylfentanyl", + "name": "Acetylfentanyl", + "aliases": [ + "acetyl-fentanyl", + "a-f" + ], + "aliasesStr": "acetyl-fentanyl, a-f", + "summary": "Acetyl-Fentanyl is an opioid analgesic substance that is an analogue of Fentanyl. It's potency is roughly ~6.67 times that of Morphine. Making it ~15 times less potent than its parent compound Fentanyl.", + "toxicity": [ + "potentially fatal at heavy dosages", + "potentially lethal when mixed with depressants like alcohol or benzodiazepines", + "unintentionally spilling a very small amount of acetylfentanyl on one's skin could result in a fatal overdose." + ], + "addictionPotential": "extremely addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "opioids" + ], + "roas": [ + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Total", + "value": "1-4 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "7-10 minutes" + }, + { + "name": "Total", + "value": "3-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "1-3 mg", + "note": " NOTE: ~3.75mg Freebase = ~125ug Fentanyl IV = ~10mg Morphine IV'd." + }, + { + "name": "Common", + "value": "3-5 mg", + "note": " NOTE: ~3.75mg Freebase = ~125ug Fentanyl IV = ~10mg Morphine IV'd." + }, + { + "name": "Strong", + "value": "5-7 mg", + "note": " NOTE: ~3.75mg Freebase = ~125ug Fentanyl IV = ~10mg Morphine IV'd." + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Duration", + "value": "1-4 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Acetylfentanyl.shtml", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Adrafinil", + "name": "Adrafinil", + "aliases": [], + "aliasesStr": "", + "summary": "A prodrug to modafinil, this compound is often used to increase wakefulness and alertness. Due to hepatic metabolism it has a slower onset than modafinil and may cause liver damage in excess. Some users have reported acne as an adverse effect. Unregulated in the US.", + "addictionPotential": "not addictive with a low potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "benzhydryl", + "nootropic|nootropics" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "100 mg" + }, + { + "name": "Light", + "value": "150-250 mg" + }, + { + "name": "Common", + "value": "250-400 mg" + }, + { + "name": "Strong", + "value": "400-600 mg" + }, + { + "name": "Heavy", + "value": "600 mg" + }, + { + "name": "Threshold", + "value": "100-150 mg" + }, + { + "name": "Light", + "value": "150-250 mg" + }, + { + "name": "Common", + "value": "250-400 mg" + }, + { + "name": "Heavy", + "value": "600 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-60 minutes" + }, + { + "name": "Onset", + "value": "1-2 hours" + }, + { + "name": "Peak", + "value": "4.5-6 hours" + }, + { + "name": "Offset", + "value": "1-3 hours" + }, + { + "name": "Afterglow", + "value": "2-6 hours" + }, + { + "name": "Total", + "value": "6-12 hours" + }, + { + "name": "Onset", + "value": "45-120 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "100 mg" + }, + { + "name": "Light", + "value": "150-250 mg" + }, + { + "name": "Common", + "value": "250-400 mg" + }, + { + "name": "Strong", + "value": "400-600 mg" + }, + { + "name": "Heavy", + "value": "600 mg" + }, + { + "name": "Threshold", + "value": "100-150 mg" + }, + { + "name": "Light", + "value": "150-250 mg" + }, + { + "name": "Common", + "value": "250-400 mg" + }, + { + "name": "Heavy", + "value": "600 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-60 minutes" + }, + { + "name": "Onset", + "value": "1-2 hours" + }, + { + "name": "Peak", + "value": "4.5-6 hours" + }, + { + "name": "Offset", + "value": "1-3 hours" + }, + { + "name": "Afterglow", + "value": "2-6 hours" + }, + { + "name": "Total", + "value": "6-12 hours" + }, + { + "name": "Onset", + "value": "45-120 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Adrafinil.shtml", + "classes": { + "psychoactive": [ + "Habit Forming", + "Nootropic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Alcohol", + "name": "Alcohol", + "aliases": [ + "etoh", + "beer", + "ethanol", + "booze", + "hooch" + ], + "aliasesStr": "etoh, beer, ethanol, booze, hooch", + "summary": "Alcohol is a CNS depressant that acts through the GABAₐ receptor, and is one of the most common strong psychoactives used by humans. It has a long history of use and its intoxicating effects are well-studied and documented. It remains legal in most parts of the world.", + "toxicity": [ + "Death from ethanol consumption is possible when blood alcohol levels reach 0.4%" + ], + "addictionPotential": "extremely addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "GABA", + "depressants" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 g" + }, + { + "name": "Light", + "value": "10-20 g" + }, + { + "name": "Common", + "value": "20-30 g" + }, + { + "name": "Strong", + "value": "30-40 g" + }, + { + "name": "Heavy", + "value": "40 g" + }, + { + "name": "Light", + "value": "1-2 units", + "note": " NOTE: Alcohol consumption should be spread out over a few hours and ideally separated by water breaks. Check the label on alcohol for unit content" + }, + { + "name": "Common", + "value": "2-4 units", + "note": " NOTE: Alcohol consumption should be spread out over a few hours and ideally separated by water breaks. Check the label on alcohol for unit content" + }, + { + "name": "Heavy", + "value": "5-6 units", + "note": " NOTE: Alcohol consumption should be spread out over a few hours and ideally separated by water breaks. Check the label on alcohol for unit content" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-45 minutes" + }, + { + "name": "Onset", + "value": "2-5 minutes" + }, + { + "name": "Peak", + "value": "30-90 minutes" + }, + { + "name": "Offset", + "value": "45-120 minutes" + }, + { + "name": "Afterglow", + "value": "6-48 hours" + }, + { + "name": "Total", + "value": "1.5-5 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "1.5-3 hours" + }, + { + "name": "After Effects", + "value": "6-48 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 g" + }, + { + "name": "Light", + "value": "10-20 g" + }, + { + "name": "Common", + "value": "20-30 g" + }, + { + "name": "Strong", + "value": "30-40 g" + }, + { + "name": "Heavy", + "value": "40 g" + }, + { + "name": "Light", + "value": "1-2 units", + "note": " NOTE: Alcohol consumption should be spread out over a few hours and ideally separated by water breaks. Check the label on alcohol for unit content" + }, + { + "name": "Common", + "value": "2-4 units", + "note": " NOTE: Alcohol consumption should be spread out over a few hours and ideally separated by water breaks. Check the label on alcohol for unit content" + }, + { + "name": "Heavy", + "value": "5-6 units", + "note": " NOTE: Alcohol consumption should be spread out over a few hours and ideally separated by water breaks. Check the label on alcohol for unit content" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-45 minutes" + }, + { + "name": "Onset", + "value": "2-5 minutes" + }, + { + "name": "Peak", + "value": "30-90 minutes" + }, + { + "name": "Offset", + "value": "45-120 minutes" + }, + { + "name": "Afterglow", + "value": "6-48 hours" + }, + { + "name": "Total", + "value": "1.5-5 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "1.5-3 hours" + }, + { + "name": "After Effects", + "value": "6-48 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Low Risk & Decrease", + "name": "2c-t-x", + "note": "Both these classes of compound can interact unpredictably. Caution should be exercised." + }, + { + "status": "Low Risk & Decrease", + "name": "2c-x" + }, + { + "status": "Low Risk & Decrease", + "name": "5-meo-xxt" + }, + { + "status": "Caution", + "name": "amphetamines", + "note": "Drinking on stimulants is risky because the sedative effects of the alcohol are reduced, and these are what the body uses to gauge drunkenness. This typically leads to excessive drinking with greatly reduced inhibitions, high risk of liver damage and increased dehydration. They will also allow you to drink past a point where you might normally pass out, increasing the risk. If you do decide to do this then you should set a limit of how much you will drink each hour and stick to it, bearing in mind that you will feel the alcohol and the stimulant less. Extended release formulations may severely impede sleep, further worsening the hangover." + }, + { + "status": "Caution", + "name": "amt", + "note": "aMT has a broad mechanism of action in the brain and so does alcohol so the combination can be unpredictable" + }, + { + "status": "Dangerous", + "name": "benzodiazepines", + "note": "Ethanol ingestion may potentiate the CNS effects of many benzodiazepines. The two substances potentiate each other strongly and unpredictably, very rapidly leading to unconsciousness. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Blacking out and memory loss is almost certain." + }, + { + "status": "Dangerous", + "name": "benzos", + "note": "Ethanol ingestion may potentiate the CNS effects of many benzodiazepines. The two substances potentiate each other strongly and unpredictably, very rapidly leading to unconsciousness. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Blacking out and memory loss is almost certain." + }, + { + "status": "Low Risk & No Synergy", + "name": "caffeine" + }, + { + "status": "Low Risk & Synergy", + "name": "cannabis", + "note": "In excess, this combination can cause nausea." + }, + { + "status": "Unsafe", + "name": "cocaine", + "note": "Drinking on stimulants is risky because the sedative effects of the alcohol are reduced, and these are what the body uses to gauge drunkenness. This typically leads to excessive drinking with greatly reduced inhibitions, high risk of liver damage and increased dehydration. They will also allow you to drink past a point where you might normally pass out, increasing the risk. If you do decide to do this then you should set a limit of how much you will drink each hour and stick to it, bearing in mind that you will feel the alcohol less. Cocaine is potentiated somewhat by alcohol because of the formation of cocaethylene." + }, + { + "status": "Low Risk & Decrease", + "name": "dmt" + }, + { + "status": "Low Risk & Decrease", + "name": "dox", + "note": "Drinking on stimulants is risky because the sedative effects of the alcohol are reduced, and these are what the body uses to gauge drunkenness. This typically leads to excessive drinking with greatly reduced inhibitions, high risk of liver damage and increased dehydration. They will also allow you to drink past a point where you might normally pass out, increasing the risk." + }, + { + "status": "Dangerous", + "name": "dxm", + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place affected patients in the recovery position to prevent vomit aspiration from excess. Additionally CNS depression can lead to difficulty breathing. Avoid on anything higher than 1st plateau." + }, + { + "status": "Dangerous", + "name": "ghb/gbl", + "note": "Even in very low doses this combination rapidly leads to memory loss, severe ataxia and unconsciousness. There is a high risk of vomit aspiration while unconscious." + }, + { + "status": "Dangerous", + "name": "ketamine", + "note": "Both substances cause ataxia and bring a very high risk of vomiting and unconsciousness. If the user falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position." + }, + { + "status": "Low Risk & Decrease", + "name": "lsd" + }, + { + "status": "Unsafe", + "name": "maois", + "note": "Tyramine found in many alcoholic beverages can have dangerous reactions with MAOIs, causing an increase in blood pressure." + }, + { + "status": "Caution", + "name": "mdma", + "note": "Both MDMA and alcohol cause dehydration. Approach this combination with caution, moderation and sufficient hydration. More than a small amount of alcohol will dull the euphoria of MDMA" + }, + { + "status": "Low Risk & Decrease", + "name": "mescaline" + }, + { + "status": "Low Risk & Decrease", + "name": "mushrooms" + }, + { + "status": "Dangerous", + "name": "mxe", + "note": "There is a high risk of memory loss, vomiting and severe ataxia from this combination." + }, + { + "status": "Low Risk & Decrease", + "name": "nbomes" + }, + { + "status": "Caution", + "name": "nitrous", + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely." + }, + { + "status": "Dangerous", + "name": "opioids", + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place affected patients in the recovery position to prevent vomit aspiration from excess. Memory blackouts are likely" + }, + { + "status": "Unsafe", + "name": "pcp", + "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner." + }, + { + "status": "Caution", + "name": "ssris", + "note": "Alcohol may potentiate some of the pharmacologic effects of CNS-active agents. Use in combination may result in additive central nervous system depression and/or impairment of judgment, thinking, and psychomotor skills." + }, + { + "status": "Dangerous", + "name": "tramadol", + "note": "Heavy CNS depressants, risk of seizures. Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place affected patients in the recovery position to prevent vomit aspiration from excess. Memory blackouts are likely." + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Alcohol.shtml", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Allylescaline", + "name": "Allylescaline", + "aliases": [ + "al" + ], + "aliasesStr": "al", + "summary": "Mescaline analogue with a much lower dose, that seems to rely heavily on colours.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "15 mg" + }, + { + "name": "Light", + "value": "20-30 mg" + }, + { + "name": "Common", + "value": "30-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + }, + { + "name": "Threshold", + "value": "15-20 mg" + }, + { + "name": "Light", + "value": "20-30 mg" + }, + { + "name": "Common", + "value": "30-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-240 minutes" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "45-240 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "1-16 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "15 mg" + }, + { + "name": "Light", + "value": "20-30 mg" + }, + { + "name": "Common", + "value": "30-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + }, + { + "name": "Threshold", + "value": "15-20 mg" + }, + { + "name": "Light", + "value": "20-30 mg" + }, + { + "name": "Common", + "value": "30-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-240 minutes" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "45-240 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "1-16 hours" + } + ] + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Allylescaline.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Alpha-GPC", + "name": "Alpha-GPC", + "aliases": [ + "Alpha-GPC", + "Choline Alfoscerate", + "L-Alpha Glycerylphosphorylcholine" + ], + "aliasesStr": "Alpha-GPC, Choline Alfoscerate, L-Alpha Glycerylphosphorylcholine", + "toxicity": [ + "extremely low toxicity" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "after prolonged and repeated usage", + "half": "7 days", + "zero": "14 days" + }, + "crossTolerances": [], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 mg" + }, + { + "name": "Light", + "value": "100-300 mg" + }, + { + "name": "Common", + "value": "300-500 mg" + }, + { + "name": "Strong", + "value": "500-1000 mg" + }, + { + "name": "Heavy", + "value": "1000 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-75 minutes" + }, + { + "name": "Total", + "value": "4-8 hours" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Alprazolam", + "name": "Alprazolam", + "aliases": [ + "xanax", + "prazolam", + "ksalol", + "niravam" + ], + "aliasesStr": "xanax, prazolam, ksalol, niravam", + "summary": "An extremely common benzodiazepine better known as Xanax, frequently prescribed for the treatment of anxiety and panic disorders. Alprazolam is short-lasting and primarily anxiolytic, though also possesses hypnotic properties. At high doses amnesia and loss of inhibition are common. Do not mix with other depressants.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "tolerance": { + "full": "within a couple of days of continuous use", + "half": null, + "zero": "7-14 days" + }, + "crossTolerances": [ + "benzodiazepines" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.1 mg" + }, + { + "name": "Light", + "value": "0.25-0.5 mg" + }, + { + "name": "Common", + "value": "0.5-1.5 mg" + }, + { + "name": "Strong", + "value": "1.5-2 mg" + }, + { + "name": "Heavy", + "value": "2 mg" + }, + { + "name": "Light", + "value": "0.25-0.5 mg", + "note": " NOTE: Warning - higher doses increase the chances of blacking out" + }, + { + "name": "Common", + "value": "0.5-1.5 mg", + "note": " NOTE: Warning - higher doses increase the chances of blacking out" + }, + { + "name": "Strong", + "value": "1.5-2 mg", + "note": " NOTE: Warning - higher doses increase the chances of blacking out" + }, + { + "name": "Heavy", + "value": "2 mg", + "note": " NOTE: Warning - higher doses increase the chances of blacking out" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "2-6 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + }, + { + "name": "Onset", + "value": "15-40 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "6-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.1 mg" + }, + { + "name": "Light", + "value": "0.25-0.5 mg" + }, + { + "name": "Common", + "value": "0.5-1.5 mg" + }, + { + "name": "Strong", + "value": "1.5-2 mg" + }, + { + "name": "Heavy", + "value": "2 mg" + }, + { + "name": "Light", + "value": "0.25-0.5 mg", + "note": " NOTE: Warning - higher doses increase the chances of blacking out" + }, + { + "name": "Common", + "value": "0.5-1.5 mg", + "note": " NOTE: Warning - higher doses increase the chances of blacking out" + }, + { + "name": "Strong", + "value": "1.5-2 mg", + "note": " NOTE: Warning - higher doses increase the chances of blacking out" + }, + { + "name": "Heavy", + "value": "2 mg", + "note": " NOTE: Warning - higher doses increase the chances of blacking out" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "2-6 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + }, + { + "name": "Onset", + "value": "15-40 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "6-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + }, + { + "status": "Dangerous", + "name": "Dissociatives" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine", + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Amanita_muscaria", + "name": "Amanita muscaria", + "aliases": [ + "Fly agaric", + "Fly amanita" + ], + "aliasesStr": "Fly agaric, Fly amanita" + }, + { + "url": "https://psychonautwiki.org/wiki/Amphetamine", + "name": "Amphetamine", + "aliases": [ + "speed", + "pepp", + "amphetamines", + "amphetamin", + "amfetamine", + "amph", + "hearts", + "pep" + ], + "aliasesStr": "speed, pepp, amphetamines, amphetamin, amfetamine, amph, hearts, pep", + "summary": "A very popular CNS stimulant available on prescription and black markets. Recreational in high doses, producing mild euphoria and an abundance of energy. Popular in eastern europe and the US.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "has high abuse potential and can cause psychological dependence with chronic use", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2.5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "25-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "10-20 mg", + "note": " NOTE: Street amphetamine is generally very impure, if you're working with a more pure chemical, lower doses will have greater effects." + }, + { + "name": "Common", + "value": "20-50 mg", + "note": " NOTE: Street amphetamine is generally very impure, if you're working with a more pure chemical, lower doses will have greater effects." + }, + { + "name": "Strong", + "value": "50-70 mg", + "note": " NOTE: Street amphetamine is generally very impure, if you're working with a more pure chemical, lower doses will have greater effects." + }, + { + "name": "Heavy", + "value": "70-90 mg", + "note": " NOTE: Street amphetamine is generally very impure, if you're working with a more pure chemical, lower doses will have greater effects." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-135 minutes" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Peak", + "value": "2.5-4 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "3-6 hours" + }, + { + "name": "Total", + "value": "6-8 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "4 mg" + }, + { + "name": "Light", + "value": "6-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "15-25 mg", + "note": " NOTE: Street amphetamine is generally very impure, if you're working with a more pure chemical, lower doses will have greater effects." + }, + { + "name": "Common", + "value": "25-40 mg", + "note": " NOTE: Street amphetamine is generally very impure, if you're working with a more pure chemical, lower doses will have greater effects." + }, + { + "name": "Strong", + "value": "40-75 mg", + "note": " NOTE: Street amphetamine is generally very impure, if you're working with a more pure chemical, lower doses will have greater effects." + }, + { + "name": "Heavy", + "value": "75-100 mg", + "note": " NOTE: Street amphetamine is generally very impure, if you're working with a more pure chemical, lower doses will have greater effects." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-90 minutes" + }, + { + "name": "Onset", + "value": "1-5 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "1.5-3 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + } + ] + }, + { + "name": "Intravenous", + "dosage": [ + { + "name": "Threshold", + "value": "4 mg" + }, + { + "name": "Light", + "value": "6-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "2-10 seconds" + }, + { + "name": "Onset", + "value": "2-10 seconds" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "4 mg" + }, + { + "name": "Light", + "value": "6-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "15-25 mg", + "note": " NOTE: Street amphetamine is generally very impure, if you're working with a more pure chemical, lower doses will have greater effects." + }, + { + "name": "Common", + "value": "25-40 mg", + "note": " NOTE: Street amphetamine is generally very impure, if you're working with a more pure chemical, lower doses will have greater effects." + }, + { + "name": "Strong", + "value": "40-75 mg", + "note": " NOTE: Street amphetamine is generally very impure, if you're working with a more pure chemical, lower doses will have greater effects." + }, + { + "name": "Heavy", + "value": "75-100 mg", + "note": " NOTE: Street amphetamine is generally very impure, if you're working with a more pure chemical, lower doses will have greater effects." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-90 minutes" + }, + { + "name": "Onset", + "value": "1-5 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "1.5-3 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2.5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "25-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "10-20 mg", + "note": " NOTE: Street amphetamine is generally very impure, if you're working with a more pure chemical, lower doses will have greater effects." + }, + { + "name": "Common", + "value": "20-50 mg", + "note": " NOTE: Street amphetamine is generally very impure, if you're working with a more pure chemical, lower doses will have greater effects." + }, + { + "name": "Strong", + "value": "50-70 mg", + "note": " NOTE: Street amphetamine is generally very impure, if you're working with a more pure chemical, lower doses will have greater effects." + }, + { + "name": "Heavy", + "value": "70-90 mg", + "note": " NOTE: Street amphetamine is generally very impure, if you're working with a more pure chemical, lower doses will have greater effects." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-135 minutes" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Peak", + "value": "2.5-4 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "3-6 hours" + }, + { + "name": "Total", + "value": "6-8 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "GHB" + }, + { + "status": "Caution", + "name": "GBL" + }, + { + "status": "Caution", + "name": "Opioids" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Caffeine" + }, + { + "status": "Caution", + "name": "Ketamine" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Psychedelic" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "PCP" + }, + { + "status": "Unsafe", + "name": "25x-NBOMe" + }, + { + "status": "Unsafe", + "name": "2C-T-x" + }, + { + "status": "Unsafe", + "name": "5-MeO-xxT" + }, + { + "status": "Unsafe", + "name": "DOx" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "ΑMT" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Amphetamines.shtml", + "classes": { + "psychoactive": [ + "Habit Forming", + "Stimulant" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Amphetamine_(disambiguation)", + "name": "Amphetamine (disambiguation)" + }, + { + "url": "https://psychonautwiki.org/wiki/Anadenanthera_peregrina", + "name": "Anadenanthera peregrina", + "aliases": [ + "Yopo", + "Jopo", + "Cohoba" + ], + "aliasesStr": "Yopo, Jopo, Cohoba" + }, + { + "url": "https://psychonautwiki.org/wiki/Aniracetam", + "name": "Aniracetam", + "aliases": [], + "aliasesStr": "", + "summary": "An anxiolytic nootropic which modulates the AMPA receptor. Significantly more potent than racetam. May have positive effects on memory and cognition. Little recreational value. Sold in Europe as a prescription drug, but not approved by the FDA in the US.", + "addictionPotential": "non-addictive with a low potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "racetam", + "nootropic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "350 mg" + }, + { + "name": "Light", + "value": "500-1200 mg" + }, + { + "name": "Common", + "value": "1200-1800 mg" + }, + { + "name": "Strong", + "value": "1800-2400 mg" + }, + { + "name": "Heavy", + "value": "2400 mg" + }, + { + "name": "Common", + "value": "1500 mg", + "note": "Rapid onset." + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Total", + "value": "3-5 hours" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "350 mg" + }, + { + "name": "Light", + "value": "500-1200 mg" + }, + { + "name": "Common", + "value": "1200-1800 mg" + }, + { + "name": "Strong", + "value": "1800-2400 mg" + }, + { + "name": "Heavy", + "value": "2400 mg" + }, + { + "name": "Common", + "value": "1500 mg", + "note": "Rapid onset." + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Total", + "value": "3-5 hours" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "MAOI" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Aniracetam.shtml", + "classes": { + "psychoactive": [ + "Nootropic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Antidepressants", + "name": "Antidepressants" + }, + { + "url": "https://psychonautwiki.org/wiki/Antihistamine", + "name": "Antihistamine" + }, + { + "url": "https://psychonautwiki.org/wiki/Antipsychotic", + "name": "Antipsychotic" + }, + { + "url": "https://psychonautwiki.org/wiki/Armodafinil", + "name": "Armodafinil", + "aliases": [ + "nuvigil" + ], + "aliasesStr": "nuvigil", + "summary": "The more potent of the two modafinil isomers, said to have a longer duration and lesser side effects. Sometimes prescribed for ADHD and daytime sleepiness.", + "toxicity": [ + "The median lethal dose at which 50% of participants die (LD50) from either armodafinil or modafinil for human beings has never been reached" + ], + "addictionPotential": "mildly addictive with a low potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "benzhydryl", + "nootropic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "40-100 mg" + }, + { + "name": "Common", + "value": "100-200 mg" + }, + { + "name": "Strong", + "value": "200-300 mg" + }, + { + "name": "Heavy", + "value": "300 mg" + }, + { + "name": "Common", + "value": "50-150 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-2.5 hours" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "4-7 hours" + }, + { + "name": "Offset", + "value": "2-5 hours" + }, + { + "name": "Afterglow", + "value": "2-12 hours" + }, + { + "name": "Total", + "value": "8-15 hours" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "12-16 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "40-100 mg" + }, + { + "name": "Common", + "value": "100-200 mg" + }, + { + "name": "Strong", + "value": "200-300 mg" + }, + { + "name": "Heavy", + "value": "300 mg" + }, + { + "name": "Common", + "value": "50-150 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-2.5 hours" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "4-7 hours" + }, + { + "name": "Offset", + "value": "2-5 hours" + }, + { + "name": "Afterglow", + "value": "2-12 hours" + }, + { + "name": "Total", + "value": "8-15 hours" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "12-16 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Hormonal birth control" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Armodafinil.shtml", + "classes": { + "psychoactive": [ + "Habit Forming", + "Nootropic", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Arylcyclohexylamines", + "name": "Arylcyclohexylamines" + }, + { + "url": "https://psychonautwiki.org/wiki/Atropa_belladonna", + "name": "Atropa belladonna", + "aliases": [ + "Belladonna", + "Deadly nightshade" + ], + "aliasesStr": "Belladonna, Deadly nightshade" + }, + { + "url": "https://psychonautwiki.org/wiki/Ayahuasca", + "name": "Ayahuasca", + "aliases": [ + "pharmahuasca", + "yage" + ], + "aliasesStr": "pharmahuasca, yage", + "summary": "A concoction made of two or more plants that contain at least an MAOI and DMT, the combination of which allows the DMT to work orally. Typically associated to south american cultures. Also, sometimes approximated synthetically by taking an external MAOI with extracted DMT. Causes intense, spiritually orientated hallucinogenic experiences.", + "toxicity": [ + "LD50 is around 50 times a regular dose" + ], + "addictionPotential": "not habit-forming", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Ayahuasca.shtml", + "classes": { + "psychoactive": [ + "Empathogen", + "Psychedelic" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Baclofen", + "name": "Baclofen", + "aliases": [ + "gablofen" + ], + "aliasesStr": "gablofen", + "summary": "Also known as Lioresal, Baclofen is a GABAb receptor agonist and central nervous system depressant used to treat spasticity, and holds promise as a treatment for alcoholism. It exhibits mild intoxicating effects similar to phenibut or pregabalin.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol, benzodiazepines or opioids" + ], + "addictionPotential": "moderately physically and psychologically addictive", + "tolerance": { + "full": "within a couple of days of continuous use", + "half": null, + "zero": "7 - 14 days" + }, + "crossTolerances": [ + "GABA" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-50 mg" + }, + { + "name": "Strong", + "value": "50-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + }, + { + "name": "Light", + "value": "10-20 mg", + "note": " NOTE: Past 125mg's you may run into the issue of blacking out." + }, + { + "name": "Common", + "value": "20-50 ", + "note": " NOTE: Past 125mg's you may run into the issue of blacking out." + }, + { + "name": "Strong", + "value": "50-75 ", + "note": " NOTE: Past 125mg's you may run into the issue of blacking out." + }, + { + "name": "Heavy", + "value": "75-125 mg", + "note": " NOTE: Past 125mg's you may run into the issue of blacking out." + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-75 minutes" + }, + { + "name": "Peak", + "value": "60-90 minutes" + }, + { + "name": "Afterglow", + "value": "6-12 hours" + }, + { + "name": "Total", + "value": "8-14 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-50 mg" + }, + { + "name": "Strong", + "value": "50-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + }, + { + "name": "Light", + "value": "10-20 mg", + "note": " NOTE: Past 125mg's you may run into the issue of blacking out." + }, + { + "name": "Common", + "value": "20-50 ", + "note": " NOTE: Past 125mg's you may run into the issue of blacking out." + }, + { + "name": "Strong", + "value": "50-75 ", + "note": " NOTE: Past 125mg's you may run into the issue of blacking out." + }, + { + "name": "Heavy", + "value": "75-125 mg", + "note": " NOTE: Past 125mg's you may run into the issue of blacking out." + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-75 minutes" + }, + { + "name": "Peak", + "value": "60-90 minutes" + }, + { + "name": "Afterglow", + "value": "6-12 hours" + }, + { + "name": "Total", + "value": "8-14 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "Dissociatives" + }, + { + "status": "Dangerous", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Barbiturates" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Methaqualone" + }, + { + "status": "Dangerous", + "name": "Opioids" + }, + { + "status": "Dangerous", + "name": "Depressant" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Banisteriopsis_caapi", + "name": "Banisteriopsis caapi", + "aliases": [ + "Ayahuasca", + "Caapi", + "Yagé" + ], + "aliasesStr": "Ayahuasca, Caapi, Yagé" + }, + { + "url": "https://psychonautwiki.org/wiki/Barbiturates", + "name": "Barbiturates" + }, + { + "url": "https://psychonautwiki.org/wiki/Benzydamine", + "name": "Benzydamine", + "aliases": [ + "tantum" + ], + "aliasesStr": "tantum", + "summary": "NSAID with local anesthetic and analgesic properties, similar to ibuprofen or naproxen. Sometimes abused in overdose with reported delirant and stimulant effects.", + "toxicity": [ + "toxic dose is unknown" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.25 g" + }, + { + "name": "Light", + "value": "0.5-1 g" + }, + { + "name": "Common", + "value": "1-1.5 g" + }, + { + "name": "Strong", + "value": "1.5-2 g" + }, + { + "name": "Heavy", + "value": "2 g" + }, + { + "name": "Light", + "value": "250-500 mg" + }, + { + "name": "Common", + "value": "500-1000 mg" + }, + { + "name": "Strong", + "value": "1000-1500 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "3-6 hours" + }, + { + "name": "Offset", + "value": "3-8 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + }, + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "2-48 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.25 g" + }, + { + "name": "Light", + "value": "0.5-1 g" + }, + { + "name": "Common", + "value": "1-1.5 g" + }, + { + "name": "Strong", + "value": "1.5-2 g" + }, + { + "name": "Heavy", + "value": "2 g" + }, + { + "name": "Light", + "value": "250-500 mg" + }, + { + "name": "Common", + "value": "500-1000 mg" + }, + { + "name": "Strong", + "value": "1000-1500 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "3-6 hours" + }, + { + "name": "Offset", + "value": "3-8 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + }, + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "2-48 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Deliriant", + "Stimulant", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Bromantane", + "name": "Bromantane", + "aliases": [], + "aliasesStr": "", + "summary": "An unusual stimulant and anxiolytic drug with dopamine and serotonin reuptake inhibition properties. Infamously used as a doping agent in the 1996 Olympics. There are some concerns it may exacerbate the underlying causes of Alzheimer's disease.", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "10-50 mg" + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + }, + { + "name": "Light", + "value": "50-100 mg", + "note": " NOTE: Anticholinergic effects at high doses (around 500mg)" + }, + { + "name": "Common", + "value": "100-200 mg", + "note": " NOTE: Anticholinergic effects at high doses (around 500mg)" + }, + { + "name": "Strong", + "value": "200-400 mg", + "note": " NOTE: Anticholinergic effects at high doses (around 500mg)" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-10 hours" + } + ], + "bioavailability": "42%" + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "10-50 mg" + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + }, + { + "name": "Light", + "value": "50-100 mg", + "note": " NOTE: Anticholinergic effects at high doses (around 500mg)" + }, + { + "name": "Common", + "value": "100-200 mg", + "note": " NOTE: Anticholinergic effects at high doses (around 500mg)" + }, + { + "name": "Strong", + "value": "200-400 mg", + "note": " NOTE: Anticholinergic effects at high doses (around 500mg)" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-10 hours" + } + ], + "bioavailability": "42%" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Nootropic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Bromazepam", + "name": "Bromazepam", + "aliases": [ + "lectopam", + "lexilium", + "lexotan", + "brazepam", + "lexotanil" + ], + "aliasesStr": "lectopam, lexilium, lexotan, brazepam, lexotanil", + "summary": "A benzodiazepine drug with a medium-long duration, developed by Roche in the 1960s. Has primarily anxiolytic properties. May cause lowered inhibitions and amnesia in high doses.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "3-6 mg" + }, + { + "name": "Common", + "value": "6-9 mg" + }, + { + "name": "Strong", + "value": "9-12 mg" + }, + { + "name": "Heavy", + "value": "12 mg" + }, + { + "name": "Light", + "value": "2.5-5 mg", + "note": " NOTE: 6mg of Bromazepam is approximately equivelant to 10mg Diazepam" + }, + { + "name": "Common", + "value": "5-10 mg", + "note": " NOTE: 6mg of Bromazepam is approximately equivelant to 10mg Diazepam" + }, + { + "name": "Heavy", + "value": "10-15 mg", + "note": " NOTE: 6mg of Bromazepam is approximately equivelant to 10mg Diazepam" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-120 minutes" + }, + { + "name": "Onset", + "value": "14-15 minutes" + }, + { + "name": "Peak", + "value": "2-12 hours" + }, + { + "name": "Offset", + "value": "30-60 minutes" + }, + { + "name": "Afterglow", + "value": "12-22 hours" + }, + { + "name": "Total", + "value": "6-15 hours" + }, + { + "name": "Onset", + "value": "10-20 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-16 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "3-6 mg" + }, + { + "name": "Common", + "value": "6-9 mg" + }, + { + "name": "Strong", + "value": "9-12 mg" + }, + { + "name": "Heavy", + "value": "12 mg" + }, + { + "name": "Light", + "value": "2.5-5 mg", + "note": " NOTE: 6mg of Bromazepam is approximately equivelant to 10mg Diazepam" + }, + { + "name": "Common", + "value": "5-10 mg", + "note": " NOTE: 6mg of Bromazepam is approximately equivelant to 10mg Diazepam" + }, + { + "name": "Heavy", + "value": "10-15 mg", + "note": " NOTE: 6mg of Bromazepam is approximately equivelant to 10mg Diazepam" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-120 minutes" + }, + { + "name": "Onset", + "value": "14-15 minutes" + }, + { + "name": "Peak", + "value": "2-12 hours" + }, + { + "name": "Offset", + "value": "30-60 minutes" + }, + { + "name": "Afterglow", + "value": "12-22 hours" + }, + { + "name": "Total", + "value": "6-15 hours" + }, + { + "name": "Onset", + "value": "10-20 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-16 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "Depressant" + }, + { + "status": "Dangerous", + "name": "Dissociatives" + }, + { + "status": "Dangerous", + "name": "Stimulants" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Bromazolam", + "name": "Bromazolam", + "aliases": [ + "xli-268", + "xli268" + ], + "aliasesStr": "xli-268, xli268", + "summary": "A rather novel Benzodiazepine that is structurally quite close to Alprazolam.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Strong", + "value": "2-4 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Bromo-DragonFLY", + "name": "Bromo-DragonFLY", + "aliases": [ + "bromo-d-fly", + "bdfly", + "bromo-dragon-fly", + "dob-dragonfly" + ], + "aliasesStr": "bromo-d-fly, bdfly, bromo-dragon-fly, dob-dragonfly", + "summary": "A psychedelic phenethylamine and benzofuran that is very potent and has a long duration. Was briefly sold as \"2C-B-FLY\" in 2005/6 and has lead to multiple deaths.", + "toxicity": [ + "extreme vasoconstrictive effects", + "one can easily overdose if this substance is not measured correctly", + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "6 days", + "zero": "14 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "75 µg" + }, + { + "name": "Light", + "value": "100-300 µg" + }, + { + "name": "Common", + "value": "300-500 µg" + }, + { + "name": "Strong", + "value": "500-750 µg" + }, + { + "name": "Heavy", + "value": "750 µg" + }, + { + "name": "Threshold", + "value": "100 ug", + "note": "Efects can last up to many days." + }, + { + "name": "Common", + "value": "100-400 ug", + "note": "Efects can last up to many days." + }, + { + "name": "Strong", + "value": "500-750 ug", + "note": "Efects can last up to many days." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "2-7 hours" + }, + { + "name": "Peak", + "value": "6-12 hours" + }, + { + "name": "Offset", + "value": "3-8 hours" + }, + { + "name": "Afterglow", + "value": "12-36 hours" + }, + { + "name": "Total", + "value": "1-4 days" + }, + { + "name": "Onset", + "value": "Up hours" + }, + { + "name": "Duration", + "value": "16-30 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "75 µg" + }, + { + "name": "Light", + "value": "100-300 µg" + }, + { + "name": "Common", + "value": "300-500 µg" + }, + { + "name": "Strong", + "value": "500-750 µg" + }, + { + "name": "Heavy", + "value": "750 µg" + }, + { + "name": "Threshold", + "value": "100 ug", + "note": "Efects can last up to many days." + }, + { + "name": "Common", + "value": "100-400 ug", + "note": "Efects can last up to many days." + }, + { + "name": "Strong", + "value": "500-750 ug", + "note": "Efects can last up to many days." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "2-7 hours" + }, + { + "name": "Peak", + "value": "6-12 hours" + }, + { + "name": "Offset", + "value": "3-8 hours" + }, + { + "name": "Afterglow", + "value": "12-36 hours" + }, + { + "name": "Total", + "value": "1-4 days" + }, + { + "name": "Onset", + "value": "Up hours" + }, + { + "name": "Duration", + "value": "16-30 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_BromoDragonfly.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Bufotenin", + "name": "Bufotenin", + "aliases": [ + "Bufotenin", + "5-HO-DMT" + ], + "aliasesStr": "Bufotenin, 5-HO-DMT", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "1 hour", + "zero": "2 hours" + }, + "roas": [ + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "5-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-60 seconds" + }, + { + "name": "Peak", + "value": "1-5 minutes" + }, + { + "name": "Offset", + "value": "5-10 minutes" + }, + { + "name": "Afterglow", + "value": "10-60 minutes" + }, + { + "name": "Total", + "value": "15-90 minutes" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Buprenorphine", + "name": "Buprenorphine", + "aliases": [ + "suboxone", + "subs", + "bupe" + ], + "aliasesStr": "suboxone, subs, bupe", + "summary": "A semi-synthetic opioid analgesic also known as subutex. Often administered as Butrans patches, or in combination with Naloxone as Suboxone, a heroin replacement therapy drug. Will cause withdrawals if you have an opioid tolerance and don't wait long enough (typically around 48 hours) before taking this.", + "toxicity": [ + "low toxicity" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "opioids" + ], + "roas": [ + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "0.3 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-4 mg" + }, + { + "name": "Strong", + "value": "4-8 mg" + }, + { + "name": "Heavy", + "value": "8 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "40-80 minutes" + }, + { + "name": "Peak", + "value": "1.5-2 hours" + }, + { + "name": "Afterglow", + "value": "1-3 days" + }, + { + "name": "Total", + "value": "18-24 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "0.2 mg" + }, + { + "name": "Light", + "value": "0.2-0.4 mg" + }, + { + "name": "Common", + "value": "0.4-0.8 mg" + }, + { + "name": "Strong", + "value": "0.8-1.5 mg" + }, + { + "name": "Heavy", + "value": "1.5 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "4-8 hours" + }, + { + "name": "Afterglow", + "value": "1-3 days" + }, + { + "name": "Total", + "value": "8-14 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "0.2-0.4 mg", + "note": " NOTE: The ceiling dose for Buprenorphine is usually between 16mg and 32mg, anything above this will not produce any increase in effects. Also, after dosing 4mg your opioid receptors are completely covered." + }, + { + "name": "Common", + "value": "0.4-0.8 mg", + "note": " NOTE: The ceiling dose for Buprenorphine is usually between 16mg and 32mg, anything above this will not produce any increase in effects. Also, after dosing 4mg your opioid receptors are completely covered." + }, + { + "name": "Strong", + "value": "0.8-1.5 mg", + "note": " NOTE: The ceiling dose for Buprenorphine is usually between 16mg and 32mg, anything above this will not produce any increase in effects. Also, after dosing 4mg your opioid receptors are completely covered." + }, + { + "name": "Heavy", + "value": "1.5 mg", + "note": " NOTE: The ceiling dose for Buprenorphine is usually between 16mg and 32mg, anything above this will not produce any increase in effects. Also, after dosing 4mg your opioid receptors are completely covered." + } + ], + "duration": [ + { + "name": "Onset", + "value": "60-90 minutes" + }, + { + "name": "Duration", + "value": "Low Dose: 8-12 hours High Dose: 24-72 hours hours" + }, + { + "name": "After Effects", + "value": "1-16 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Bupropion", + "name": "Bupropion", + "aliases": [ + "wellbutrin", + "zyban", + "amfebutamone" + ], + "aliasesStr": "wellbutrin, zyban, amfebutamone", + "summary": "A frequently prescribed atypical antidepressant. Occasionally prescribed as an aid to smoking cessation. May lower seizure threshold in predisposed individuals. Poorly understood mechanism of action, probably an NDRI. Avoid combination with other drugs.", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "75 mg" + }, + { + "name": "Light", + "value": "75-125 mg" + }, + { + "name": "Common", + "value": "125-225 mg" + }, + { + "name": "Strong", + "value": "225-325 mg" + }, + { + "name": "Heavy", + "value": "325 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "40-60 minutes" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "15-90 minutes" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Caffeine" + }, + { + "status": "Caution", + "name": "Ketamine" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Psychedelic" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Cannabis" + }, + { + "status": "Unsafe", + "name": "PCP" + }, + { + "status": "Unsafe", + "name": "25x-NBOMe" + }, + { + "status": "Unsafe", + "name": "2C-T-x" + }, + { + "status": "Unsafe", + "name": "5-MeO-xxT" + }, + { + "status": "Unsafe", + "name": "DOx" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Tapentadol" + }, + { + "status": "Dangerous", + "name": "Dextropropoxyphene" + }, + { + "status": "Dangerous", + "name": "lithium" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "ΑMT" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ], + "classes": { + "psychoactive": [ + "Habit Forming", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Buspirone", + "name": "Buspirone" + }, + { + "url": "https://psychonautwiki.org/wiki/Butylone", + "name": "Butylone", + "aliases": [ + "bk-mbdb", + "b1", + "bk-methyl-j" + ], + "aliasesStr": "bk-mbdb, b1, bk-methyl-j", + "summary": "Empathogen and stimulant of the cathinone class.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "40-80 mg" + }, + { + "name": "Common", + "value": "80-125 mg" + }, + { + "name": "Strong", + "value": "125-225 mg" + }, + { + "name": "Heavy", + "value": "225 mg" + }, + { + "name": "Threshold", + "value": "20-40 mg" + }, + { + "name": "Light", + "value": "40-70 mg" + }, + { + "name": "Common", + "value": "70-100 mg" + }, + { + "name": "Strong", + "value": "150-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Peak", + "value": "60-120 minutes" + }, + { + "name": "Offset", + "value": "60-120 minutes" + }, + { + "name": "Afterglow", + "value": "4-12 hours" + }, + { + "name": "Total", + "value": "3-5 hours" + }, + { + "name": "Onset", + "value": "25-45 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "2-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "40-80 mg" + }, + { + "name": "Common", + "value": "80-125 mg" + }, + { + "name": "Strong", + "value": "125-225 mg" + }, + { + "name": "Heavy", + "value": "225 mg" + }, + { + "name": "Threshold", + "value": "20-40 mg" + }, + { + "name": "Light", + "value": "40-70 mg" + }, + { + "name": "Common", + "value": "70-100 mg" + }, + { + "name": "Strong", + "value": "150-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Peak", + "value": "60-120 minutes" + }, + { + "name": "Offset", + "value": "60-120 minutes" + }, + { + "name": "Afterglow", + "value": "4-12 hours" + }, + { + "name": "Total", + "value": "3-5 hours" + }, + { + "name": "Onset", + "value": "25-45 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "2-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_bkMBDB.shtml", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Caffeine", + "name": "Caffeine", + "aliases": [ + "coffee" + ], + "aliasesStr": "coffee", + "summary": "Caffeine is a a CNS stimulant, and also the most widely used psychoactive substance in the world. It is legal and unregulated in most parts of the world, and is found in many commonly sold products. It has a good safety profile, though regular heavy use can cause physical dependence and contribute to certain medical conditions.", + "toxicity": [ + "The LD50 of caffeine in humans is dependent on individual sensitivity, but is estimated to be about 150 to 200 milligrams per kilogram of body mass or roughly 80 to 100 cups of coffee for an average adult" + ], + "addictionPotential": "produces dependence with chronic use and has a low abuse potential", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "20-50 mg" + }, + { + "name": "Common", + "value": "50-150 mg" + }, + { + "name": "Strong", + "value": "150-500 mg" + }, + { + "name": "Heavy", + "value": "500 mg" + }, + { + "name": "Threshold", + "value": "10-20 mg", + "note": " NOTE: The lethal dose for caffeine starts at approximately 3g. The average cup of coffee contains roughly 75-150mg of caffeine." + }, + { + "name": "Light", + "value": "20-75 mg", + "note": " NOTE: The lethal dose for caffeine starts at approximately 3g. The average cup of coffee contains roughly 75-150mg of caffeine." + }, + { + "name": "Common", + "value": "75 mg", + "note": " NOTE: The lethal dose for caffeine starts at approximately 3g. The average cup of coffee contains roughly 75-150mg of caffeine." + }, + { + "name": "Strong", + "value": "250-400 mg", + "note": " NOTE: The lethal dose for caffeine starts at approximately 3g. The average cup of coffee contains roughly 75-150mg of caffeine." + }, + { + "name": "Heavy", + "value": "400 mg", + "note": " NOTE: The lethal dose for caffeine starts at approximately 3g. The average cup of coffee contains roughly 75-150mg of caffeine." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "10-60 minutes" + }, + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "6-10 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "2-5 hours" + }, + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "1.5-5 hours" + }, + { + "name": "After Effects", + "value": "3-4 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "2.5 mg" + }, + { + "name": "Light", + "value": "10-25 mg" + }, + { + "name": "Common", + "value": "25-40 mg" + }, + { + "name": "Strong", + "value": "40-80 mg" + }, + { + "name": "Heavy", + "value": "80 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "0.5-2 minutes" + }, + { + "name": "Onset", + "value": "0.5-2 minutes" + }, + { + "name": "Peak", + "value": "0.5-1 hours" + }, + { + "name": "Offset", + "value": "6-10 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "1-2.5 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "20-50 mg" + }, + { + "name": "Common", + "value": "50-150 mg" + }, + { + "name": "Strong", + "value": "150-500 mg" + }, + { + "name": "Heavy", + "value": "500 mg" + }, + { + "name": "Threshold", + "value": "10-20 mg", + "note": " NOTE: The lethal dose for caffeine starts at approximately 3g. The average cup of coffee contains roughly 75-150mg of caffeine." + }, + { + "name": "Light", + "value": "20-75 mg", + "note": " NOTE: The lethal dose for caffeine starts at approximately 3g. The average cup of coffee contains roughly 75-150mg of caffeine." + }, + { + "name": "Common", + "value": "75 mg", + "note": " NOTE: The lethal dose for caffeine starts at approximately 3g. The average cup of coffee contains roughly 75-150mg of caffeine." + }, + { + "name": "Strong", + "value": "250-400 mg", + "note": " NOTE: The lethal dose for caffeine starts at approximately 3g. The average cup of coffee contains roughly 75-150mg of caffeine." + }, + { + "name": "Heavy", + "value": "400 mg", + "note": " NOTE: The lethal dose for caffeine starts at approximately 3g. The average cup of coffee contains roughly 75-150mg of caffeine." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "10-60 minutes" + }, + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "6-10 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "2-5 hours" + }, + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "1.5-5 hours" + }, + { + "name": "After Effects", + "value": "3-4 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Low Risk & No Synergy", + "name": "2c-t-x", + "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort." + }, + { + "status": "Low Risk & No Synergy", + "name": "2c-x", + "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort." + }, + { + "status": "Low Risk & No Synergy", + "name": "5-meo-xxt", + "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort." + }, + { + "status": "Low Risk & No Synergy", + "name": "alcohol" + }, + { + "status": "Caution", + "name": "amphetamines", + "note": "This combination of stimulants is not generally necessary and may increase strain on the heart, as well as potentially causing anxiety and greater physical discomfort." + }, + { + "status": "Caution", + "name": "amt", + "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort." + }, + { + "status": "Low Risk & Decrease", + "name": "benzodiazepines" + }, + { + "status": "Low Risk & Decrease", + "name": "benzos" + }, + { + "status": "Low Risk & No Synergy", + "name": "cannabis" + }, + { + "status": "Caution", + "name": "cocaine", + "note": "Both stimulants, risk of tachycardia, hypertension, and in extreme cases heart failure." + }, + { + "status": "Low Risk & No Synergy", + "name": "dmt" + }, + { + "status": "Caution", + "name": "dox", + "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating it may cause some physical discomfort." + }, + { + "status": "Low Risk & No Synergy", + "name": "dxm", + "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort." + }, + { + "status": "Low Risk & No Synergy", + "name": "ghb/gbl" + }, + { + "status": "Low Risk & No Synergy", + "name": "ketamine", + "note": "No unexpected interactions." + }, + { + "status": "Low Risk & No Synergy", + "name": "lsd" + }, + { + "status": "Low Risk & No Synergy", + "name": "maois" + }, + { + "status": "Caution", + "name": "mdma", + "note": "Caffiene is not really necessary with MDMA and increases any neurotoxic effects from MDMA" + }, + { + "status": "Low Risk & No Synergy", + "name": "mescaline", + "note": "High doses of caffeine are uncomfortable and this will be magnified by psychedelics" + }, + { + "status": "Low Risk & No Synergy", + "name": "mushrooms" + }, + { + "status": "Low Risk & No Synergy", + "name": "mxe", + "note": "No likely interactions" + }, + { + "status": "Caution", + "name": "nbomes", + "note": "Caffiene can bring out the natural stimulation from psychedelic drugs to make it uncomfortable. High doses can cause anxiety which is hard to handle while tripping" + }, + { + "status": "Low Risk & No Synergy", + "name": "nitrous" + }, + { + "status": "Low Risk & No Synergy", + "name": "opioids" + }, + { + "status": "Caution", + "name": "pcp", + "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner." + }, + { + "status": "Low Risk & No Synergy", + "name": "ssris" + }, + { + "status": "Low Risk & No Synergy", + "name": "tramadol" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Caffeine.shtml", + "classes": { + "psychoactive": [ + "Habit Forming", + "Nootropic", + "Stimulant" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Cake", + "name": "Cake", + "aliases": [ + "Cake", + "Caky", + "Cokoo" + ], + "aliasesStr": "Cake, Caky, Cokoo" + }, + { + "url": "https://psychonautwiki.org/wiki/Cannabidiol", + "name": "Cannabidiol", + "aliases": [ + "Cannabidiol", + "CBD", + "Epidiolex" + ], + "aliasesStr": "Cannabidiol, CBD, Epidiolex", + "toxicity": [ + "well-tolerated and shows little to no toxicity" + ], + "addictionPotential": "low abuse potential", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-30 minutes" + }, + { + "name": "Offset", + "value": "1-1.5 hours" + }, + { + "name": "Total", + "value": "1.5-4 hours" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Cannabinoid", + "name": "Cannabinoid" + }, + { + "url": "https://psychonautwiki.org/wiki/Cannabis", + "name": "Cannabis", + "aliases": [ + "weed", + "thc", + "marijuana", + "dagga", + "hash" + ], + "aliasesStr": "weed, thc, marijuana, dagga, hash", + "summary": "A common and widely used psychoactive plant, which is beginning to enjoy legal status for medical and even recreational use in some parts of the world. Usually smoked or eaten, primary effects are relaxation and an affinity towards food - a state described as being 'stoned.'", + "addictionPotential": "moderately habit-forming", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "1 - 2 weeks", + "zero": "2 - 3 weeks" + }, + "crossTolerances": [ + "cannabinoids" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2.5-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "4-6 hours" + }, + { + "name": "Afterglow", + "value": "6-12 hours" + }, + { + "name": "Total", + "value": "4-10 hours" + }, + { + "name": "Onset", + "value": "30-120 minutes" + }, + { + "name": "Duration", + "value": "4-10 hours" + }, + { + "name": "After Effects", + "value": "6-24 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "0.4 mg" + }, + { + "name": "Light", + "value": "0.4-2 mg" + }, + { + "name": "Common", + "value": "2-4 mg" + }, + { + "name": "Strong", + "value": "4-10 mg" + }, + { + "name": "Heavy", + "value": "10 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-60 mg" + }, + { + "name": "Strong", + "value": "60-100 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "5-10 minutes" + }, + { + "name": "Onset", + "value": "0.1-10 minutes" + }, + { + "name": "Peak", + "value": "15-45 minutes" + }, + { + "name": "Offset", + "value": "3-4 hours" + }, + { + "name": "Afterglow", + "value": "45-180 minutes" + }, + { + "name": "Total", + "value": "2.3-5 hours" + }, + { + "name": "Onset", + "value": "1-10 minutes" + }, + { + "name": "Duration", + "value": "1-4 hours" + }, + { + "name": "After Effects", + "value": "2-24 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "0.4 mg" + }, + { + "name": "Light", + "value": "0.4-2 mg" + }, + { + "name": "Common", + "value": "2-4 mg" + }, + { + "name": "Strong", + "value": "4-10 mg" + }, + { + "name": "Heavy", + "value": "10 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-60 mg" + }, + { + "name": "Strong", + "value": "60-100 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "5-10 minutes" + }, + { + "name": "Onset", + "value": "0.1-10 minutes" + }, + { + "name": "Peak", + "value": "15-45 minutes" + }, + { + "name": "Offset", + "value": "3-4 hours" + }, + { + "name": "Afterglow", + "value": "45-180 minutes" + }, + { + "name": "Total", + "value": "2.3-5 hours" + }, + { + "name": "Onset", + "value": "1-10 minutes" + }, + { + "name": "Duration", + "value": "1-4 hours" + }, + { + "name": "After Effects", + "value": "2-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "2c-t-x", + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics." + }, + { + "status": "Caution", + "name": "2c-x", + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics." + }, + { + "status": "Caution", + "name": "5-meo-xxt", + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics." + }, + { + "status": "Low Risk & Synergy", + "name": "alcohol", + "note": "In excess, this combination can cause nausea." + }, + { + "status": "Caution", + "name": "amphetamines", + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences" + }, + { + "status": "Caution", + "name": "amt", + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics. Small amounts can reduce nausea with aMT but take care." + }, + { + "status": "Low Risk & Decrease", + "name": "benzodiazepines" + }, + { + "status": "Low Risk & Decrease", + "name": "benzos" + }, + { + "status": "Low Risk & No Synergy", + "name": "caffeine" + }, + { + "status": "Caution", + "name": "cocaine", + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences" + }, + { + "status": "Caution", + "name": "dmt", + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics." + }, + { + "status": "Caution", + "name": "dox", + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics." + }, + { + "status": "Low Risk & Synergy", + "name": "dxm" + }, + { + "status": "Low Risk & Synergy", + "name": "ghb/gbl" + }, + { + "status": "Low Risk & Synergy", + "name": "ketamine" + }, + { + "status": "Caution", + "name": "lsd", + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics." + }, + { + "status": "Low Risk & Synergy", + "name": "maois" + }, + { + "status": "Low Risk & Synergy", + "name": "mdma", + "note": "Large amounts of cannabis may cause strong and somewhat unpredictable experiences in combination with MDMA. Cannabis should be saved for towards the end of the experience if possible." + }, + { + "status": "Caution", + "name": "mescaline", + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics." + }, + { + "status": "Caution", + "name": "mushrooms", + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics." + }, + { + "status": "Low Risk & Synergy", + "name": "mxe" + }, + { + "status": "Caution", + "name": "nbomes", + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics." + }, + { + "status": "Low Risk & Synergy", + "name": "nitrous" + }, + { + "status": "Low Risk & Synergy", + "name": "opioids" + }, + { + "status": "Low Risk & Synergy", + "name": "pcp" + }, + { + "status": "Low Risk & No Synergy", + "name": "ssris" + }, + { + "status": "Low Risk & Synergy", + "name": "tramadol" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Cannabis.shtml", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Psychedelic", + "Stimulant" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Carisoprodol", + "name": "Carisoprodol", + "aliases": [ + "soma" + ], + "aliasesStr": "soma", + "summary": "A skeletal muscle relaxant drug also known as Soma, carisoprodol has limited recreational value, however its main metabolite meprobamate has some moderate tranquilising properties. Sometimes found in concoctions with codeine or caffeine.", + "toxicity": [ + "moderate toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 mg" + }, + { + "name": "Light", + "value": "100-325 mg" + }, + { + "name": "Common", + "value": "325-500 mg" + }, + { + "name": "Strong", + "value": "500-750 mg" + }, + { + "name": "Heavy", + "value": "750 mg" + }, + { + "name": "Threshold", + "value": "100 mg", + "note": " NOTE: Tolerance raises very fast" + }, + { + "name": "Light", + "value": "100-325 mg", + "note": " NOTE: Tolerance raises very fast" + }, + { + "name": "Common", + "value": "325-500 mg", + "note": " NOTE: Tolerance raises very fast" + }, + { + "name": "Strong", + "value": "500-750 mg", + "note": " NOTE: Tolerance raises very fast" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Peak", + "value": "2-5 hours" + }, + { + "name": "Afterglow", + "value": "1-12 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "1-3 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 mg" + }, + { + "name": "Light", + "value": "100-325 mg" + }, + { + "name": "Common", + "value": "325-500 mg" + }, + { + "name": "Strong", + "value": "500-750 mg" + }, + { + "name": "Heavy", + "value": "750 mg" + }, + { + "name": "Threshold", + "value": "100 mg", + "note": " NOTE: Tolerance raises very fast" + }, + { + "name": "Light", + "value": "100-325 mg", + "note": " NOTE: Tolerance raises very fast" + }, + { + "name": "Common", + "value": "325-500 mg", + "note": " NOTE: Tolerance raises very fast" + }, + { + "name": "Strong", + "value": "500-750 mg", + "note": " NOTE: Tolerance raises very fast" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Peak", + "value": "2-5 hours" + }, + { + "name": "Afterglow", + "value": "1-12 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "1-3 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + }, + { + "status": "Dangerous", + "name": "Dissociatives" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Changa", + "name": "Changa", + "aliases": [], + "aliasesStr": "", + "summary": "Changa is the name given to a smoking blend of caapi or other MAOI containing plants with an infusion of extracted DMT. Changa often contains other milder psychoactive herbs as well. The maoi action results in a longer and more intense trip (see Ayahuasca) NOTE: There is no standardized recipe or concentration of infused DMT, therefor dosage and potency will vary per batch.", + "interactions": [ + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "classes": { + "psychoactive": [ + "Psychedelic", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-15 mg", + "note": " NOTE: These are tentative estimates as Changa potency and dosing will vary per batch/source." + }, + { + "name": "Common", + "value": "15-30 mg", + "note": " NOTE: These are tentative estimates as Changa potency and dosing will vary per batch/source." + }, + { + "name": "Strong", + "value": "30-50 mg", + "note": " NOTE: These are tentative estimates as Changa potency and dosing will vary per batch/source." + }, + { + "name": "Heavy", + "value": "50 ", + "note": " NOTE: These are tentative estimates as Changa potency and dosing will vary per batch/source." + } + ], + "duration": [ + { + "name": "Onset", + "value": "0-2 minutes" + }, + { + "name": "Duration", + "value": "6-12 minutes" + }, + { + "name": "After Effects", + "value": "1-36 hours" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Choline_bitartrate", + "name": "Choline bitartrate", + "aliases": [ + "Choline" + ], + "aliasesStr": "Choline", + "toxicity": [ + "extremely low toxicity" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "after prolonged and repeated usage", + "half": "7 days", + "zero": "14 days" + }, + "crossTolerances": [], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 mg" + }, + { + "name": "Light", + "value": "100-250 mg" + }, + { + "name": "Common", + "value": "250-1000 mg" + }, + { + "name": "Strong", + "value": "1000-2000 mg" + }, + { + "name": "Heavy", + "value": "2000 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-30 minutes" + }, + { + "name": "Onset", + "value": "45-75 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "2-8 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Cinolazepam", + "name": "Cinolazepam", + "aliases": [ + "geroderm" + ], + "aliasesStr": "geroderm", + "summary": "A benzodiazepine derivative drug with anxiolytic effects but mainly hypnotic effects. It is extremely effective for sleep aid but has mild euphoria compared to other benzos", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "tolerance": { + "full": "within a couple of days of continuous use", + "half": null, + "zero": "7 - 14 days" + }, + "crossTolerances": [ + "benzodiazepines" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "20-40 mg" + }, + { + "name": "Common", + "value": "40-80 mg" + }, + { + "name": "Strong", + "value": "80-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + }, + { + "name": "Light", + "value": "10-30 mg" + }, + { + "name": "Common", + "value": "30-60 mg" + }, + { + "name": "Strong", + "value": "60-120 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Afterglow", + "value": "12-24 hours" + }, + { + "name": "Total", + "value": "6null hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "12-20 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "20-40 mg" + }, + { + "name": "Common", + "value": "40-80 mg" + }, + { + "name": "Strong", + "value": "80-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + }, + { + "name": "Light", + "value": "10-30 mg" + }, + { + "name": "Common", + "value": "30-60 mg" + }, + { + "name": "Strong", + "value": "60-120 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Afterglow", + "value": "12-24 hours" + }, + { + "name": "Total", + "value": "6null hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "12-20 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + }, + { + "status": "Dangerous", + "name": "Dissociatives" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Citicoline", + "name": "Citicoline", + "aliases": [ + "Citicoline" + ], + "aliasesStr": "Citicoline", + "toxicity": [ + "extremely low toxicity" + ], + "addictionPotential": "not habit-forming", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 mg" + }, + { + "name": "Light", + "value": "100-250 mg" + }, + { + "name": "Common", + "value": "250-1000 mg" + }, + { + "name": "Strong", + "value": "1000-2000 mg" + }, + { + "name": "Heavy", + "value": "2000 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "2-3 hours" + }, + { + "name": "Onset", + "value": "1-2 hours" + }, + { + "name": "Peak", + "value": "2.5-3.5 hours" + }, + { + "name": "Offset", + "value": "30-40 hours" + }, + { + "name": "Afterglow", + "value": "40-60 hours" + }, + { + "name": "Total", + "value": "58-74 hours" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Classical_psychedelics", + "name": "Classical psychedelics" + }, + { + "url": "https://psychonautwiki.org/wiki/Clonazepam", + "name": "Clonazepam", + "aliases": [ + "klonopin", + "kpin" + ], + "aliasesStr": "klonopin, kpin", + "summary": "A medium-length common prescription benzodiazepine, often used to treat panic attacks because of its relatively fast sublingual onset. Primarily anxiolytic, but also possessing of other benzo traits.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "tolerance": { + "full": "within a couple of days of continuous use", + "half": null, + "zero": "7 - 14 days" + }, + "crossTolerances": [ + "benzodiazepines" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.1 mg" + }, + { + "name": "Light", + "value": "0.25-0.5 mg" + }, + { + "name": "Common", + "value": "0.5-1 mg" + }, + { + "name": "Strong", + "value": "1-2 mg" + }, + { + "name": "Heavy", + "value": "2 mg" + }, + { + "name": "Light", + "value": "0.25-0.5 mg", + "note": " NOTE: 0.5mg of Clonazepam is approximately equal to 10mg Diazepam." + }, + { + "name": "Common", + "value": "0.5-1 mg", + "note": " NOTE: 0.5mg of Clonazepam is approximately equal to 10mg Diazepam." + }, + { + "name": "Strong", + "value": "1-2 mg", + "note": " NOTE: 0.5mg of Clonazepam is approximately equal to 10mg Diazepam." + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Afterglow", + "value": "8-48 hours" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "20-45 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "8-48 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.1 mg" + }, + { + "name": "Light", + "value": "0.25-0.5 mg" + }, + { + "name": "Common", + "value": "0.5-1 mg" + }, + { + "name": "Strong", + "value": "1-2 mg" + }, + { + "name": "Heavy", + "value": "2 mg" + }, + { + "name": "Light", + "value": "0.25-0.5 mg", + "note": " NOTE: 0.5mg of Clonazepam is approximately equal to 10mg Diazepam." + }, + { + "name": "Common", + "value": "0.5-1 mg", + "note": " NOTE: 0.5mg of Clonazepam is approximately equal to 10mg Diazepam." + }, + { + "name": "Strong", + "value": "1-2 mg", + "note": " NOTE: 0.5mg of Clonazepam is approximately equal to 10mg Diazepam." + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Afterglow", + "value": "8-48 hours" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "20-45 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "8-48 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + }, + { + "status": "Dangerous", + "name": "Dissociatives" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine", + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Clonazolam", + "name": "Clonazolam", + "aliases": [ + "c-lam", + "clam" + ], + "aliasesStr": "c-lam, clam", + "summary": "A long lasting benzodiazepine with heavily hypnotic effects. The safety profile is not well established, and there have been reports that people taking it three days in a row have had a seizure. Most comparable to Triazolam, but with a much longer half-life.", + "toxicity": [ + "low toxicity", + "potentially lethal" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "tolerance": { + "full": "within a couple of days of continuous use", + "half": null, + "zero": "7 - 14 days" + }, + "crossTolerances": [ + "benzodiazepines" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 µg" + }, + { + "name": "Light", + "value": "75-200 µg" + }, + { + "name": "Common", + "value": "200-400 µg" + }, + { + "name": "Strong", + "value": "400-1 µg" + }, + { + "name": "Heavy", + "value": "1 µg" + }, + { + "name": "Threshold", + "value": "50-75 ug" + }, + { + "name": "Light", + "value": "75-200 ug" + }, + { + "name": "Common", + "value": "200-400 ug" + }, + { + "name": "Heavy", + "value": "500-1000 ug" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "6-10 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 µg" + }, + { + "name": "Light", + "value": "75-200 µg" + }, + { + "name": "Common", + "value": "200-400 µg" + }, + { + "name": "Strong", + "value": "400-1 µg" + }, + { + "name": "Heavy", + "value": "1 µg" + }, + { + "name": "Threshold", + "value": "50-75 ug" + }, + { + "name": "Light", + "value": "75-200 ug" + }, + { + "name": "Common", + "value": "200-400 ug" + }, + { + "name": "Heavy", + "value": "500-1000 ug" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "6-10 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + }, + { + "status": "Dangerous", + "name": "Dissociatives" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Clonazolam.shtml", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Research Chemical" + ], + "chemical": [ + "Benzodiazepine", + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Clonidine", + "name": "Clonidine", + "aliases": [ + "catapres", + "kapvay", + "duraclon" + ], + "aliasesStr": "catapres, kapvay, duraclon", + "summary": "Is a medication that is used to treat high blood pressure, anxiety, withdrawal (Typically from Alcohol, Opioids, Smoking) and many other uses.", + "addictionPotential": "not addictive and has a low potential for abuse", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 μg" + }, + { + "name": "Light", + "value": "50-75 μg" + }, + { + "name": "Common", + "value": "75-100 μg" + }, + { + "name": "Strong", + "value": "100-300 μg" + }, + { + "name": "Heavy", + "value": "300 μg" + }, + { + "name": "Light", + "value": "25-50 ug" + }, + { + "name": "Common", + "value": "50-100 ug" + }, + { + "name": "Strong", + "value": "100-250 ug" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "60-90 minutes" + }, + { + "name": "Offset", + "value": "6-8 hours" + }, + { + "name": "Total", + "value": "6-8 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "8-16 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 μg" + }, + { + "name": "Light", + "value": "50-75 μg" + }, + { + "name": "Common", + "value": "75-100 μg" + }, + { + "name": "Strong", + "value": "100-300 μg" + }, + { + "name": "Heavy", + "value": "300 μg" + }, + { + "name": "Light", + "value": "25-50 ug" + }, + { + "name": "Common", + "value": "50-100 ug" + }, + { + "name": "Strong", + "value": "100-250 ug" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "60-90 minutes" + }, + { + "name": "Offset", + "value": "6-8 hours" + }, + { + "name": "Total", + "value": "6-8 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "8-16 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + }, + { + "status": "Dangerous", + "name": "Dissociatives" + } + ], + "classes": { + "psychoactive": [ + "Depressant" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Cocaine", + "name": "Cocaine", + "aliases": [ + "coke" + ], + "aliasesStr": "coke", + "summary": "A highly popular, short acting CNS stimulant that works by blocking the reuptake of dopamine, serotonin, and norepinephrine. It is known to increase euphoria, confidence, sex-drive, focus, body temperature, and heart rate. Cocaine can cause severe vasoconstriction and is known to be cardiotoxic and have a high potential for compulsive redosing and addiction.", + "toxicity": [ + "individuals have died from as little as 30 mg applied to mucous membranes, whereas addicts may tolerate up to 5 grams daily" + ], + "addictionPotential": "highly addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-30 mg" + }, + { + "name": "Common", + "value": "30-60 mg" + }, + { + "name": "Strong", + "value": "60-90 mg" + }, + { + "name": "Heavy", + "value": "90 mg" + }, + { + "name": "Light", + "value": "20-50 mg", + "note": "Rapid onset. Depending on purity, dosage will vary" + }, + { + "name": "Common", + "value": "50-100 mg", + "note": "Rapid onset. Depending on purity, dosage will vary" + }, + { + "name": "Strong", + "value": "100-150 mg", + "note": "Rapid onset. Depending on purity, dosage will vary" + }, + { + "name": "Heavy", + "value": "150 mg", + "note": "Rapid onset. Depending on purity, dosage will vary" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "5-15 minutes" + }, + { + "name": "Onset", + "value": "1-10 minutes" + }, + { + "name": "Peak", + "value": "15-30 minutes" + }, + { + "name": "Offset", + "value": "10-30 minutes" + }, + { + "name": "Total", + "value": "10-90 minutes" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-30 mg" + }, + { + "name": "Common", + "value": "30-60 mg" + }, + { + "name": "Strong", + "value": "60-90 mg" + }, + { + "name": "Heavy", + "value": "90 mg" + }, + { + "name": "Light", + "value": "20-50 mg", + "note": "Rapid onset. Depending on purity, dosage will vary" + }, + { + "name": "Common", + "value": "50-100 mg", + "note": "Rapid onset. Depending on purity, dosage will vary" + }, + { + "name": "Strong", + "value": "100-150 mg", + "note": "Rapid onset. Depending on purity, dosage will vary" + }, + { + "name": "Heavy", + "value": "150 mg", + "note": "Rapid onset. Depending on purity, dosage will vary" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "5-15 minutes" + }, + { + "name": "Onset", + "value": "1-10 minutes" + }, + { + "name": "Peak", + "value": "15-30 minutes" + }, + { + "name": "Offset", + "value": "10-30 minutes" + }, + { + "name": "Total", + "value": "10-90 minutes" + } + ] + } + ], + "interactions": [ + { + "status": "Unsafe", + "name": "2c-t-x", + "note": "Cocaine and 2c-t-x both provide considerable stimulation. When combined they can result in severe vasoconstriction, tachycardia, hypertension, and in extreme cases heart failure." + }, + { + "status": "Caution", + "name": "2c-x", + "note": "The anxiogenic and focusing effects of stimulants increase the chance of unpleasant thought loops. The combination is generally unnecessary because of the stimulating effects of psychedelics. Combination of the stimulating effects may be uncomfortable." + }, + { + "status": "Unsafe", + "name": "5-meo-xxt", + "note": "The anxiogenic and focusing effects of stimulants increase the chance of unpleasant thought loops. The combination is generally unnecessary because of the stimulating effects of psychedelics. " + }, + { + "status": "Unsafe", + "name": "alcohol", + "note": "Drinking on stimulants is risky because the sedative effects of the alcohol are reduced, and these are what the body uses to gauge drunkenness. This typically leads to excessive drinking with greatly reduced inhibitions, high risk of liver damage and increased dehydration. They will also allow you to drink past a point where you might normally pass out, increasing the risk. If you do decide to do this then you should set a limit of how much you will drink each hour and stick to it, bearing in mind that you will feel the alcohol less. Cocaine is potentiated somewhat by alcohol because of the formation of cocaethylene." + }, + { + "status": "Caution", + "name": "amphetamines", + "note": "This combination of stimulants will increase strain on the heart. It is not generally worth it as cocaine has a mild blocking effect on dopamine releasers like amphetamine" + }, + { + "status": "Dangerous", + "name": "amt" + }, + { + "status": "Low Risk & Decrease", + "name": "benzodiazepines" + }, + { + "status": "Low Risk & Decrease", + "name": "benzos" + }, + { + "status": "Caution", + "name": "caffeine", + "note": "Both stimulants, risk of tachycardia, hypertension, and in extreme cases heart failure." + }, + { + "status": "Caution", + "name": "cannabis", + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences" + }, + { + "status": "Caution", + "name": "dmt", + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences" + }, + { + "status": "Unsafe", + "name": "dox", + "note": "The combined stimulating effects of the two can lead to an uncomfortable body-load, while the focusing effects of cocaine can easily lead to thought loops. Coming down from cocaine while the DOx is still active can be quite anxiogenic" + }, + { + "status": "Unsafe", + "name": "dxm", + "note": "Both substances raise heart rate, in extreme cases, panic attacks caused by these drugs have led to more serious heart issues" + }, + { + "status": "Caution", + "name": "ghb/gbl", + "note": "Stimulants increase respiration rate allowing a higher dose of sedatives. If the stimulant wears off first then the opiate may overcome the patient and cause respiratory arrest. Likewise the G can wear off and leave a dangerous concentration of cocaine behind" + }, + { + "status": "Caution", + "name": "ketamine", + "note": "No unexpected interactions, though likely to increase blood pressure but not an issue with sensible doses. Moving around on high doses of this combination may be ill advised due to risk of physical injury." + }, + { + "status": "Caution", + "name": "lsd", + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences" + }, + { + "status": "Dangerous", + "name": "maois", + "note": "This combination is poorly explored" + }, + { + "status": "Caution", + "name": "mdma", + "note": "Cocaine blocks some of the desirable effects of MDMA while increasing the risk of heart attack." + }, + { + "status": "Caution", + "name": "mescaline", + "note": "The focus and anxiety caused by stimulants is magnified by psychedelics and results in an increased risk of thought loops" + }, + { + "status": "Caution", + "name": "mushrooms", + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences" + }, + { + "status": "Caution", + "name": "mxe", + "note": "Stimulants taken with MXE can lead to hypermanic states much more easily, especially if sleep is avoided." + }, + { + "status": "Unsafe", + "name": "nbomes", + "note": "Cocaine and NBOMes both provide considerable stimulation. When combined they can result in severe vasoconstriction, tachycardia, hypertension, and in extreme cases heart failure." + }, + { + "status": "Low Risk & Synergy", + "name": "nitrous" + }, + { + "status": "Dangerous", + "name": "opioids", + "note": "Stimulants increase respiration rate allowing a higher dose of opiates. If the stimulant wears off first then the opiate may overcome the patient and cause respiratory arrest." + }, + { + "status": "Unsafe", + "name": "pcp", + "note": "This combination can easily lead to hypermanic states" + }, + { + "status": "Low Risk & No Synergy", + "name": "ssris", + "note": "May reduce each others' effectiveness. Cocaine can reduce mental stability and therefore exacerbate conditions which SSRIs are used to treat." + }, + { + "status": "Dangerous", + "name": "tramadol", + "note": "Tramadol and stimulants both increase the risk of seizures." + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Cocaine.shtml", + "classes": { + "psychoactive": [ + "Habit Forming", + "Stimulant" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Cocoa", + "name": "Cocoa" + }, + { + "url": "https://psychonautwiki.org/wiki/Codeine", + "name": "Codeine", + "aliases": [], + "aliasesStr": "", + "summary": "Codeine is a weaker opioid used to treat mild to moderate pain and to relieve cough. In many countries it is available over the counter in combination with paracetamol, which can easily be extracted to retrieve near-pure codeine. For this reason, it is used widely as a recreational opioid. It is metabolised into morphine in the body at a rate of 5% mg for mg.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or benzodiazepines" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "opioids" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "30 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "150-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + }, + { + "name": "Light", + "value": "50-100 mg", + "note": " NOTE: The ceiling effect differs from person to person, but it seems to fall between 400-600mg" + }, + { + "name": "Common", + "value": "100-150 mg", + "note": " NOTE: The ceiling effect differs from person to person, but it seems to fall between 400-600mg" + }, + { + "name": "Heavy", + "value": "150-200 mg", + "note": " NOTE: The ceiling effect differs from person to person, but it seems to fall between 400-600mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "30 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "150-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + }, + { + "name": "Light", + "value": "50-100 mg", + "note": " NOTE: The ceiling effect differs from person to person, but it seems to fall between 400-600mg" + }, + { + "name": "Common", + "value": "100-150 mg", + "note": " NOTE: The ceiling effect differs from person to person, but it seems to fall between 400-600mg" + }, + { + "name": "Heavy", + "value": "150-200 mg", + "note": " NOTE: The ceiling effect differs from person to person, but it seems to fall between 400-600mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Codeine.shtml", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Coluracetam", + "name": "Coluracetam", + "aliases": [], + "aliasesStr": "", + "summary": "A nootropic drug of the racetam class, originally developed to treat Alzheimer's disease, it is currently being investigated as a treatment for major depressive disorder and generalised anxiety disorder. May be a modulator of the AMPA receptor. Limited recreational value.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "not addictive with a low potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "racetam", + "nootropic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + }, + { + "name": "Heavy", + "value": "20 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + }, + { + "name": "Heavy", + "value": "20 mg" + }, + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-5 minutes" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "1-5 minutes" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + }, + { + "name": "Heavy", + "value": "20 mg" + }, + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-5 minutes" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "1-5 minutes" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + }, + { + "name": "Heavy", + "value": "20 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + }, + { + "name": "Sublingual", + "dosage": [ + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-10 minutes" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + }, + { + "status": "Dangerous", + "name": "Dissociatives" + } + ], + "classes": { + "psychoactive": [ + "Nootropic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Creatine", + "name": "Creatine", + "aliases": [ + "Creatine", + "N-Carbamimidoyl-N-methylglycine", + "Methylguanidoacetic acid" + ], + "aliasesStr": "Creatine, N-Carbamimidoyl-N-methylglycine, Methylguanidoacetic acid", + "addictionPotential": "not habit-forming with a low potential for abuse", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.25 g" + }, + { + "name": "Light", + "value": "1-5 g" + }, + { + "name": "Common", + "value": "5-10 g" + }, + { + "name": "Strong", + "value": "10-20 g" + }, + { + "name": "Heavy", + "value": "20 g" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Total", + "value": "30-36 hours" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Cyclazodone", + "name": "Cyclazodone", + "aliases": [ + "Cyclazodone" + ], + "aliasesStr": "Cyclazodone", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-45 minutes" + }, + { + "name": "Total", + "value": "5-7 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/DET", + "name": "DET", + "aliases": [ + "diethyltryptamine" + ], + "aliasesStr": "diethyltryptamine", + "summary": "A surprisingly uncommon analogue of DMT with similar effects and reported oral activity without the aid of an MAOI.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "20-40 mg" + }, + { + "name": "Common", + "value": "40-70 mg" + }, + { + "name": "Strong", + "value": "70-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + }, + { + "name": "Light", + "value": "20-40 mg" + }, + { + "name": "Common", + "value": "50-80 mg" + }, + { + "name": "Strong", + "value": "80 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "2-8 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "20-40 mg" + }, + { + "name": "Common", + "value": "40-70 mg" + }, + { + "name": "Strong", + "value": "70-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + }, + { + "name": "Light", + "value": "20-40 mg" + }, + { + "name": "Common", + "value": "50-80 mg" + }, + { + "name": "Strong", + "value": "80 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "2-8 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + }, + { + "name": "Vapourized", + "dosage": [ + { + "name": "Light", + "value": "15-25 mg" + }, + { + "name": "Common", + "value": "30-50 mg" + }, + { + "name": "Strong", + "value": "50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-5 minutes" + } + ] + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DET.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/DMXE", + "name": "DMXE", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-20 mg" + }, + { + "name": "Common", + "value": "20-35 mg" + }, + { + "name": "Strong", + "value": "35-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-90 minutes" + }, + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Peak", + "value": "1-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Total", + "value": "2-6 hours" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/DOB", + "name": "DOB", + "aliases": [], + "aliasesStr": "", + "summary": "DOB is a relatively uncommon synthetic psychedelic. It is best known for its very low doses and long duration. Historically it has rarely been taken deliberately, but in place of LSD, however it has recently found its own place in the research chemical scene.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "4-7 days", + "zero": "7-10 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.2 mg" + }, + { + "name": "Light", + "value": "0.2-0.75 mg" + }, + { + "name": "Common", + "value": "0.75-1.75 mg" + }, + { + "name": "Strong", + "value": "1.75-3 mg" + }, + { + "name": "Heavy", + "value": "3 mg" + }, + { + "name": "Threshold", + "value": "500 ug" + }, + { + "name": "Light", + "value": "750 ug" + }, + { + "name": "Common", + "value": "750-1100 ug" + }, + { + "name": "Heavy", + "value": "1100-1500 ug" + }, + { + "name": "Dangerous", + "value": "3000 ug" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "2-4 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Peak", + "value": "6-10 hours" + }, + { + "name": "Offset", + "value": "4-8 hours" + }, + { + "name": "Afterglow", + "value": "4-16 hours" + }, + { + "name": "Total", + "value": "14-24 hours" + }, + { + "name": "Onset", + "value": "30-120 minutes" + }, + { + "name": "Duration", + "value": "8-24 hours" + }, + { + "name": "After Effects", + "value": "2-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.2 mg" + }, + { + "name": "Light", + "value": "0.2-0.75 mg" + }, + { + "name": "Common", + "value": "0.75-1.75 mg" + }, + { + "name": "Strong", + "value": "1.75-3 mg" + }, + { + "name": "Heavy", + "value": "3 mg" + }, + { + "name": "Threshold", + "value": "500 ug" + }, + { + "name": "Light", + "value": "750 ug" + }, + { + "name": "Common", + "value": "750-1100 ug" + }, + { + "name": "Heavy", + "value": "1100-1500 ug" + }, + { + "name": "Dangerous", + "value": "3000 ug" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "2-4 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Peak", + "value": "6-10 hours" + }, + { + "name": "Offset", + "value": "4-8 hours" + }, + { + "name": "Afterglow", + "value": "4-16 hours" + }, + { + "name": "Total", + "value": "14-24 hours" + }, + { + "name": "Onset", + "value": "30-120 minutes" + }, + { + "name": "Duration", + "value": "8-24 hours" + }, + { + "name": "After Effects", + "value": "2-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DOB.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/DOC", + "name": "DOC", + "aliases": [], + "aliasesStr": "", + "summary": "A potent stimulating psychedelic with a long action, a phenethylamine and substituted amphetamine. Sometimes sold as LSD but also enjoyed on its own merits by many. Usually sold on blotters slightly larger than those LSD is found on, but can also be bought in powder form.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-4 mg" + }, + { + "name": "Strong", + "value": "4-6 mg" + }, + { + "name": "Heavy", + "value": "6 mg" + }, + { + "name": "Light", + "value": "1-1.5 mg" + }, + { + "name": "Common", + "value": "1.5-2 mg" + }, + { + "name": "Strong", + "value": "2-4 mg" + }, + { + "name": "Heavy", + "value": "4 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "2-3 hours" + }, + { + "name": "Onset", + "value": "1-2 hours" + }, + { + "name": "Peak", + "value": "6-12 hours" + }, + { + "name": "Offset", + "value": "2-8 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "12-24 hours" + }, + { + "name": "Onset", + "value": "30-150 minutes" + }, + { + "name": "Duration", + "value": "10-20 hours" + }, + { + "name": "After Effects", + "value": "6-12 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "0.25 mg" + }, + { + "name": "Light", + "value": "0.25-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Strong", + "value": "2-3.5 mg" + }, + { + "name": "Heavy", + "value": "3.5 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "10-30 minutes" + }, + { + "name": "Onset", + "value": "1-5 minutes" + }, + { + "name": "Peak", + "value": "2-6 hours" + }, + { + "name": "Offset", + "value": "2-8 hours" + }, + { + "name": "Afterglow", + "value": "2-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-4 mg" + }, + { + "name": "Strong", + "value": "4-6 mg" + }, + { + "name": "Heavy", + "value": "6 mg" + }, + { + "name": "Light", + "value": "1-1.5 mg" + }, + { + "name": "Common", + "value": "1.5-2 mg" + }, + { + "name": "Strong", + "value": "2-4 mg" + }, + { + "name": "Heavy", + "value": "4 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "2-3 hours" + }, + { + "name": "Onset", + "value": "1-2 hours" + }, + { + "name": "Peak", + "value": "6-12 hours" + }, + { + "name": "Offset", + "value": "2-8 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "12-24 hours" + }, + { + "name": "Onset", + "value": "30-150 minutes" + }, + { + "name": "Duration", + "value": "10-20 hours" + }, + { + "name": "After Effects", + "value": "6-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DOC.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/DOI", + "name": "DOI", + "aliases": [], + "aliasesStr": "", + "summary": "A potent, long-acting psychedelic stimulant. Historically, it has rarely been consumed deliberately, but occasionally sold as LSD. However, it has recently found its own little nest in the research chemical community.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "5-7 days", + "zero": "10-14 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Strong", + "value": "2-3 mg" + }, + { + "name": "Heavy", + "value": "3 mg" + }, + { + "name": "Threshold", + "value": "500-750 ug" + }, + { + "name": "Light", + "value": "750 ug" + }, + { + "name": "Common", + "value": "1 mg" + }, + { + "name": "Heavy", + "value": "3 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1.5-3 hours" + }, + { + "name": "Onset", + "value": "1-2 hours" + }, + { + "name": "Total", + "value": "16-24 hours" + }, + { + "name": "Onset", + "value": "60-90 minutes" + }, + { + "name": "Duration", + "value": "12-18 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Strong", + "value": "2-3 mg" + }, + { + "name": "Heavy", + "value": "3 mg" + }, + { + "name": "Threshold", + "value": "500-750 ug" + }, + { + "name": "Light", + "value": "750 ug" + }, + { + "name": "Common", + "value": "1 mg" + }, + { + "name": "Heavy", + "value": "3 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1.5-3 hours" + }, + { + "name": "Onset", + "value": "1-2 hours" + }, + { + "name": "Total", + "value": "16-24 hours" + }, + { + "name": "Onset", + "value": "60-90 minutes" + }, + { + "name": "Duration", + "value": "12-18 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DOI.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/DOM", + "name": "DOM", + "aliases": [ + "stp" + ], + "aliasesStr": "stp", + "summary": "The most popular psychedelic amphetamine due to its pleasant effects, lower potency and shorter duration. Effects have been described as 'sillier' than LSD and related DOX chemicals", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "1-3 mg" + }, + { + "name": "Common", + "value": "3-5 mg" + }, + { + "name": "Strong", + "value": "5-10 mg" + }, + { + "name": "Heavy", + "value": "10 mg" + }, + { + "name": "Light", + "value": "1-2.5 mg" + }, + { + "name": "Common", + "value": "2.5-5 mg" + }, + { + "name": "Strong", + "value": "5-7.5 mg" + }, + { + "name": "Heavy", + "value": "7.5 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "2-3 hours" + }, + { + "name": "Onset", + "value": "1-2 hours" + }, + { + "name": "Peak", + "value": "6-8 hours" + }, + { + "name": "Offset", + "value": "3-5 hours" + }, + { + "name": "Afterglow", + "value": "4-16 hours" + }, + { + "name": "Total", + "value": "12-16 hours" + }, + { + "name": "Onset", + "value": "2-4 hours" + }, + { + "name": "Duration", + "value": "8-30 hours" + }, + { + "name": "After Effects", + "value": "12-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "1-3 mg" + }, + { + "name": "Common", + "value": "3-5 mg" + }, + { + "name": "Strong", + "value": "5-10 mg" + }, + { + "name": "Heavy", + "value": "10 mg" + }, + { + "name": "Light", + "value": "1-2.5 mg" + }, + { + "name": "Common", + "value": "2.5-5 mg" + }, + { + "name": "Strong", + "value": "5-7.5 mg" + }, + { + "name": "Heavy", + "value": "7.5 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "2-3 hours" + }, + { + "name": "Onset", + "value": "1-2 hours" + }, + { + "name": "Peak", + "value": "6-8 hours" + }, + { + "name": "Offset", + "value": "3-5 hours" + }, + { + "name": "Afterglow", + "value": "4-16 hours" + }, + { + "name": "Total", + "value": "12-16 hours" + }, + { + "name": "Onset", + "value": "2-4 hours" + }, + { + "name": "Duration", + "value": "8-30 hours" + }, + { + "name": "After Effects", + "value": "12-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DOM.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/DOx", + "name": "DOx" + }, + { + "url": "https://psychonautwiki.org/wiki/DPT", + "name": "DPT", + "aliases": [ + "dipropyltryptamine" + ], + "aliasesStr": "dipropyltryptamine", + "summary": "N,N-Dipropyltryptamine, a psychedelic tryptamine compound and lesser-known analogue of DMT, with similar psychedelic effects. Like DMT it is a partial serotonin receptor agonist.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 mg" + }, + { + "name": "Light", + "value": "75-150 mg" + }, + { + "name": "Common", + "value": "150-250 mg" + }, + { + "name": "Strong", + "value": "250-350 mg" + }, + { + "name": "Heavy", + "value": "350 mg" + }, + { + "name": "Light", + "value": "75-125 mg" + }, + { + "name": "Common", + "value": "125-200 mg" + }, + { + "name": "Strong", + "value": "200-250 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Afterglow", + "value": "2-3 hours" + }, + { + "name": "Total", + "value": "2-4 hours" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "2-3 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "20-50 mg" + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + }, + { + "name": "Light", + "value": "20-50 " + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Peak", + "value": "30-45 minutes" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "3-5 hours" + }, + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Duration", + "value": "3-4 hours" + }, + { + "name": "After Effects", + "value": "3-4 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "15-20 mg" + }, + { + "name": "Common", + "value": "20-50 mg" + }, + { + "name": "Strong", + "value": "50-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + }, + { + "name": "Threshold", + "value": "5-10 mg" + }, + { + "name": "Light", + "value": "15-30 mg" + }, + { + "name": "Common", + "value": "30-50 mg" + }, + { + "name": "Strong", + "value": "50-100 mg" + } + ], + "duration": [ + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "30-90 minutes" + }, + { + "name": "Onset", + "value": "0-1 minutes" + }, + { + "name": "Duration", + "value": "0.5-1.5 hours" + }, + { + "name": "After Effects", + "value": "2-4 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "20-50 mg" + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + }, + { + "name": "Light", + "value": "20-50 " + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Peak", + "value": "30-45 minutes" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "3-5 hours" + }, + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Duration", + "value": "3-4 hours" + }, + { + "name": "After Effects", + "value": "3-4 hours" + } + ] + }, + { + "name": "Intramuscular", + "dosage": [ + { + "name": "Threshold", + "value": "5-10 mg" + }, + { + "name": "Light", + "value": "10-35 mg" + }, + { + "name": "Common", + "value": "35-60 mg" + }, + { + "name": "Strong", + "value": "60-100 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "2-10 minutes" + }, + { + "name": "Duration", + "value": "3-4 hours" + }, + { + "name": "After Effects", + "value": "2-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 mg" + }, + { + "name": "Light", + "value": "75-150 mg" + }, + { + "name": "Common", + "value": "150-250 mg" + }, + { + "name": "Strong", + "value": "250-350 mg" + }, + { + "name": "Heavy", + "value": "350 mg" + }, + { + "name": "Light", + "value": "75-125 mg" + }, + { + "name": "Common", + "value": "125-200 mg" + }, + { + "name": "Strong", + "value": "200-250 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Afterglow", + "value": "2-3 hours" + }, + { + "name": "Total", + "value": "2-4 hours" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "2-3 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "15-20 mg" + }, + { + "name": "Common", + "value": "20-50 mg" + }, + { + "name": "Strong", + "value": "50-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + }, + { + "name": "Threshold", + "value": "5-10 mg" + }, + { + "name": "Light", + "value": "15-30 mg" + }, + { + "name": "Common", + "value": "30-50 mg" + }, + { + "name": "Strong", + "value": "50-100 mg" + } + ], + "duration": [ + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "30-90 minutes" + }, + { + "name": "Onset", + "value": "0-1 minutes" + }, + { + "name": "Duration", + "value": "0.5-1.5 hours" + }, + { + "name": "After Effects", + "value": "2-4 hours" + } + ] + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DPT.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Datura", + "name": "Datura", + "aliases": [], + "aliasesStr": "", + "summary": "A family of plants containing various Tropane alkaloids. Produces long-lasting deliriant effects including very realistic and often unpleasant hallucinations along with short-term amnesia. Datura plants are toxic to humans, and potency varies greatly from plant-to-plant, making the drug extremely difficult to dose safely. Not typically regarded as recreational.", + "toxicity": [ + "toxic dosage is unknown" + ], + "addictionPotential": "mildly addictive with a high potential for adverse side effects such as psychosis", + "tolerance": { + "full": "with repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Datura.shtml", + "classes": { + "psychoactive": [ + "Deliriant", + "Depressant", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Datura_(botany)", + "name": "Datura (botany)" + }, + { + "url": "https://psychonautwiki.org/wiki/Deliriant", + "name": "Deliriant" + }, + { + "url": "https://psychonautwiki.org/wiki/Depressant", + "name": "Depressant" + }, + { + "url": "https://psychonautwiki.org/wiki/Deschloroetizolam", + "name": "Deschloroetizolam", + "aliases": [ + "etizolam-2" + ], + "aliasesStr": "etizolam-2", + "summary": "A Thienodiazepine which is close to its parent compound, Etizolam, whilst being significantly weaker and longer lasting.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "tolerance": { + "full": "within a couple of days of continuous use", + "half": null, + "zero": "7 - 14 days" + }, + "crossTolerances": [ + "benzodiazepine", + "thienodiazepine" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-6 mg" + }, + { + "name": "Strong", + "value": "6-12 mg" + }, + { + "name": "Heavy", + "value": "12 mg" + }, + { + "name": "Light", + "value": "2-4 mg", + "note": " NOTE: Non-oral ROAs are ineffective." + }, + { + "name": "Common", + "value": "4-6 mg", + "note": " NOTE: Non-oral ROAs are ineffective." + }, + { + "name": "Strong", + "value": "6-12 mg", + "note": " NOTE: Non-oral ROAs are ineffective." + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-5 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "3-6 hours" + }, + { + "name": "Total", + "value": "8-10 hours" + }, + { + "name": "Onset", + "value": "1-5 minutes" + }, + { + "name": "Duration", + "value": "8-10 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-6 mg" + }, + { + "name": "Strong", + "value": "6-12 mg" + }, + { + "name": "Heavy", + "value": "12 mg" + }, + { + "name": "Light", + "value": "2-4 mg", + "note": " NOTE: Non-oral ROAs are ineffective." + }, + { + "name": "Common", + "value": "4-6 mg", + "note": " NOTE: Non-oral ROAs are ineffective." + }, + { + "name": "Strong", + "value": "6-12 mg", + "note": " NOTE: Non-oral ROAs are ineffective." + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-5 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "3-6 hours" + }, + { + "name": "Total", + "value": "8-10 hours" + }, + { + "name": "Onset", + "value": "1-5 minutes" + }, + { + "name": "Duration", + "value": "8-10 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [ + "Benzodiazepine" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Deschloroketamine", + "name": "Deschloroketamine", + "aliases": [ + "2'-oxo-pcm", + "dxe", + "dck", + "o-pcm", + "opcm", + "2-oxo-pcm" + ], + "aliasesStr": "2'-oxo-pcm, dxe, dck, o-pcm, opcm, 2-oxo-pcm", + "summary": "A novel analogue of Ketamine which is much more potent and has a longer duration.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dissociative" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-40 mg" + }, + { + "name": "Heavy", + "value": "40 " + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Peak", + "value": "1.5-2.5 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "3-24 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Peak", + "value": "1.5-2.5 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "3-24 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "2-20 minutes" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "30-90 minutes" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-40 mg" + }, + { + "name": "Heavy", + "value": "40 " + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Peak", + "value": "1.5-2.5 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "3-24 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + } + ], + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Desomorphine", + "name": "Desomorphine", + "aliases": [ + "Desomorphine", + "Krokodil", + "Krok" + ], + "aliasesStr": "Desomorphine, Krokodil, Krok", + "crossTolerances": [ + "opioids" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + }, + { + "name": "Heavy", + "value": "30 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "3-4 hours" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Desoxypipradrol", + "name": "Desoxypipradrol", + "aliases": [ + "Desoxypipradol", + "2-DPMP", + "Ivory Wave" + ], + "aliasesStr": "Desoxypipradol, 2-DPMP, Ivory Wave", + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.25 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-6 mg" + }, + { + "name": "Strong", + "value": "6-8 mg" + }, + { + "name": "Heavy", + "value": "8 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-4 hours" + }, + { + "name": "Peak", + "value": "9-30 hours" + }, + { + "name": "Offset", + "value": "6-40 hours" + }, + { + "name": "Total", + "value": "16-72 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "0.25 mg" + }, + { + "name": "Light", + "value": "0.5-1.5 mg" + }, + { + "name": "Common", + "value": "1.5-3.5 mg" + }, + { + "name": "Strong", + "value": "3.5-5 mg" + }, + { + "name": "Heavy", + "value": "5 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "2-6 hours" + }, + { + "name": "Onset", + "value": "15-240 minutes" + }, + { + "name": "Peak", + "value": "6-30 hours" + }, + { + "name": "Offset", + "value": "6-40 hours" + }, + { + "name": "Total", + "value": "10-72 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Dextromethorphan", + "name": "Dextromethorphan", + "aliases": [ + "DXM", + "DMO", + "DM", + "Dex", + "Robitussin", + "Delsym", + "DexAlone", + "Duract" + ], + "aliasesStr": "DXM, DMO, DM, Dex, Robitussin, Delsym, DexAlone, Duract", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "produces dependence with chronic use and has moderate abuse potential", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dissociatives" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "75 mg" + }, + { + "name": "Light", + "value": "100-200 mg" + }, + { + "name": "Common", + "value": "200-400 mg" + }, + { + "name": "Strong", + "value": "400-700 mg" + }, + { + "name": "Heavy", + "value": "700 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "60-120 minutes" + }, + { + "name": "Onset", + "value": "30-120 minutes" + }, + { + "name": "Peak", + "value": "3-6 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "4-24 hours" + }, + { + "name": "Total", + "value": "8-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Benzodiazepines" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Unsafe", + "name": "DOx" + }, + { + "status": "Unsafe", + "name": "25x-NBOMe" + }, + { + "status": "Unsafe", + "name": "2C-T-x" + }, + { + "status": "Unsafe", + "name": "5-MeO-xxT" + }, + { + "status": "Unsafe", + "name": "Substituted amphetamines" + }, + { + "status": "Unsafe", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "ΑMT" + }, + { + "status": "Dangerous", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "MDMA" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Opioids" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "Antihistamine" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Dextropropoxyphene", + "name": "Dextropropoxyphene", + "aliases": [ + "darvocet", + "co-proxamol", + "coproxamol", + "capadex", + "di-gesic" + ], + "aliasesStr": "darvocet, co-proxamol, coproxamol, capadex, di-gesic", + "summary": "An opioid analgesic that is an optical isomer of levopropoxyphene. Used to treat mild pain and often used for its antitussive properties. It has been taken off the market in Europe and US due to concerns of health issues relating to the Kidney, Liver, Heart and Respiratory Disorders. Just a bit stronger than Tramadol.", + "toxicity": [ + "high toxicity", + "potentially lethal when mixed with depressants like alcohol or benzodiazepines", + "known to cause potentially fatal heart arrhythmias" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "opioids" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "15 mg" + }, + { + "name": "Light", + "value": "30-65 mg" + }, + { + "name": "Common", + "value": "65-100 mg" + }, + { + "name": "Strong", + "value": "100-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + }, + { + "name": "Light", + "value": "30-65 mg" + }, + { + "name": "Common", + "value": "65-100 mg" + }, + { + "name": "Strong", + "value": "100-200 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-30 minutes" + }, + { + "name": "Peak", + "value": "1-4 hours" + }, + { + "name": "Afterglow", + "value": "1-6 hours" + }, + { + "name": "Onset", + "value": "20-30 minutes" + }, + { + "name": "Duration", + "value": "1-3 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "15 mg" + }, + { + "name": "Light", + "value": "30-65 mg" + }, + { + "name": "Common", + "value": "65-100 mg" + }, + { + "name": "Strong", + "value": "100-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + }, + { + "name": "Light", + "value": "30-65 mg" + }, + { + "name": "Common", + "value": "65-100 mg" + }, + { + "name": "Strong", + "value": "100-200 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-30 minutes" + }, + { + "name": "Peak", + "value": "1-4 hours" + }, + { + "name": "Afterglow", + "value": "1-6 hours" + }, + { + "name": "Onset", + "value": "20-30 minutes" + }, + { + "name": "Duration", + "value": "1-3 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/DiPT", + "name": "DiPT", + "aliases": [ + "diisopropyltryptamine" + ], + "aliasesStr": "diisopropyltryptamine", + "summary": "A rare tryptamine psychedelic closely related to DMT, with the interesting property of having little visual hallucinations, but strong auditory effects.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "15 mg" + }, + { + "name": "Light", + "value": "15-30 mg" + }, + { + "name": "Common", + "value": "30-75 mg" + }, + { + "name": "Strong", + "value": "75-150 mg" + }, + { + "name": "Heavy", + "value": "150 mg" + }, + { + "name": "Threshold", + "value": "15 mg", + "note": " NOTE: This is a very new substance with very little history of human use. Start low and work your way up, doses are not to be taken as reccomended values." + }, + { + "name": "Light", + "value": "15-25 mg", + "note": " NOTE: This is a very new substance with very little history of human use. Start low and work your way up, doses are not to be taken as reccomended values." + }, + { + "name": "Common", + "value": "30-50 mg", + "note": " NOTE: This is a very new substance with very little history of human use. Start low and work your way up, doses are not to be taken as reccomended values." + }, + { + "name": "Heavy", + "value": "50 mg", + "note": " NOTE: This is a very new substance with very little history of human use. Start low and work your way up, doses are not to be taken as reccomended values." + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "12-24 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Total", + "value": "15-60 minutes" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "15 mg" + }, + { + "name": "Light", + "value": "15-30 mg" + }, + { + "name": "Common", + "value": "30-75 mg" + }, + { + "name": "Strong", + "value": "75-150 mg" + }, + { + "name": "Heavy", + "value": "150 mg" + }, + { + "name": "Threshold", + "value": "15 mg", + "note": " NOTE: This is a very new substance with very little history of human use. Start low and work your way up, doses are not to be taken as reccomended values." + }, + { + "name": "Light", + "value": "15-25 mg", + "note": " NOTE: This is a very new substance with very little history of human use. Start low and work your way up, doses are not to be taken as reccomended values." + }, + { + "name": "Common", + "value": "30-50 mg", + "note": " NOTE: This is a very new substance with very little history of human use. Start low and work your way up, doses are not to be taken as reccomended values." + }, + { + "name": "Heavy", + "value": "50 mg", + "note": " NOTE: This is a very new substance with very little history of human use. Start low and work your way up, doses are not to be taken as reccomended values." + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "12-24 hours" + } + ] + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DiPT.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Diarylethylamines", + "name": "Diarylethylamines" + }, + { + "url": "https://psychonautwiki.org/wiki/Diazepam", + "name": "Diazepam", + "aliases": [ + "valium" + ], + "aliasesStr": "valium", + "summary": "A very common and widely prescribed benzodiazepine with hypnotic and sedative qualities. The metre by which other benzodiazepines are compared. May cause amnesia and lowered inhibitions in excess. Has a relatively long half-life in comparison with other benzodiazepines.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "tolerance": { + "full": "within a couple of days of continuous use", + "half": null, + "zero": "7-14 days" + }, + "crossTolerances": [ + "benzodiazepines" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2.5-5 mg" + }, + { + "name": "Common", + "value": "5-15 mg" + }, + { + "name": "Strong", + "value": "15-30 mg" + }, + { + "name": "Heavy", + "value": "30 mg" + }, + { + "name": "Light", + "value": "2.5-5 mg" + }, + { + "name": "Common", + "value": "5-15 mg" + }, + { + "name": "Heavy", + "value": "15-30 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "60-90 minutes" + }, + { + "name": "Afterglow", + "value": "12-36 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "10-24 hours" + }, + { + "name": "After Effects", + "value": "1-120 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2.5-5 mg" + }, + { + "name": "Common", + "value": "5-15 mg" + }, + { + "name": "Strong", + "value": "15-30 mg" + }, + { + "name": "Heavy", + "value": "30 mg" + }, + { + "name": "Light", + "value": "2.5-5 mg" + }, + { + "name": "Common", + "value": "5-15 mg" + }, + { + "name": "Heavy", + "value": "15-30 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "60-90 minutes" + }, + { + "name": "Afterglow", + "value": "12-36 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "10-24 hours" + }, + { + "name": "After Effects", + "value": "1-120 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "Depressant" + }, + { + "status": "Dangerous", + "name": "Dissociatives" + }, + { + "status": "Dangerous", + "name": "Stimulants" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine", + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Dichloropane", + "name": "Dichloropane", + "aliases": [ + "Dichloropane", + "RTI-111" + ], + "aliasesStr": "Dichloropane, RTI-111", + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "2 - 4 days", + "zero": "1 - 1.5 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-30 minutes" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Peak", + "value": "60-90 minutes" + }, + { + "name": "Offset", + "value": "60-90 minutes" + }, + { + "name": "Total", + "value": "2-4 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "2.5 mg" + }, + { + "name": "Light", + "value": "2.5-7.5 mg" + }, + { + "name": "Common", + "value": "7.5-20 mg" + }, + { + "name": "Strong", + "value": "20-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-60 seconds" + }, + { + "name": "Onset", + "value": "15-60 seconds" + }, + { + "name": "Peak", + "value": "15-30 minutes" + }, + { + "name": "Offset", + "value": "20-40 minutes" + }, + { + "name": "Total", + "value": "40-75 minutes" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "MAOI" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Diclazepam", + "name": "Diclazepam", + "aliases": [], + "aliasesStr": "", + "summary": "A benzodiazepine drug and analogue of diazepam first synthesised by Leo Sternbach at Hoffman-LaRoche in 1960, it has become prominent as an RC benzodiazepine on the grey market in recent years, particularly with the decline in etizolam availability. A sedative and hypnotic it is of intermediate to long half life with similar effects to diazepam, though 10x more potent.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "tolerance": { + "full": "within 3-4 days of continuous use", + "half": null, + "zero": "7 - 14 days" + }, + "crossTolerances": [ + "GABAergic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-3 mg" + }, + { + "name": "Strong", + "value": "3-4 mg" + }, + { + "name": "Heavy", + "value": "4 mg" + }, + { + "name": "Light", + "value": "0.25-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Strong", + "value": "2 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-45 minutes" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "15-90 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-3 mg" + }, + { + "name": "Strong", + "value": "3-4 mg" + }, + { + "name": "Heavy", + "value": "4 mg" + }, + { + "name": "Light", + "value": "0.25-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Strong", + "value": "2 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-45 minutes" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "15-90 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Diclazepam.shtml", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Dihydrocodeine", + "name": "Dihydrocodeine", + "aliases": [ + "dhc" + ], + "aliasesStr": "dhc", + "summary": "A weak semi-synthetic opioid analgesic and antitussive (anti-cough) drug. Often sold as a syrup in combination with aspirin or paracetamol. Not to be confused with the slightly less potent codeine.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or benzodiazepines" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "opioids" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "150-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + }, + { + "name": "Light", + "value": "50-100 mg", + "note": " NOTE: Cold Water Extract the DHC out if the pills are in combination with other substances" + }, + { + "name": "Common", + "value": "100-150 mg", + "note": " NOTE: Cold Water Extract the DHC out if the pills are in combination with other substances" + }, + { + "name": "Heavy", + "value": "150-200 mg", + "note": " NOTE: Cold Water Extract the DHC out if the pills are in combination with other substances" + } + ], + "duration": [ + { + "name": "Total", + "value": "3-4 hours" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "3-4 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "150-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + }, + { + "name": "Light", + "value": "50-100 mg", + "note": " NOTE: Cold Water Extract the DHC out if the pills are in combination with other substances" + }, + { + "name": "Common", + "value": "100-150 mg", + "note": " NOTE: Cold Water Extract the DHC out if the pills are in combination with other substances" + }, + { + "name": "Heavy", + "value": "150-200 mg", + "note": " NOTE: Cold Water Extract the DHC out if the pills are in combination with other substances" + } + ], + "duration": [ + { + "name": "Total", + "value": "3-4 hours" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "3-4 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Diphenhydramine", + "name": "Diphenhydramine", + "aliases": [ + "DPH", + "Benadryl", + "Nytol", + "Sominex", + "Unisom SleepMelts", + "ZzzQuil" + ], + "aliasesStr": "DPH, Benadryl, Nytol, Sominex, Unisom SleepMelts, ZzzQuil", + "toxicity": [ + "fatal at amounts close to or exceeding 2 grams" + ], + "addictionPotential": "produces dependence with chronic use", + "tolerance": { + "full": "with repeated use", + "half": null, + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "deliriant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 mg" + }, + { + "name": "Light", + "value": "100-200 mg" + }, + { + "name": "Common", + "value": "200-400 mg" + }, + { + "name": "Strong", + "value": "400-700 mg" + }, + { + "name": "Heavy", + "value": "700 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-90 minutes" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Peak", + "value": "1-4 hours" + }, + { + "name": "Offset", + "value": "2-6 hours" + }, + { + "name": "Total", + "value": "3-10 hours" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Diphenidine", + "name": "Diphenidine", + "aliases": [ + "dpd" + ], + "aliasesStr": "dpd", + "summary": "A dissociative anaesthetic related to ephenidine with similar qualities to PCP and ketamine. Has seen some popularity as a recreational RC. Dosage curve has been reported as particularly steep, so care should be taken.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dissociative" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "30 mg" + }, + { + "name": "Light", + "value": "40-65 mg" + }, + { + "name": "Common", + "value": "65-100 mg" + }, + { + "name": "Strong", + "value": "100-130 mg" + }, + { + "name": "Heavy", + "value": "130 mg" + }, + { + "name": "Threshold", + "value": "50 mg", + "note": " NOTE: Diphenidine is an extremely new substance with very little record of human use. Start low, work your way up." + }, + { + "name": "Light", + "value": "70-85 mg", + "note": " NOTE: Diphenidine is an extremely new substance with very little record of human use. Start low, work your way up." + }, + { + "name": "Common", + "value": "85-110 mg", + "note": " NOTE: Diphenidine is an extremely new substance with very little record of human use. Start low, work your way up." + }, + { + "name": "Heavy", + "value": "110-150 mg", + "note": " NOTE: Diphenidine is an extremely new substance with very little record of human use. Start low, work your way up." + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Afterglow", + "value": "4-24 hours" + }, + { + "name": "Total", + "value": "2-5 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "4-24 hours" + } + ] + }, + { + "name": "Rectal", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-80 mg" + }, + { + "name": "Heavy", + "value": "80 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Total", + "value": "5-7 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Light", + "value": "[object Object] mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-55 mg" + }, + { + "name": "Heavy", + "value": "55 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 seconds" + }, + { + "name": "Peak", + "value": "0.5-2 hours" + }, + { + "name": "Offset", + "value": "20-40 minutes" + }, + { + "name": "Afterglow", + "value": "2-5 hours" + }, + { + "name": "Total", + "value": "1-3 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "30 mg" + }, + { + "name": "Light", + "value": "40-65 mg" + }, + { + "name": "Common", + "value": "65-100 mg" + }, + { + "name": "Strong", + "value": "100-130 mg" + }, + { + "name": "Heavy", + "value": "130 mg" + }, + { + "name": "Threshold", + "value": "50 mg", + "note": " NOTE: Diphenidine is an extremely new substance with very little record of human use. Start low, work your way up." + }, + { + "name": "Light", + "value": "70-85 mg", + "note": " NOTE: Diphenidine is an extremely new substance with very little record of human use. Start low, work your way up." + }, + { + "name": "Common", + "value": "85-110 mg", + "note": " NOTE: Diphenidine is an extremely new substance with very little record of human use. Start low, work your way up." + }, + { + "name": "Heavy", + "value": "110-150 mg", + "note": " NOTE: Diphenidine is an extremely new substance with very little record of human use. Start low, work your way up." + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Afterglow", + "value": "4-24 hours" + }, + { + "name": "Total", + "value": "2-5 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "4-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Diphenidine.shtml", + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Dissociatives", + "name": "Dissociatives" + }, + { + "url": "https://psychonautwiki.org/wiki/EPT", + "name": "EPT", + "aliases": [ + "ethylpropyltryptamine", + "n,n-ethylpropyltryptamine" + ], + "aliasesStr": "ethylpropyltryptamine, n,n-ethylpropyltryptamine", + "summary": "Ethylpropyltryptamine a novel tryptamine, that is the structural homologue of DMT.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "does not produce dependence and has low abuse potential", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "20-40 mg" + }, + { + "name": "Common", + "value": "40-80 mg" + }, + { + "name": "Strong", + "value": "80-110 mg" + }, + { + "name": "Heavy", + "value": "110 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Afterglow", + "value": "1-3 hours" + }, + { + "name": "Total", + "value": "2-4 hours" + }, + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Duration", + "value": "1-3 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-75 mg" + }, + { + "name": "Common", + "value": "75-100 mg" + }, + { + "name": "Strong", + "value": "100 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/ETH-CAT", + "name": "ETH-CAT", + "aliases": [ + "ETH-CAT", + "Ethcathinone", + "Ethylpropion" + ], + "aliasesStr": "ETH-CAT, Ethcathinone, Ethylpropion", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "mildly addictive with a comparatively low potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "2 - 3 days", + "zero": "3-5 days" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "60 mg" + }, + { + "name": "Light", + "value": "100-150 mg" + }, + { + "name": "Common", + "value": "150-225 mg" + }, + { + "name": "Strong", + "value": "225-325 mg" + }, + { + "name": "Heavy", + "value": "325 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-30 minutes" + }, + { + "name": "Onset", + "value": "15-40 minutes" + }, + { + "name": "Peak", + "value": "60-90 minutes" + }, + { + "name": "Offset", + "value": "60-120 minutes" + }, + { + "name": "Total", + "value": "3-5 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "15-35 mg" + }, + { + "name": "Common", + "value": "35-70 mg" + }, + { + "name": "Strong", + "value": "70-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-30 minutes" + }, + { + "name": "Onset", + "value": "1-5 minutes" + }, + { + "name": "Peak", + "value": "60-90 minutes" + }, + { + "name": "Offset", + "value": "30-60 minutes" + }, + { + "name": "Total", + "value": "2-3 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/ETH-LAD", + "name": "ETH-LAD", + "aliases": [ + "ethlad" + ], + "aliasesStr": "ethlad", + "summary": "A psychedelic drug and slightly more potent analogue of LSD, first synthesised by Alexander Shulgin - sometimes described as being less 'abrasive' than LSD. Less common than the associated AL-LAD, though has seen some popularity since its release on the Internet research chemical scene in 2015.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "5-7 days", + "zero": "14 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "15 µg" + }, + { + "name": "Light", + "value": "30-60 µg" + }, + { + "name": "Common", + "value": "60-150 µg" + }, + { + "name": "Strong", + "value": "150-225 µg" + }, + { + "name": "Heavy", + "value": "225 µg" + }, + { + "name": "Threshold", + "value": "20-30 ug" + }, + { + "name": "Light", + "value": "30-60 ug" + }, + { + "name": "Common", + "value": "60-100 ug" + }, + { + "name": "Strong", + "value": "100-200 ug" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-90 minutes" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "4-6 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "8-48 hours" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "15-90 minutes" + }, + { + "name": "Duration", + "value": "6-14 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "15 µg" + }, + { + "name": "Light", + "value": "30-60 µg" + }, + { + "name": "Common", + "value": "60-150 µg" + }, + { + "name": "Strong", + "value": "150-225 µg" + }, + { + "name": "Heavy", + "value": "225 µg" + }, + { + "name": "Threshold", + "value": "20-30 ug" + }, + { + "name": "Light", + "value": "30-60 ug" + }, + { + "name": "Common", + "value": "60-100 ug" + }, + { + "name": "Strong", + "value": "100-200 ug" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-90 minutes" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "4-6 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "8-48 hours" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "15-90 minutes" + }, + { + "name": "Duration", + "value": "6-14 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_ETHLAD.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Entactogen", + "name": "Entactogen" + }, + { + "url": "https://psychonautwiki.org/wiki/Entheogen", + "name": "Entheogen" + }, + { + "url": "https://psychonautwiki.org/wiki/Ephedrine", + "name": "Ephedrine", + "aliases": [], + "aliasesStr": "", + "summary": "Ephedrine is a sympathomimetic amine commonly used as a stimulant, concentration aid, decongestant, appetite suppressant, and to treat hypotension associated with anaesthesia. A methamphetamine analogue and commonly used in the production of methamphetamine.", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Threshold", + "value": "5-10 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "2-5 hours" + }, + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Duration", + "value": "3 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Threshold", + "value": "5-10 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "2-5 hours" + }, + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Duration", + "value": "3 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Ephedrine.shtml", + "classes": { + "psychoactive": [ + "Habit Forming", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Ephenidine", + "name": "Ephenidine", + "aliases": [], + "aliasesStr": "", + "summary": "A dissociative drug which is less potent and less confusing than MXE but with otherwise similar properties. Reported as causing light stimulant effects at lower doses.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dissociative" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "30 mg" + }, + { + "name": "Light", + "value": "30-70 mg" + }, + { + "name": "Common", + "value": "70-100 mg" + }, + { + "name": "Strong", + "value": "100-150 mg" + }, + { + "name": "Heavy", + "value": "150 mg" + }, + { + "name": "Light", + "value": "50-75 mg" + }, + { + "name": "Common", + "value": "75-110 mg" + }, + { + "name": "Strong", + "value": "110-150 mg" + }, + { + "name": "Heavy", + "value": "150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Total", + "value": "5-7 hours" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "30 mg" + }, + { + "name": "Light", + "value": "30-70 mg" + }, + { + "name": "Common", + "value": "70-100 mg" + }, + { + "name": "Strong", + "value": "100-150 mg" + }, + { + "name": "Heavy", + "value": "150 mg" + }, + { + "name": "Light", + "value": "50-75 mg" + }, + { + "name": "Common", + "value": "75-110 mg" + }, + { + "name": "Strong", + "value": "110-150 mg" + }, + { + "name": "Heavy", + "value": "150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Total", + "value": "5-7 hours" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Ephenidine.shtml", + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Ephylone", + "name": "Ephylone", + "aliases": [ + "Ephylone", + "bk-EBDP", + "βk-EBDP", + "bk-ethyl-K" + ], + "aliasesStr": "Ephylone, bk-EBDP, βk-EBDP, bk-ethyl-K", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": null, + "zero": null + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-80 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Escaline", + "name": "Escaline", + "aliases": [], + "aliasesStr": "", + "summary": "First synthesised in the 50s, this uncommon drug was reexamined by David Nichols in the 1990s. It is an analogue of mescaline which is roughly six times more potent, and is thus a powerful psychedelic phenethylamine. Subjective effects may include stimulation and hallucinations.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "30-50 mg" + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-150 mg" + }, + { + "name": "Heavy", + "value": "150 mg" + }, + { + "name": "Threshold", + "value": "20-30 mg" + }, + { + "name": "Light", + "value": "30-45 mg" + }, + { + "name": "Common", + "value": "45-60 mg" + }, + { + "name": "Strong", + "value": "60 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "90-120 minutes" + }, + { + "name": "Afterglow", + "value": "3-5 hours" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "1.5-2 hours" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "3-5 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "30-50 mg" + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-150 mg" + }, + { + "name": "Heavy", + "value": "150 mg" + }, + { + "name": "Threshold", + "value": "20-30 mg" + }, + { + "name": "Light", + "value": "30-45 mg" + }, + { + "name": "Common", + "value": "45-60 mg" + }, + { + "name": "Strong", + "value": "60 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "90-120 minutes" + }, + { + "name": "Afterglow", + "value": "3-5 hours" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "1.5-2 hours" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "3-5 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Escaline.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Eszopiclone", + "name": "Eszopiclone", + "aliases": [], + "aliasesStr": "", + "summary": "The d-isomer of Zopiclone, this drug is a potent hypnotic 'Z' drug often used to treat insomnia. High doses may cause amnesia, delirium and lowered inhibitions. Should not be combined with any depressants. Limited recreational value.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like benzodiazepines, alcohol or opioids" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "tolerance": { + "full": "within a couple of weeks of daily use", + "half": null, + "zero": "7 - 14 days" + }, + "crossTolerances": [ + "benzodiazepines" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "1-1.5 mg" + }, + { + "name": "Common", + "value": "2-3 mg" + }, + { + "name": "Strong", + "value": "4-5 mg" + }, + { + "name": "Heavy", + "value": "6 mg" + }, + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Strong", + "value": "2-4 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-20 minutes" + }, + { + "name": "Peak", + "value": "30-90 minutes" + }, + { + "name": "Total", + "value": "6-8 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "6-10 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "1-1.5 mg" + }, + { + "name": "Common", + "value": "2-3 mg" + }, + { + "name": "Strong", + "value": "4-5 mg" + }, + { + "name": "Heavy", + "value": "6 mg" + }, + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Strong", + "value": "2-4 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-20 minutes" + }, + { + "name": "Peak", + "value": "30-90 minutes" + }, + { + "name": "Total", + "value": "6-8 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "6-10 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Ethylmorphine", + "name": "Ethylmorphine", + "aliases": [], + "aliasesStr": "", + "summary": "A medium-strength opioid analgesic and analogue of morphine. Considered less potent than morphine but more potent than codeine, and has been used in Germany for this reason. Said to have a 'ceiling' effect where no more euphoria occurs with increased dosage. Under investigation as a maintainance drug in opioid dependence therapy.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or benzodiazepines" + ], + "addictionPotential": "very addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "opioids" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "40-50 mg" + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + }, + { + "name": "Light", + "value": "40-50 mg" + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-200 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "4-5 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "4-5 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "40-50 mg" + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + }, + { + "name": "Light", + "value": "40-50 mg" + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-200 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "4-5 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "4-5 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Ethylone", + "name": "Ethylone", + "aliases": [ + "bk-mdea" + ], + "aliasesStr": "bk-mdea", + "summary": "A euphoric stimulant often sold in place of MDMA since methylone was banned. Slightly less potent and empathogenic than methylone, it is often described as more of a 'straight stimulant.'", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "75 mg" + }, + { + "name": "Light", + "value": "75-150 mg" + }, + { + "name": "Common", + "value": "150-225 mg" + }, + { + "name": "Strong", + "value": "225-325 mg" + }, + { + "name": "Heavy", + "value": "325 mg" + }, + { + "name": "Light", + "value": "125-175 mg" + }, + { + "name": "Common", + "value": "200-250 mg" + }, + { + "name": "Strong", + "value": "250-400 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "60-90 minutes" + }, + { + "name": "Offset", + "value": "60-120 minutes" + }, + { + "name": "Afterglow", + "value": "2-12 hours" + }, + { + "name": "Total", + "value": "2-4 hours" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "6-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "75 mg" + }, + { + "name": "Light", + "value": "75-150 mg" + }, + { + "name": "Common", + "value": "150-225 mg" + }, + { + "name": "Strong", + "value": "225-325 mg" + }, + { + "name": "Heavy", + "value": "325 mg" + }, + { + "name": "Light", + "value": "125-175 mg" + }, + { + "name": "Common", + "value": "200-250 mg" + }, + { + "name": "Strong", + "value": "250-400 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "60-90 minutes" + }, + { + "name": "Offset", + "value": "60-120 minutes" + }, + { + "name": "Afterglow", + "value": "2-12 hours" + }, + { + "name": "Total", + "value": "2-4 hours" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "6-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_bkMDEA.shtml", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Ethylphenidate", + "name": "Ethylphenidate", + "aliases": [ + "eph" + ], + "aliasesStr": "eph", + "summary": "Potent psychostimulant, similar to Methylphenidate. Note: Ethylphenidate should NOT be insufflated as it is known to be highly caustic and will cause serious harm to your nasal septum, even with light usage.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopaminergic", + "stimulants" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "20-40 mg" + }, + { + "name": "Common", + "value": "40-80 mg" + }, + { + "name": "Strong", + "value": "80-120 mg" + }, + { + "name": "Heavy", + "value": "120 mg" + }, + { + "name": "Light", + "value": "20-40 mg", + "note": " NOTE: Ethylphenidate should NOT be insufflated (see summary for more details). This drug reacts with users in varying ways, so start low and work your way up." + }, + { + "name": "Common", + "value": "40-100 mg", + "note": " NOTE: Ethylphenidate should NOT be insufflated (see summary for more details). This drug reacts with users in varying ways, so start low and work your way up." + }, + { + "name": "Strong", + "value": "100-150 mg", + "note": " NOTE: Ethylphenidate should NOT be insufflated (see summary for more details). This drug reacts with users in varying ways, so start low and work your way up." + }, + { + "name": "Heavy", + "value": "150-200 mg", + "note": " NOTE: Ethylphenidate should NOT be insufflated (see summary for more details). This drug reacts with users in varying ways, so start low and work your way up." + } + ], + "duration": [ + { + "name": "Onset", + "value": "40-120 minutes" + }, + { + "name": "Total", + "value": "4-7 hours" + }, + { + "name": "Onset", + "value": "45-120 minutes" + }, + { + "name": "Duration", + "value": "4-10 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Rectal", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "5-15 mg", + "note": " NOTE: Ethylphenidate should NOT be insufflated (see summary for more details). This drug reacts with users in varying ways, so start low and work your way up." + }, + { + "name": "Common", + "value": "15-30 mg", + "note": " NOTE: Ethylphenidate should NOT be insufflated (see summary for more details). This drug reacts with users in varying ways, so start low and work your way up." + }, + { + "name": "Strong", + "value": "30-50 mg", + "note": " NOTE: Ethylphenidate should NOT be insufflated (see summary for more details). This drug reacts with users in varying ways, so start low and work your way up." + }, + { + "name": "Heavy", + "value": "50-75 mg", + "note": " NOTE: Ethylphenidate should NOT be insufflated (see summary for more details). This drug reacts with users in varying ways, so start low and work your way up." + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Total", + "value": "2-6 hours" + }, + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Duration", + "value": "2-6 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "20-40 mg" + }, + { + "name": "Common", + "value": "40-80 mg" + }, + { + "name": "Strong", + "value": "80-120 mg" + }, + { + "name": "Heavy", + "value": "120 mg" + }, + { + "name": "Light", + "value": "20-40 mg", + "note": " NOTE: Ethylphenidate should NOT be insufflated (see summary for more details). This drug reacts with users in varying ways, so start low and work your way up." + }, + { + "name": "Common", + "value": "40-100 mg", + "note": " NOTE: Ethylphenidate should NOT be insufflated (see summary for more details). This drug reacts with users in varying ways, so start low and work your way up." + }, + { + "name": "Strong", + "value": "100-150 mg", + "note": " NOTE: Ethylphenidate should NOT be insufflated (see summary for more details). This drug reacts with users in varying ways, so start low and work your way up." + }, + { + "name": "Heavy", + "value": "150-200 mg", + "note": " NOTE: Ethylphenidate should NOT be insufflated (see summary for more details). This drug reacts with users in varying ways, so start low and work your way up." + } + ], + "duration": [ + { + "name": "Onset", + "value": "40-120 minutes" + }, + { + "name": "Total", + "value": "4-7 hours" + }, + { + "name": "Onset", + "value": "45-120 minutes" + }, + { + "name": "Duration", + "value": "4-10 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Rectal", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "5-15 mg", + "note": " NOTE: Ethylphenidate should NOT be insufflated (see summary for more details). This drug reacts with users in varying ways, so start low and work your way up." + }, + { + "name": "Common", + "value": "15-30 mg", + "note": " NOTE: Ethylphenidate should NOT be insufflated (see summary for more details). This drug reacts with users in varying ways, so start low and work your way up." + }, + { + "name": "Strong", + "value": "30-50 mg", + "note": " NOTE: Ethylphenidate should NOT be insufflated (see summary for more details). This drug reacts with users in varying ways, so start low and work your way up." + }, + { + "name": "Heavy", + "value": "50-75 mg", + "note": " NOTE: Ethylphenidate should NOT be insufflated (see summary for more details). This drug reacts with users in varying ways, so start low and work your way up." + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Total", + "value": "2-6 hours" + }, + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Duration", + "value": "2-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Ethylphenidate.shtml", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Etizolam", + "name": "Etizolam", + "aliases": [ + "etiz", + "etizest", + "etilaam", + "sedekopan", + "depas", + "etizola", + "inxity", + "zoly", + "lamet", + "towa" + ], + "aliasesStr": "etiz, etizest, etilaam, sedekopan, depas, etizola, inxity, zoly, lamet, towa", + "summary": "A thienodiazepine anxiolytic. Similar in action to benzodiazepine drugs. Relieves anxiety, causes sedation and mild euphoria. High doses can lead to losing memory of what happened while on the drug. Users often compulsively re-dose frequently leading to accidental blackouts. Can be found in pressed pharmaceutical pills from various countries, clandestine pill presses, or as a powder", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "addictionPotential": "highly addictive with a high potential for abuse", + "tolerance": { + "full": "within a couple of days of continuous use", + "half": null, + "zero": "7 - 14 days" + }, + "crossTolerances": [ + "benzodiazepine", + "thienodiazepine" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.2 mg" + }, + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Strong", + "value": "2-5 mg" + }, + { + "name": "Heavy", + "value": "5 mg" + }, + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Strong", + "value": "2-4 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1.5-2.5 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "5-7 hours" + }, + { + "name": "Onset", + "value": "10-40 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "6-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.2 mg" + }, + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Strong", + "value": "2-5 mg" + }, + { + "name": "Heavy", + "value": "5 mg" + }, + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Strong", + "value": "2-4 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1.5-2.5 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "5-7 hours" + }, + { + "name": "Onset", + "value": "10-40 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "6-24 hours" + } + ] + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Etizolam.shtml", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Research Chemical" + ], + "chemical": [ + "Benzodiazepine" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Eugeroics", + "name": "Eugeroics" + }, + { + "url": "https://psychonautwiki.org/wiki/F-Phenibut", + "name": "F-Phenibut", + "aliases": [ + "F-Phenibut", + "Fluorophenibut", + "Fluorobut" + ], + "aliasesStr": "F-Phenibut, Fluorophenibut, Fluorobut", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol, benzodiazepines or opioids", + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately physically and psychologically addictive", + "tolerance": { + "full": "within a couple of days of continuous use", + "half": null, + "zero": "7 - 14 days" + }, + "crossTolerances": [ + "GABA" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 mg" + }, + { + "name": "Light", + "value": "100-150 mg" + }, + { + "name": "Common", + "value": "150-400 mg" + }, + { + "name": "Strong", + "value": "400-600 mg" + }, + { + "name": "Heavy", + "value": "600 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Total", + "value": "6-8 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + }, + { + "status": "Dangerous", + "name": "Dissociatives" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Fentanyl", + "name": "Fentanyl", + "aliases": [ + "fent" + ], + "aliasesStr": "fent", + "summary": "Fentanyl is a synthetic opiate analgesic with a rapid onset and short duration of action. It is a strong agonist at the μ-opioid receptors and is historically used to treat breakthrough pain. Fentanyl is approximately 100 times more potent than Morphine, and is commonly used as a patch. Sometimes used as an adulterant for heroin, which has led to many overdose deaths.", + "toxicity": [ + "potentially fatal at heavy dosages", + "potentially lethal when mixed with depressants like alcohol or benzodiazepines", + "unintentionally transporting the substance from the skin by touching the mouth, nose or eyes is dangerous" + ], + "addictionPotential": "extremely addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "opioids" + ], + "roas": [ + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "5 μg" + }, + { + "name": "Light", + "value": "10-25 μg" + }, + { + "name": "Common", + "value": "25-50 μg" + }, + { + "name": "Strong", + "value": "50-75 μg" + }, + { + "name": "Heavy", + "value": "75 μg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Total", + "value": "1-4 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 μg" + }, + { + "name": "Light", + "value": "10-25 μg" + }, + { + "name": "Common", + "value": "25-50 μg" + }, + { + "name": "Strong", + "value": "50-75 μg" + }, + { + "name": "Light", + "value": "10-25 ug", + "note": " NOTE: Due to Fentanyl's high potency, it is incredibly difficult to measure safely, and so can easily lead to overdose." + }, + { + "name": "Common", + "value": "25-50 ug", + "note": " NOTE: Due to Fentanyl's high potency, it is incredibly difficult to measure safely, and so can easily lead to overdose." + }, + { + "name": "Strong", + "value": "50-75 ug", + "note": " NOTE: Due to Fentanyl's high potency, it is incredibly difficult to measure safely, and so can easily lead to overdose." + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Total", + "value": "1-4 hours" + }, + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Duration", + "value": "1-4 hours" + } + ] + }, + { + "name": "Transdermal", + "dosage": [ + { + "name": "Threshold", + "value": "5 μg" + }, + { + "name": "Light", + "value": "12-25 μg" + }, + { + "name": "Common", + "value": "25-50 μg" + }, + { + "name": "Strong", + "value": "50-100 μg" + }, + { + "name": "Heavy", + "value": "100 μg" + }, + { + "name": "Light", + "value": "12.5 ug", + "note": " NOTE: Due to Fentanyl's high potency, it is incredibly difficult to measure safely, and so can easily lead to overdose." + }, + { + "name": "Common", + "value": "25-50 ug", + "note": " NOTE: Due to Fentanyl's high potency, it is incredibly difficult to measure safely, and so can easily lead to overdose." + }, + { + "name": "Strong", + "value": "50-100 ug", + "note": " NOTE: Due to Fentanyl's high potency, it is incredibly difficult to measure safely, and so can easily lead to overdose." + } + ], + "duration": [ + { + "name": "Onset", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "48-72 hours" + }, + { + "name": "Onset", + "value": "90-180 minutes" + }, + { + "name": "Duration", + "value": "48-72 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 μg" + }, + { + "name": "Light", + "value": "10-25 μg" + }, + { + "name": "Common", + "value": "25-50 μg" + }, + { + "name": "Strong", + "value": "50-75 μg" + }, + { + "name": "Light", + "value": "10-25 ug", + "note": " NOTE: Due to Fentanyl's high potency, it is incredibly difficult to measure safely, and so can easily lead to overdose." + }, + { + "name": "Common", + "value": "25-50 ug", + "note": " NOTE: Due to Fentanyl's high potency, it is incredibly difficult to measure safely, and so can easily lead to overdose." + }, + { + "name": "Strong", + "value": "50-75 ug", + "note": " NOTE: Due to Fentanyl's high potency, it is incredibly difficult to measure safely, and so can easily lead to overdose." + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Total", + "value": "1-4 hours" + }, + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Duration", + "value": "1-4 hours" + } + ] + }, + { + "name": "Transdermal", + "dosage": [ + { + "name": "Threshold", + "value": "5 μg" + }, + { + "name": "Light", + "value": "12-25 μg" + }, + { + "name": "Common", + "value": "25-50 μg" + }, + { + "name": "Strong", + "value": "50-100 μg" + }, + { + "name": "Heavy", + "value": "100 μg" + }, + { + "name": "Light", + "value": "12.5 ug", + "note": " NOTE: Due to Fentanyl's high potency, it is incredibly difficult to measure safely, and so can easily lead to overdose." + }, + { + "name": "Common", + "value": "25-50 ug", + "note": " NOTE: Due to Fentanyl's high potency, it is incredibly difficult to measure safely, and so can easily lead to overdose." + }, + { + "name": "Strong", + "value": "50-100 ug", + "note": " NOTE: Due to Fentanyl's high potency, it is incredibly difficult to measure safely, and so can easily lead to overdose." + } + ], + "duration": [ + { + "name": "Onset", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "48-72 hours" + }, + { + "name": "Onset", + "value": "90-180 minutes" + }, + { + "name": "Duration", + "value": "48-72 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Flualprazolam", + "name": "Flualprazolam", + "aliases": [], + "aliasesStr": "", + "summary": "Fluorinated alprazolam, that likely has a longer half-life and higher potency than its parent compound.", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.05 mg" + }, + { + "name": "Light", + "value": "0.1-0.3 mg" + }, + { + "name": "Common", + "value": "0.3-0.5 mg" + }, + { + "name": "Strong", + "value": "0.5-1 mg" + }, + { + "name": "Heavy", + "value": "1 mg" + }, + { + "name": "Light", + "value": "0.125-0.25 mg" + }, + { + "name": "Common", + "value": "0.25-0.5 mg" + }, + { + "name": "Strong", + "value": "0.5-1 mg" + }, + { + "name": "Heavy", + "value": "1-2 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "2-6 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "6-14 hours" + }, + { + "name": "After Effects", + "value": "1-36 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.05 mg" + }, + { + "name": "Light", + "value": "0.1-0.3 mg" + }, + { + "name": "Common", + "value": "0.3-0.5 mg" + }, + { + "name": "Strong", + "value": "0.5-1 mg" + }, + { + "name": "Heavy", + "value": "1 mg" + }, + { + "name": "Light", + "value": "0.125-0.25 mg" + }, + { + "name": "Common", + "value": "0.25-0.5 mg" + }, + { + "name": "Strong", + "value": "0.5-1 mg" + }, + { + "name": "Heavy", + "value": "1-2 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "2-6 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "6-14 hours" + }, + { + "name": "After Effects", + "value": "1-36 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + }, + { + "status": "Dangerous", + "name": "Dissociatives" + } + ], + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [ + "Benzodiazepine" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Flubromazepam", + "name": "Flubromazepam", + "aliases": [], + "aliasesStr": "", + "summary": "A somewhat common benzodiazepine drug known for its extreme duration, with effects for larger doses reaching up to three days. Sedative, hypnotic and anxiolytic, this compound is an analogue of Phenazepam. First discovered in the 1960s, it was never marketed as a licit drug, but has recently become available as an RC. Not to be confused with Flubromazolam.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "tolerance": { + "full": "within a couple of days of continuous use", + "half": null, + "zero": "7 - 14 days" + }, + "crossTolerances": [ + "benzodiazepines" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-8 mg" + }, + { + "name": "Strong", + "value": "8-12 mg" + }, + { + "name": "Heavy", + "value": "12 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-8 mg" + }, + { + "name": "Strong", + "value": "8-12 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "40-90 minutes" + }, + { + "name": "Total", + "value": "6-12 hours" + }, + { + "name": "Onset", + "value": "15-90 minutes" + }, + { + "name": "Duration", + "value": "12-18 hours" + }, + { + "name": "After Effects", + "value": "36+ hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-8 mg" + }, + { + "name": "Strong", + "value": "8-12 mg" + }, + { + "name": "Heavy", + "value": "12 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-8 mg" + }, + { + "name": "Strong", + "value": "8-12 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "40-90 minutes" + }, + { + "name": "Total", + "value": "6-12 hours" + }, + { + "name": "Onset", + "value": "15-90 minutes" + }, + { + "name": "Duration", + "value": "12-18 hours" + }, + { + "name": "After Effects", + "value": "36+ hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Research Chemical" + ], + "chemical": [ + "Benzodiazepine" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Flubromazolam", + "name": "Flubromazolam", + "aliases": [ + "f-lam", + "flam" + ], + "aliasesStr": "f-lam, flam", + "summary": "A very potent benzodiazepine derivative that is related to Triazolam and Pyrazolam. Popular in the research chemical scene, it is a potent sedative, hypnotic and anxiolytic. Potential for amnesia and reduced inhibitions in higher dose. Not to be confused with Flubromazepam, which is much less potent and has a much longer half-life.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "tolerance": { + "full": "within a couple of days of continuous use", + "half": null, + "zero": "7 - 14 days" + }, + "crossTolerances": [ + "benzodiazepines" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 μg" + }, + { + "name": "Light", + "value": "100-150 μg" + }, + { + "name": "Common", + "value": "150-250 μg" + }, + { + "name": "Strong", + "value": "250-400 μg" + }, + { + "name": "Heavy", + "value": "400 μg" + }, + { + "name": "Threshold", + "value": "80 ug", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Light", + "value": "100-200 ug", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Common", + "value": "200-400 ug", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Strong", + "value": "400-600 ug", + "note": " NOTE: These doses are tentative and may need further research." + } + ], + "duration": [ + { + "name": "Total", + "value": "12-18 hours" + }, + { + "name": "Onset", + "value": "20-45 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "6-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 μg" + }, + { + "name": "Light", + "value": "100-150 μg" + }, + { + "name": "Common", + "value": "150-250 μg" + }, + { + "name": "Strong", + "value": "250-400 μg" + }, + { + "name": "Heavy", + "value": "400 μg" + }, + { + "name": "Threshold", + "value": "80 ug", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Light", + "value": "100-200 ug", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Common", + "value": "200-400 ug", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Strong", + "value": "400-600 ug", + "note": " NOTE: These doses are tentative and may need further research." + } + ], + "duration": [ + { + "name": "Total", + "value": "12-18 hours" + }, + { + "name": "Onset", + "value": "20-45 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "6-24 hours" + } + ] + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Flubromazolam.shtml", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Research Chemical" + ], + "chemical": [ + "Benzodiazepine" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Flunitrazepam", + "name": "Flunitrazepam", + "aliases": [ + "roofies", + "rohypnol" + ], + "aliasesStr": "roofies, rohypnol", + "summary": "Known as Rohypnol or 'roofies,' this infamous drug has similar qualities to most other benzodiazepines; sedating with strong hypnotic effects. Despite being known as a 'date rape drug' has only been implicated in a small number of such crimes. Danger of respiratory depression in combination with other depressants. May cause amnesia and lowered inhibitions in overdose.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "tolerance": { + "full": "within a couple of days of continuous use", + "half": null, + "zero": "7 - 14 days" + }, + "crossTolerances": [ + "benzodiazepines" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.2 mg" + }, + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-3 mg" + }, + { + "name": "Strong", + "value": "3-4 mg" + }, + { + "name": "Heavy", + "value": "4 mg" + }, + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Heavy", + "value": "2-4 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-30 minutes" + }, + { + "name": "Afterglow", + "value": "2-24 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "2-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.2 mg" + }, + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-3 mg" + }, + { + "name": "Strong", + "value": "3-4 mg" + }, + { + "name": "Heavy", + "value": "4 mg" + }, + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Heavy", + "value": "2-4 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-30 minutes" + }, + { + "name": "Afterglow", + "value": "2-24 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "2-24 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Flunitrazolam", + "name": "Flunitrazolam", + "aliases": [ + "fln" + ], + "aliasesStr": "fln", + "summary": "A very potent hypnotic Benzodiazepine. Triazolo version of Flunitrazepam.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "tolerance": { + "full": "within a couple of days of continuous use", + "half": null, + "zero": "7 - 14 days" + }, + "crossTolerances": [ + "benzodiazepines" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.1 mg" + }, + { + "name": "Light", + "value": "0.1-0.2 mg" + }, + { + "name": "Common", + "value": "0.2-0.3 mg" + }, + { + "name": "Strong", + "value": "0.3-0.5 mg" + }, + { + "name": "Heavy", + "value": "0.5 mg" + }, + { + "name": "Threshold", + "value": "30-40 ug" + }, + { + "name": "Light", + "value": "40-80 ug" + }, + { + "name": "Common", + "value": "80-150 ug" + }, + { + "name": "Strong", + "value": "150-300 ug" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "1-12 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "4-5 hours" + }, + { + "name": "After Effects", + "value": "1-16 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.1 mg" + }, + { + "name": "Light", + "value": "0.1-0.2 mg" + }, + { + "name": "Common", + "value": "0.2-0.3 mg" + }, + { + "name": "Strong", + "value": "0.3-0.5 mg" + }, + { + "name": "Heavy", + "value": "0.5 mg" + }, + { + "name": "Threshold", + "value": "30-40 ug" + }, + { + "name": "Light", + "value": "40-80 ug" + }, + { + "name": "Common", + "value": "80-150 ug" + }, + { + "name": "Strong", + "value": "150-300 ug" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "1-12 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "4-5 hours" + }, + { + "name": "After Effects", + "value": "1-16 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Tentative" + ], + "chemical": [ + "Benzodiazepine" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/GBL", + "name": "GBL", + "aliases": [], + "aliasesStr": "", + "summary": "A pro-drug to GHB whose rapid absorption leads it to have a faster onset and shorter duration. Used in a similar manner to GHB, as a less-toxic alternative to alcohol. Consume slowly instead of as a \"shot\" to hugely improve safety and reduce overdose risk.", + "addictionPotential": "highly physically and moderately to highly psychologically addictive", + "tolerance": { + "full": "within several days of continuous use", + "half": null, + "zero": "7 - 14 days" + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.3 mL" + }, + { + "name": "Light", + "value": "0.3-0.9 mL" + }, + { + "name": "Common", + "value": "0.9-1.5 mL" + }, + { + "name": "Strong", + "value": "1.5-3 mL" + }, + { + "name": "Heavy", + "value": "3 mL" + }, + { + "name": "Light", + "value": "0.3-0.9 ml", + "note": " NOTE: 1ml = 1.6g GHB. Tends to induce heavy sleep as you pass the 2ml mark." + }, + { + "name": "Common", + "value": "0.6-1.5 ml", + "note": " NOTE: 1ml = 1.6g GHB. Tends to induce heavy sleep as you pass the 2ml mark." + }, + { + "name": "Strong", + "value": "1.2-2 ml", + "note": " NOTE: 1ml = 1.6g GHB. Tends to induce heavy sleep as you pass the 2ml mark." + }, + { + "name": "Heavy", + "value": "2-3 ml", + "note": " NOTE: 1ml = 1.6g GHB. Tends to induce heavy sleep as you pass the 2ml mark." + }, + { + "name": "Dangerous", + "value": "5 ml", + "note": " NOTE: 1ml = 1.6g GHB. Tends to induce heavy sleep as you pass the 2ml mark." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "5-15 minutes" + }, + { + "name": "Onset", + "value": "3-10 minutes" + }, + { + "name": "Peak", + "value": "30-45 minutes" + }, + { + "name": "Offset", + "value": "15-30 minutes" + }, + { + "name": "Afterglow", + "value": "1-3 hours" + }, + { + "name": "Total", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "1-2 hours" + }, + { + "name": "After Effects", + "value": "1-2 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.3 mL" + }, + { + "name": "Light", + "value": "0.3-0.9 mL" + }, + { + "name": "Common", + "value": "0.9-1.5 mL" + }, + { + "name": "Strong", + "value": "1.5-3 mL" + }, + { + "name": "Heavy", + "value": "3 mL" + }, + { + "name": "Light", + "value": "0.3-0.9 ml", + "note": " NOTE: 1ml = 1.6g GHB. Tends to induce heavy sleep as you pass the 2ml mark." + }, + { + "name": "Common", + "value": "0.6-1.5 ml", + "note": " NOTE: 1ml = 1.6g GHB. Tends to induce heavy sleep as you pass the 2ml mark." + }, + { + "name": "Strong", + "value": "1.2-2 ml", + "note": " NOTE: 1ml = 1.6g GHB. Tends to induce heavy sleep as you pass the 2ml mark." + }, + { + "name": "Heavy", + "value": "2-3 ml", + "note": " NOTE: 1ml = 1.6g GHB. Tends to induce heavy sleep as you pass the 2ml mark." + }, + { + "name": "Dangerous", + "value": "5 ml", + "note": " NOTE: 1ml = 1.6g GHB. Tends to induce heavy sleep as you pass the 2ml mark." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "5-15 minutes" + }, + { + "name": "Onset", + "value": "3-10 minutes" + }, + { + "name": "Peak", + "value": "30-45 minutes" + }, + { + "name": "Offset", + "value": "15-30 minutes" + }, + { + "name": "Afterglow", + "value": "1-3 hours" + }, + { + "name": "Total", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "1-2 hours" + }, + { + "name": "After Effects", + "value": "1-2 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MDMA" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Opioids" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_GBL.shtml", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/GHB", + "name": "GHB", + "aliases": [], + "aliasesStr": "", + "summary": "A euphoric depressant which is prescribed as a sleep aid and sometimes to help with Alcohol detox. Also used as a recreational depressant, as a non-toxic alternative to Alcohol. Despite not having Alcohol's toxicity it is risky due to among other things inconsistent concentration in commonly sold solution form, and can be very dangerous if taken with other depressants.", + "toxicity": [ + "considered to be a safe and non-toxic substance when used responsibly or medically", + "Doses above 10 grams are associated with a risk of death" + ], + "addictionPotential": "moderately to highly physically and moderately psychologically addictive", + "tolerance": { + "full": "within several days of continuous use", + "half": null, + "zero": "7 - 14 days" + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 g" + }, + { + "name": "Light", + "value": "0.5-1 g" + }, + { + "name": "Common", + "value": "1-2.5 g" + }, + { + "name": "Strong", + "value": "2.5-4 g" + }, + { + "name": "Heavy", + "value": "4 g" + }, + { + "name": "Light", + "value": "0.5-1.5 g", + "note": " NOTE: Tends to induce heavy sedation from about the 3g mark." + }, + { + "name": "Common", + "value": "1-2.5 g", + "note": " NOTE: Tends to induce heavy sedation from about the 3g mark." + }, + { + "name": "Strong", + "value": "2-3.5 g", + "note": " NOTE: Tends to induce heavy sedation from about the 3g mark." + }, + { + "name": "Heavy", + "value": "3.5-5 g", + "note": " NOTE: Tends to induce heavy sedation from about the 3g mark." + }, + { + "name": "Dangerous", + "value": "7 g", + "note": " NOTE: Tends to induce heavy sedation from about the 3g mark." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "10-20 minutes" + }, + { + "name": "Onset", + "value": "5-30 minutes" + }, + { + "name": "Peak", + "value": "45-90 minutes" + }, + { + "name": "Offset", + "value": "15-30 minutes" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "1.5-2.5 hours" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Duration", + "value": "1.5-2.5 hours" + }, + { + "name": "After Effects", + "value": "2-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 g" + }, + { + "name": "Light", + "value": "0.5-1 g" + }, + { + "name": "Common", + "value": "1-2.5 g" + }, + { + "name": "Strong", + "value": "2.5-4 g" + }, + { + "name": "Heavy", + "value": "4 g" + }, + { + "name": "Light", + "value": "0.5-1.5 g", + "note": " NOTE: Tends to induce heavy sedation from about the 3g mark." + }, + { + "name": "Common", + "value": "1-2.5 g", + "note": " NOTE: Tends to induce heavy sedation from about the 3g mark." + }, + { + "name": "Strong", + "value": "2-3.5 g", + "note": " NOTE: Tends to induce heavy sedation from about the 3g mark." + }, + { + "name": "Heavy", + "value": "3.5-5 g", + "note": " NOTE: Tends to induce heavy sedation from about the 3g mark." + }, + { + "name": "Dangerous", + "value": "7 g", + "note": " NOTE: Tends to induce heavy sedation from about the 3g mark." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "10-20 minutes" + }, + { + "name": "Onset", + "value": "5-30 minutes" + }, + { + "name": "Peak", + "value": "45-90 minutes" + }, + { + "name": "Offset", + "value": "15-30 minutes" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "1.5-2.5 hours" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Duration", + "value": "1.5-2.5 hours" + }, + { + "name": "After Effects", + "value": "2-4 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MDMA" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Opioids" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_GHB.shtml", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Gabapentin", + "name": "Gabapentin", + "aliases": [ + "neurontin" + ], + "aliasesStr": "neurontin", + "summary": "An analogue of GABA also known as Neurontin, originally developed to treat epilepsy. Commonly prescribed for neuropathic pain, it also has pronounced anxiolytic effects leading to its use in treating anxiety disorders.", + "toxicity": [ + "low toxicity" + ], + "tolerance": { + "full": "with prolonged continuous usage", + "half": null, + "zero": "7-14 days" + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "200 mg" + }, + { + "name": "Light", + "value": "200-900 mg" + }, + { + "name": "Common", + "value": "900-1500 mg" + }, + { + "name": "Strong", + "value": "1500-2400 mg" + }, + { + "name": "Heavy", + "value": "2400 mg" + }, + { + "name": "Light", + "value": "300-600 mg" + }, + { + "name": "Common", + "value": "600-900 mg" + }, + { + "name": "Strong", + "value": "1200 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-120 minutes" + }, + { + "name": "Peak", + "value": "120-180 minutes" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "5-12 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ], + "bioavailability": "60%" + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "200 mg" + }, + { + "name": "Light", + "value": "200-900 mg" + }, + { + "name": "Common", + "value": "900-1500 mg" + }, + { + "name": "Strong", + "value": "1500-2400 mg" + }, + { + "name": "Heavy", + "value": "2400 mg" + }, + { + "name": "Light", + "value": "300-600 mg" + }, + { + "name": "Common", + "value": "600-900 mg" + }, + { + "name": "Strong", + "value": "1200 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-120 minutes" + }, + { + "name": "Peak", + "value": "120-180 minutes" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "5-12 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ], + "bioavailability": "60%" + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "Opioids" + }, + { + "status": "Dangerous", + "name": "Depressant" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Depressant", + "Habit Forming" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Gabapentinoids", + "name": "Gabapentinoids" + }, + { + "url": "https://psychonautwiki.org/wiki/Gaboxadol", + "name": "Gaboxadol", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-45 mg" + }, + { + "name": "Heavy", + "value": "45 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "1-3 minutes" + }, + { + "name": "Afterglow", + "value": "1-3 hours" + }, + { + "name": "Total", + "value": "2-5 minutes" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Galantamine", + "name": "Galantamine", + "aliases": [ + "Galantamine" + ], + "aliasesStr": "Galantamine", + "toxicity": [ + "extremely low toxicity" + ], + "addictionPotential": "not habit-forming", + "crossTolerances": [], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "4-8 mg" + }, + { + "name": "Common", + "value": "8-16 mg" + }, + { + "name": "Strong", + "value": "16-24 mg" + }, + { + "name": "Heavy", + "value": "24 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Total", + "value": "6-12 hours" + } + ], + "bioavailability": "90%" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Glaucine", + "name": "Glaucine", + "aliases": [], + "aliasesStr": "", + "summary": "An alkaloid that is found in several different scpecies in the Papaveraceae family. It has antiinflammatory and antitussive effects. Can also be referred to as Yellow Horned Poppy.", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "20-75 mg" + }, + { + "name": "Common", + "value": "75-150 mg" + }, + { + "name": "Strong", + "value": "150-180 mg" + }, + { + "name": "Heavy", + "value": "180 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "150-200 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-45 minutes" + }, + { + "name": "Peak", + "value": "1-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "3-8 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Duration", + "value": "6-8 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ], + "bioavailability": "%" + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "20-75 mg" + }, + { + "name": "Common", + "value": "75-150 mg" + }, + { + "name": "Strong", + "value": "150-180 mg" + }, + { + "name": "Heavy", + "value": "180 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "150-200 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-45 minutes" + }, + { + "name": "Peak", + "value": "1-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "3-8 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Duration", + "value": "6-8 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ], + "bioavailability": "%" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/HXE", + "name": "HXE", + "aliases": [ + "HXE" + ], + "aliasesStr": "HXE", + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dissociative" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "30 mg" + }, + { + "name": "Light", + "value": "30-60 mg" + }, + { + "name": "Common", + "value": "60-100 mg" + }, + { + "name": "Strong", + "value": "100-130 mg" + }, + { + "name": "Heavy", + "value": "130 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "3-6 hours" + }, + { + "name": "Afterglow", + "value": "1-12 hours" + }, + { + "name": "Total", + "value": "3-8 hours" + } + ] + }, + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "30 mg" + }, + { + "name": "Light", + "value": "30-60 mg" + }, + { + "name": "Common", + "value": "60-100 mg" + }, + { + "name": "Strong", + "value": "100-130 mg" + }, + { + "name": "Heavy", + "value": "130 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "2-6 hours" + }, + { + "name": "Afterglow", + "value": "1-12 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "40-20 mg" + }, + { + "name": "Common", + "value": "40-70 mg" + }, + { + "name": "Strong", + "value": "70-120 mg" + }, + { + "name": "Heavy", + "value": "120 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-40 minutes" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Peak", + "value": "1.5-4 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "2-7 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Hallucinogens", + "name": "Hallucinogens" + }, + { + "url": "https://psychonautwiki.org/wiki/Haloperidol", + "name": "Haloperidol", + "aliases": [ + "Haldol" + ], + "aliasesStr": "Haldol", + "toxicity": [ + "can have serious side effects at higher dosages", + "risk of having severe extrapyramidal symptoms and muscle rigidity" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.25 mg" + }, + { + "name": "Light", + "value": "0.25-1 mg" + }, + { + "name": "Common", + "value": "1-5 mg" + }, + { + "name": "Strong", + "value": "5-10 mg" + }, + { + "name": "Heavy", + "value": "10 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Total", + "value": "12-36 hours" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Harmala_alkaloid", + "name": "Harmala alkaloid" + }, + { + "url": "https://psychonautwiki.org/wiki/Heroin", + "name": "Heroin", + "aliases": [ + "diamorphine" + ], + "aliasesStr": "diamorphine", + "summary": "A powerful opioid derived from Morphine, with 2-4x its potency. Infamous for a high addiction potential and fatal respiratory depression in overdose, C. R. Alder Wright first synthesised this compound in 1874 trying to find a less addictive alternative to Morphine. In recent years, it has often been sold cut with the extremely potent fentanyl, causing a spike in overdose deaths.", + "addictionPotential": "extremely addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "opioids" + ], + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "7.5-20 mg" + }, + { + "name": "Common", + "value": "20-35 mg" + }, + { + "name": "Strong", + "value": "35-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "7.5-20 mg", + "note": " Note: Heroin dose varies greatly depending on quality and tolerance." + }, + { + "name": "Common", + "value": "20-35 mg", + "note": " Note: Heroin dose varies greatly depending on quality and tolerance." + }, + { + "name": "Strong", + "value": "35-50 mg", + "note": " Note: Heroin dose varies greatly depending on quality and tolerance." + }, + { + "name": "Heavy", + "value": "50-75 mg", + "note": " Note: Heroin dose varies greatly depending on quality and tolerance." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "10-60 seconds" + }, + { + "name": "Onset", + "value": "10-60 seconds" + }, + { + "name": "Peak", + "value": "1-90 minutes" + }, + { + "name": "Offset", + "value": "1-3 hours" + }, + { + "name": "Afterglow", + "value": "1.5-3 hours" + }, + { + "name": "Total", + "value": "3-7 hours" + }, + { + "name": "Onset", + "value": "10-15 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + } + ] + }, + { + "name": "Intravenous", + "dosage": [ + { + "name": "Common", + "value": "5-8 mg" + }, + { + "name": "Strong", + "value": "8-15 mg" + }, + { + "name": "Heavy", + "value": "15 mg" + }, + { + "name": "Common", + "value": "5-10 mg", + "note": " Note: Heroin dose varies greatly depending on quality and tolerance." + }, + { + "name": "Strong", + "value": "8-15 mg", + "note": " Note: Heroin dose varies greatly depending on quality and tolerance." + } + ], + "duration": [ + { + "name": "Peak", + "value": "1-4 hours" + }, + { + "name": "Offset", + "value": "30-60 minutes" + }, + { + "name": "Total", + "value": "4-5 hours" + }, + { + "name": "Onset", + "value": "0-5 minutes" + }, + { + "name": "Duration", + "value": "4-5 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "5-15 mg", + "note": " Note: Heroin dose varies greatly depending on quality and tolerance." + }, + { + "name": "Common", + "value": "15-25 mg", + "note": " Note: Heroin dose varies greatly depending on quality and tolerance." + }, + { + "name": "Heavy", + "value": "30-50 mg", + "note": " Note: Heroin dose varies greatly depending on quality and tolerance." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "5-10 seconds" + }, + { + "name": "Onset", + "value": "5-10 seconds" + }, + { + "name": "Peak", + "value": "15-30 minutes" + }, + { + "name": "Offset", + "value": "15-30 minutes" + }, + { + "name": "Afterglow", + "value": "10-30 minutes" + }, + { + "name": "Total", + "value": "3-5 hours" + }, + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "7.5-20 mg" + }, + { + "name": "Common", + "value": "20-35 mg" + }, + { + "name": "Strong", + "value": "35-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "7.5-20 mg", + "note": " Note: Heroin dose varies greatly depending on quality and tolerance." + }, + { + "name": "Common", + "value": "20-35 mg", + "note": " Note: Heroin dose varies greatly depending on quality and tolerance." + }, + { + "name": "Strong", + "value": "35-50 mg", + "note": " Note: Heroin dose varies greatly depending on quality and tolerance." + }, + { + "name": "Heavy", + "value": "50-75 mg", + "note": " Note: Heroin dose varies greatly depending on quality and tolerance." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "10-60 seconds" + }, + { + "name": "Onset", + "value": "10-60 seconds" + }, + { + "name": "Peak", + "value": "1-90 minutes" + }, + { + "name": "Offset", + "value": "1-3 hours" + }, + { + "name": "Afterglow", + "value": "1.5-3 hours" + }, + { + "name": "Total", + "value": "3-7 hours" + }, + { + "name": "Onset", + "value": "10-15 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + } + ] + }, + { + "name": "Intravenous", + "dosage": [ + { + "name": "Common", + "value": "5-8 mg" + }, + { + "name": "Strong", + "value": "8-15 mg" + }, + { + "name": "Heavy", + "value": "15 mg" + }, + { + "name": "Common", + "value": "5-10 mg", + "note": " Note: Heroin dose varies greatly depending on quality and tolerance." + }, + { + "name": "Strong", + "value": "8-15 mg", + "note": " Note: Heroin dose varies greatly depending on quality and tolerance." + } + ], + "duration": [ + { + "name": "Peak", + "value": "1-4 hours" + }, + { + "name": "Offset", + "value": "30-60 minutes" + }, + { + "name": "Total", + "value": "4-5 hours" + }, + { + "name": "Onset", + "value": "0-5 minutes" + }, + { + "name": "Duration", + "value": "4-5 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "5-15 mg", + "note": " Note: Heroin dose varies greatly depending on quality and tolerance." + }, + { + "name": "Common", + "value": "15-25 mg", + "note": " Note: Heroin dose varies greatly depending on quality and tolerance." + }, + { + "name": "Heavy", + "value": "30-50 mg", + "note": " Note: Heroin dose varies greatly depending on quality and tolerance." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "5-10 seconds" + }, + { + "name": "Onset", + "value": "5-10 seconds" + }, + { + "name": "Peak", + "value": "15-30 minutes" + }, + { + "name": "Offset", + "value": "15-30 minutes" + }, + { + "name": "Afterglow", + "value": "10-30 minutes" + }, + { + "name": "Total", + "value": "3-5 hours" + }, + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Heroin.shtml", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Hexedrone", + "name": "Hexedrone", + "aliases": [], + "aliasesStr": "", + "summary": "A rare mephedrone analogue also known as MACP, a cathinone stimulant with similar effects to pentedrone.", + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "30 mg" + }, + { + "name": "Light", + "value": "50-70 mg" + }, + { + "name": "Common", + "value": "70-100 mg" + }, + { + "name": "Strong", + "value": "100-125 mg" + }, + { + "name": "Heavy", + "value": "125 mg" + }, + { + "name": "Threshold", + "value": "30-50 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Light", + "value": "50-70 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Common", + "value": "70-100 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Strong", + "value": "100-125 mg", + "note": " NOTE: These doses are tentative and may need further research." + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Afterglow", + "value": "1-12 hours" + }, + { + "name": "Total", + "value": "1-4 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "1-4 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "30 mg" + }, + { + "name": "Light", + "value": "50-70 mg" + }, + { + "name": "Common", + "value": "70-100 mg" + }, + { + "name": "Strong", + "value": "100-125 mg" + }, + { + "name": "Heavy", + "value": "125 mg" + }, + { + "name": "Threshold", + "value": "30-50 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Light", + "value": "50-70 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Common", + "value": "70-100 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Strong", + "value": "100-125 mg", + "note": " NOTE: These doses are tentative and may need further research." + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Afterglow", + "value": "1-12 hours" + }, + { + "name": "Total", + "value": "1-4 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "1-4 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Hydrocodone", + "name": "Hydrocodone", + "aliases": [ + "vicodin", + "hydro" + ], + "aliasesStr": "vicodin, hydro", + "summary": "A codeine-derived opioid generally unheard of outside the United States. Generally mild in effects, used as an analgesic and cough-supressant. Sometimes used recreationally.", + "toxicity": [ + "potentially fatal at heavy dosages" + ], + "addictionPotential": "moderately addictive", + "tolerance": { + "full": "with prolonged use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "opioids" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "25-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "25-40 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-60 minutes" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "10-60 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "25-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "25-40 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-60 minutes" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "10-60 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Hydrocodone.shtml", + "classes": { + "psychoactive": [ + "Depressant", + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Hydromorphone", + "name": "Hydromorphone", + "aliases": [ + "dilaudid", + "diluadid" + ], + "aliasesStr": "dilaudid, diluadid", + "summary": "An opioid that is roughly 5x the potency of IV Morphine. Only comes in IR tablets in the US, and is given mostly as XR in other countries. It is frequently used in hospitals for short, but immediate pain relief during procedures requiring the patient to be awake. Also frequently used as a recreational opiate.", + "crossTolerances": [ + "opioids" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-4 mg" + }, + { + "name": "Strong", + "value": "4-8 mg" + }, + { + "name": "Heavy", + "value": "8 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "3-4 " + }, + { + "name": "Strong", + "value": "4-8 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-45 minutes" + }, + { + "name": "Peak", + "value": "3-4 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "3-4 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + }, + { + "name": "Intravenous", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-4 mg" + }, + { + "name": "Strong", + "value": "4-6 mg" + }, + { + "name": "Heavy", + "value": "6 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-4 mg" + }, + { + "name": "Strong", + "value": "4-6 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-90 seconds" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "0-1 minutes" + }, + { + "name": "Duration", + "value": "1-2 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "3-4 mg" + }, + { + "name": "Strong", + "value": "4-8 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "2-3 hours" + } + ] + }, + { + "name": "Intravenous", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-4 mg" + }, + { + "name": "Strong", + "value": "4-6 mg" + }, + { + "name": "Heavy", + "value": "6 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-4 mg" + }, + { + "name": "Strong", + "value": "4-6 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-90 seconds" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "0-1 minutes" + }, + { + "name": "Duration", + "value": "1-2 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-4 mg" + }, + { + "name": "Strong", + "value": "4-8 mg" + }, + { + "name": "Heavy", + "value": "8 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "3-4 " + }, + { + "name": "Strong", + "value": "4-8 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-45 minutes" + }, + { + "name": "Peak", + "value": "3-4 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "3-4 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Hydromorphone.shtml", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Hyoscyamus_niger_(botany)", + "name": "Hyoscyamus niger (botany)" + }, + { + "url": "https://psychonautwiki.org/wiki/Hypnotic", + "name": "Hypnotic" + }, + { + "url": "https://psychonautwiki.org/wiki/Ibogaine", + "name": "Ibogaine", + "aliases": [ + "iboga" + ], + "aliasesStr": "iboga", + "summary": "An alkaloid found in many African plants most famously Iboga, with psychedelic and hallucinogenic properties. May be unpleasant. Traditionally used in tribal environments for coming-of-age rituals, it has recently been used as an alternative treatment for drug addiction although this usage has not been backed by conclusive data in humans. Has killed in overdose.", + "addictionPotential": "not habit-forming", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "15-22 mg/kg of body weight" + }, + { + "name": "Common", + "value": "16-22 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-180 minutes" + }, + { + "name": "Peak", + "value": "18-36 hours" + }, + { + "name": "Afterglow", + "value": "24-72 hours" + }, + { + "name": "Onset", + "value": "45-180 minutes" + }, + { + "name": "Duration", + "value": "24-30 hours" + }, + { + "name": "After Effects", + "value": "24-72 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "15-22 mg/kg of body weight" + }, + { + "name": "Common", + "value": "16-22 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-180 minutes" + }, + { + "name": "Peak", + "value": "18-36 hours" + }, + { + "name": "Afterglow", + "value": "24-72 hours" + }, + { + "name": "Onset", + "value": "45-180 minutes" + }, + { + "name": "Duration", + "value": "24-30 hours" + }, + { + "name": "After Effects", + "value": "24-72 hours" + } + ] + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Ibogaine.shtml", + "classes": { + "psychoactive": [ + "Depressant", + "Dissociative", + "Opioid", + "Psychedelic" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Inhalants", + "name": "Inhalants", + "addictionPotential": "moderately addictive with a high potential for abuse" + }, + { + "url": "https://psychonautwiki.org/wiki/Isopropylphenidate", + "name": "Isopropylphenidate", + "aliases": [ + "iph", + "ipph", + "ippd", + "ipp" + ], + "aliasesStr": "iph, ipph, ippd, ipp", + "summary": "IPPH (or incorrectly IPH) is a novel piperidine based methylphenidate analogue and NDRI stimulant, but comes with much less physical side effects.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-45 mg" + }, + { + "name": "Heavy", + "value": "45 mg" + }, + { + "name": "Light", + "value": "7-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-30 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-40 minutes" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Peak", + "value": "1.5-2.5 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Total", + "value": "3.5-6 hours" + }, + { + "name": "Onset", + "value": "30 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-35 mg" + }, + { + "name": "Heavy", + "value": "35 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "10-30 minutes" + }, + { + "name": "Onset", + "value": "2-5 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "1-1.5 hours" + }, + { + "name": "Total", + "value": "2.5-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-45 mg" + }, + { + "name": "Heavy", + "value": "45 mg" + }, + { + "name": "Light", + "value": "7-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-30 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-40 minutes" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Peak", + "value": "1.5-2.5 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Total", + "value": "3.5-6 hours" + }, + { + "name": "Onset", + "value": "30 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Isopropylphenidate.shtml", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/JWH-018", + "name": "JWH-018", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "cannabinoids" + ], + "roas": [ + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-3 mg" + }, + { + "name": "Strong", + "value": "3-5 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Peak", + "value": "60-90 minutes" + }, + { + "name": "Offset", + "value": "5-10 minutes" + }, + { + "name": "Afterglow", + "value": "60-90 minutes" + }, + { + "name": "Total", + "value": "1-2 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "2C-T-x" + }, + { + "status": "Caution", + "name": "2C-x" + }, + { + "status": "Caution", + "name": "5-MeO-xxT" + }, + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "ΑMT" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Caution", + "name": "DMT" + }, + { + "status": "Caution", + "name": "DOx" + }, + { + "status": "Caution", + "name": "LSD" + }, + { + "status": "Caution", + "name": "Mescaline" + }, + { + "status": "Caution", + "name": "Psilocybin mushrooms" + }, + { + "status": "Caution", + "name": "25x-NBOMe" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/JWH-073", + "name": "JWH-073", + "aliases": [ + "JWH-073", + "Spice" + ], + "aliasesStr": "JWH-073, Spice", + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "cannabinoids" + ], + "roas": [ + { + "name": "Smoked", + "dosage": [ + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-15 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Peak", + "value": "60-90 minutes" + }, + { + "name": "Offset", + "value": "5-10 minutes" + }, + { + "name": "Afterglow", + "value": "60-90 minutes" + }, + { + "name": "Total", + "value": "1-2 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "2C-T-x" + }, + { + "status": "Caution", + "name": "2C-x" + }, + { + "status": "Caution", + "name": "5-MeO-xxT" + }, + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "ΑMT" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Caution", + "name": "DMT" + }, + { + "status": "Caution", + "name": "DOx" + }, + { + "status": "Caution", + "name": "LSD" + }, + { + "status": "Caution", + "name": "Mescaline" + }, + { + "status": "Caution", + "name": "Psilocybin mushrooms" + }, + { + "status": "Caution", + "name": "25x-NBOMe" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Kava", + "name": "Kava", + "aliases": [], + "aliasesStr": "", + "summary": "Tropical evergreen shrub with large heart-shaped leaves and woody stems. Its thick roots are mashed or ground and made into a cold and bitter-tasting beverage used similarly to alcohol. It has a long history of ritual and recreational use in Pacific Polynesia and is now a common herbal product, used widely by those in certain societies as part of a 'Kava Culture.'", + "interactions": [ + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + }, + { + "status": "Dangerous", + "name": "Dissociatives" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Kava.shtml", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-70 mg", + "note": " NOTE: Doses are given for pure kavalactones, usually 5-20% of kava." + }, + { + "name": "Common", + "value": "70-150 mg", + "note": " NOTE: Doses are given for pure kavalactones, usually 5-20% of kava." + }, + { + "name": "Strong", + "value": "150-200 mg", + "note": " NOTE: Doses are given for pure kavalactones, usually 5-20% of kava." + }, + { + "name": "Heavy", + "value": "300 mg", + "note": " NOTE: Doses are given for pure kavalactones, usually 5-20% of kava." + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-30 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "9-18 hours" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Ketamine", + "name": "Ketamine", + "aliases": [ + "k", + "ket", + "kitty", + "kittens" + ], + "aliasesStr": "k, ket, kitty, kittens", + "summary": "A short acting dissociative anaesthetic and hallucinogen commonly used in emergency medicine. It is the prototypical dissociative, and is widely used at sub-anesthetic doses recreationally. Small doses are comparable with alcohol, while larger doses are immobilising and lead to psychedelic experiences: the \"K-Hole.\"", + "addictionPotential": "moderate to high abuse potential and produces psychological dependence with chronic use", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dissociative" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-300 mg" + }, + { + "name": "Strong", + "value": "300-450 mg" + }, + { + "name": "Heavy", + "value": "450 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "5-20 minutes" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Peak", + "value": "45-90 minutes" + }, + { + "name": "Offset", + "value": "3-6 hours" + }, + { + "name": "Afterglow", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "10-75 minutes" + }, + { + "name": "Duration", + "value": "1-2 hours" + }, + { + "name": "After Effects", + "value": "1-2 hours" + } + ], + "bioavailability": "17%" + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-30 mg" + }, + { + "name": "Common", + "value": "30-75 mg" + }, + { + "name": "Strong", + "value": "75-150 mg" + }, + { + "name": "Heavy", + "value": "150 mg" + }, + { + "name": "Threshold", + "value": "5-10 mg", + "note": " NOTE: Ketamine is based on weight. These are figures for the average 150 pound male There is no concrete dose for the \"K-Hole\" as each user is different." + }, + { + "name": "Light", + "value": "20-50 mg", + "note": " NOTE: Ketamine is based on weight. These are figures for the average 150 pound male There is no concrete dose for the \"K-Hole\" as each user is different." + }, + { + "name": "Common", + "value": "50-125 mg", + "note": " NOTE: Ketamine is based on weight. These are figures for the average 150 pound male There is no concrete dose for the \"K-Hole\" as each user is different." + }, + { + "name": "Strong", + "value": "125-175 mg", + "note": " NOTE: Ketamine is based on weight. These are figures for the average 150 pound male There is no concrete dose for the \"K-Hole\" as each user is different." + }, + { + "name": "Heavy", + "value": "175-250 mg", + "note": " NOTE: Ketamine is based on weight. These are figures for the average 150 pound male There is no concrete dose for the \"K-Hole\" as each user is different." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "10-20 minutes" + }, + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Peak", + "value": "15-45 minutes" + }, + { + "name": "Offset", + "value": "30-60 minutes" + }, + { + "name": "Afterglow", + "value": "2-12 hours" + }, + { + "name": "Total", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "7.5-20 minutes" + } + ], + "bioavailability": "45%" + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-30 mg" + }, + { + "name": "Common", + "value": "30-75 mg" + }, + { + "name": "Strong", + "value": "75-150 mg" + }, + { + "name": "Heavy", + "value": "150 mg" + }, + { + "name": "Threshold", + "value": "5-10 mg", + "note": " NOTE: Ketamine is based on weight. These are figures for the average 150 pound male There is no concrete dose for the \"K-Hole\" as each user is different." + }, + { + "name": "Light", + "value": "20-50 mg", + "note": " NOTE: Ketamine is based on weight. These are figures for the average 150 pound male There is no concrete dose for the \"K-Hole\" as each user is different." + }, + { + "name": "Common", + "value": "50-125 mg", + "note": " NOTE: Ketamine is based on weight. These are figures for the average 150 pound male There is no concrete dose for the \"K-Hole\" as each user is different." + }, + { + "name": "Strong", + "value": "125-175 mg", + "note": " NOTE: Ketamine is based on weight. These are figures for the average 150 pound male There is no concrete dose for the \"K-Hole\" as each user is different." + }, + { + "name": "Heavy", + "value": "175-250 mg", + "note": " NOTE: Ketamine is based on weight. These are figures for the average 150 pound male There is no concrete dose for the \"K-Hole\" as each user is different." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "10-20 minutes" + }, + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Peak", + "value": "15-45 minutes" + }, + { + "name": "Offset", + "value": "30-60 minutes" + }, + { + "name": "Afterglow", + "value": "2-12 hours" + }, + { + "name": "Total", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "7.5-20 minutes" + } + ], + "bioavailability": "45%" + } + ], + "interactions": [ + { + "status": "Low Risk & Synergy", + "name": "2c-t-x" + }, + { + "status": "Low Risk & Synergy", + "name": "2c-x" + }, + { + "status": "Low Risk & Synergy", + "name": "5-meo-xxt" + }, + { + "status": "Dangerous", + "name": "alcohol", + "note": "Both substances cause ataxia and bring a very high risk of vomiting and unconsciousness. If the user falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position." + }, + { + "status": "Caution", + "name": "amphetamines", + "note": "No unexpected interactions, though likely to increase blood pressure but not an issue with sensible doses. Moving around on high doses of this combination may be ill advised due to risk of physical injury." + }, + { + "status": "Low Risk & Synergy", + "name": "amt" + }, + { + "status": "Caution", + "name": "benzodiazepines", + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position." + }, + { + "status": "Caution", + "name": "benzos", + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position." + }, + { + "status": "Low Risk & No Synergy", + "name": "caffeine", + "note": "No unexpected interactions." + }, + { + "status": "Low Risk & Synergy", + "name": "cannabis" + }, + { + "status": "Caution", + "name": "cocaine", + "note": "No unexpected interactions, though likely to increase blood pressure but not an issue with sensible doses. Moving around on high doses of this combination may be ill advised due to risk of physical injury." + }, + { + "status": "Low Risk & Synergy", + "name": "dmt" + }, + { + "status": "Low Risk & Synergy", + "name": "dox", + "note": "Ketamine and psychedelics tend to potentiate each other - go slowly." + }, + { + "status": "Low Risk & No Synergy", + "name": "dxm" + }, + { + "status": "Dangerous", + "name": "ghb/gbl", + "note": "Both substances cause ataxia and bring a risk of vomiting and unconsciousness. If the user falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position." + }, + { + "status": "Low Risk & Synergy", + "name": "lsd" + }, + { + "status": "Caution", + "name": "maois", + "note": "MAO-B inhibitors appear to increase the potency of Ketamine. MAO-A inhbitors have some negative reports associated with the combination but there isn't much information available" + }, + { + "status": "Low Risk & Synergy", + "name": "mdma", + "note": "No unexpected interactions, though likely to increase blood pressure but not an issue with sensible doses. Moving around on high doses of this combination may be ill advised due to risk of physical injury." + }, + { + "status": "Low Risk & Synergy", + "name": "mescaline" + }, + { + "status": "Low Risk & Synergy", + "name": "mushrooms" + }, + { + "status": "Low Risk & Synergy", + "name": "mxe" + }, + { + "status": "Low Risk & Synergy", + "name": "nbomes" + }, + { + "status": "Low Risk & Synergy", + "name": "nitrous" + }, + { + "status": "Dangerous", + "name": "opioids", + "note": "Both substances bring a risk of vomiting and unconsciousness. If the user falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position." + }, + { + "status": "Low Risk & Synergy", + "name": "pcp" + }, + { + "status": "Low Risk & No Synergy", + "name": "ssris" + }, + { + "status": "Dangerous", + "name": "tramadol" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Ketamine.shtml", + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Kratom", + "name": "Kratom", + "aliases": [], + "aliasesStr": "", + "summary": "A drug made out of the leaves of Mitragyna Speciosa, which is related to coffee. Stimulating at lower doses, with opioid effects at higher doses. Frequent heavy use can cause physical addiction and withdrawals.", + "toxicity": [ + "low toxicity" + ], + "addictionPotential": "produces dependence with chronic use and has a high abuse potential", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "opioids" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 g" + }, + { + "name": "Light", + "value": "2-3 g" + }, + { + "name": "Common", + "value": "3-5 g" + }, + { + "name": "Strong", + "value": "5-8 g" + }, + { + "name": "Heavy", + "value": "8 g" + }, + { + "name": "Light", + "value": "0.5-1.5 g", + "note": " Note: This is for plain leaf only. Some users experience stronger effects from lower doses compared to higher doses. It also is very different person to person, just use this as an outline, as it will change batch to batch and even dose to dose." + }, + { + "name": "Common", + "value": "1.5-3 g", + "note": " Note: This is for plain leaf only. Some users experience stronger effects from lower doses compared to higher doses. It also is very different person to person, just use this as an outline, as it will change batch to batch and even dose to dose." + }, + { + "name": "Strong", + "value": "3-6 g", + "note": " Note: This is for plain leaf only. Some users experience stronger effects from lower doses compared to higher doses. It also is very different person to person, just use this as an outline, as it will change batch to batch and even dose to dose." + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "3-6 hours" + }, + { + "name": "Total", + "value": "2-4 hours" + }, + { + "name": "Onset", + "value": "10-40 minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 g" + }, + { + "name": "Light", + "value": "2-3 g" + }, + { + "name": "Common", + "value": "3-5 g" + }, + { + "name": "Strong", + "value": "5-8 g" + }, + { + "name": "Heavy", + "value": "8 g" + }, + { + "name": "Light", + "value": "0.5-1.5 g", + "note": " Note: This is for plain leaf only. Some users experience stronger effects from lower doses compared to higher doses. It also is very different person to person, just use this as an outline, as it will change batch to batch and even dose to dose." + }, + { + "name": "Common", + "value": "1.5-3 g", + "note": " Note: This is for plain leaf only. Some users experience stronger effects from lower doses compared to higher doses. It also is very different person to person, just use this as an outline, as it will change batch to batch and even dose to dose." + }, + { + "name": "Strong", + "value": "3-6 g", + "note": " Note: This is for plain leaf only. Some users experience stronger effects from lower doses compared to higher doses. It also is very different person to person, just use this as an outline, as it will change batch to batch and even dose to dose." + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "3-6 hours" + }, + { + "name": "Total", + "value": "2-4 hours" + }, + { + "name": "Onset", + "value": "10-40 minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Kratom.shtml", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Stimulant" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/LAE-32", + "name": "LAE-32", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "500-1500 µg" + } + ], + "duration": [ + { + "name": "Total", + "value": "4-10 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Unsafe", + "name": "Tramadol" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/LSA", + "name": "LSA", + "aliases": [ + "hbwr", + "morningglory", + "hbmg", + "Morning", + "ololiuqui", + "morning_glory", + "hbw" + ], + "aliasesStr": "hbwr, morningglory, hbmg, Morning, ololiuqui, morning_glory, hbw", + "summary": "A chemical found in Morning Glory and Hawaiian Baby Woodrose seeds, which are often legally available. Has mental effects similar to LSD, although with almost no visual effects. It is famous for being very nauseating, and for causing excessive time dilation at higher doses.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "non-addictive with a low abuse potential", + "tolerance": { + "full": "almost immediately after ingestion", + "half": null, + "zero": "7 days" + }, + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_LSA.shtml", + "classes": { + "psychoactive": [ + "Psychedelic" + ], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "HBWR", + "dosage": [ + { + "name": "Light", + "value": "1-2 seeds", + "note": "Some users report a hangover, characterized by a feeling of mental sluggishness and dulled emotions." + }, + { + "name": "Common", + "value": "2-6 seeds", + "note": "Some users report a hangover, characterized by a feeling of mental sluggishness and dulled emotions." + }, + { + "name": "Strong", + "value": "6-14 seeds", + "note": "Some users report a hangover, characterized by a feeling of mental sluggishness and dulled emotions." + }, + { + "name": "Heavy", + "value": "14 seeds", + "note": "Some users report a hangover, characterized by a feeling of mental sluggishness and dulled emotions." + } + ] + }, + { + "name": "Morning_Glory", + "dosage": [ + { + "name": "Light", + "value": "50-100 seeds", + "note": "Some users report a hangover, characterized by a feeling of mental sluggishness and dulled emotions." + }, + { + "name": "Common", + "value": "100-250 seeds", + "note": "Some users report a hangover, characterized by a feeling of mental sluggishness and dulled emotions." + }, + { + "name": "Strong", + "value": "250-400 seeds", + "note": "Some users report a hangover, characterized by a feeling of mental sluggishness and dulled emotions." + }, + { + "name": "Heavy", + "value": "400 seeds", + "note": "Some users report a hangover, characterized by a feeling of mental sluggishness and dulled emotions." + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/LSD", + "name": "LSD", + "aliases": [ + "lsd-25", + "acid", + "cid", + "lucy" + ], + "aliasesStr": "lsd-25, acid, cid, lucy", + "summary": "LSD is a popular psychedelic with a relatively long history of use and research, and as such is known to be relatively safe despite its extremely high potency. It is the archetypical psychedelic to which all others are compared, and remains in popular usage.", + "toxicity": [ + "extremely low toxicity relative to dose" + ], + "addictionPotential": "non-addictive with a low abuse potential", + "tolerance": { + "full": "almost immediately after ingestion", + "half": null, + "zero": "5 days" + }, + "crossTolerances": [ + "psychedelics" + ], + "roas": [ + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "15 µg" + }, + { + "name": "Light", + "value": "15-75 µg" + }, + { + "name": "Common", + "value": "75-150 µg" + }, + { + "name": "Strong", + "value": "150-300 µg" + }, + { + "name": "Heavy", + "value": "300 µg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-90 minutes" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "3-5 hours" + }, + { + "name": "Afterglow", + "value": "12-48 hours" + }, + { + "name": "Total", + "value": "8-12 hours" + } + ], + "bioavailability": "71%" + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-100 ug", + "note": " Note: These doses are for pure LSD, note that tabs are often rather a lot weaker than they are advertised." + }, + { + "name": "Common", + "value": "100-150 ug", + "note": " Note: These doses are for pure LSD, note that tabs are often rather a lot weaker than they are advertised." + }, + { + "name": "Strong", + "value": "175-225 ug", + "note": " Note: These doses are for pure LSD, note that tabs are often rather a lot weaker than they are advertised." + }, + { + "name": "Heavy", + "value": "250 ug", + "note": " Note: These doses are for pure LSD, note that tabs are often rather a lot weaker than they are advertised." + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Duration", + "value": "9-14 hours" + }, + { + "name": "After Effects", + "value": "12-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Low Risk & Synergy", + "name": "2c-t-x" + }, + { + "status": "Low Risk & Synergy", + "name": "2c-x" + }, + { + "status": "Low Risk & Synergy", + "name": "5-meo-xxt" + }, + { + "status": "Low Risk & Decrease", + "name": "alcohol" + }, + { + "status": "Caution", + "name": "amphetamines", + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences" + }, + { + "status": "Low Risk & Synergy", + "name": "amt" + }, + { + "status": "Low Risk & Decrease", + "name": "benzodiazepines" + }, + { + "status": "Low Risk & Decrease", + "name": "benzos" + }, + { + "status": "Low Risk & No Synergy", + "name": "caffeine" + }, + { + "status": "Caution", + "name": "cannabis", + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics." + }, + { + "status": "Caution", + "name": "cocaine", + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences" + }, + { + "status": "Low Risk & Synergy", + "name": "dmt" + }, + { + "status": "Low Risk & Synergy", + "name": "dox" + }, + { + "status": "Low Risk & Synergy", + "name": "dxm" + }, + { + "status": "Low Risk & Decrease", + "name": "ghb/gbl" + }, + { + "status": "Low Risk & Synergy", + "name": "ketamine" + }, + { + "status": "Low Risk & Decrease", + "name": "maois" + }, + { + "status": "Low Risk & Synergy", + "name": "mdma" + }, + { + "status": "Low Risk & Synergy", + "name": "mescaline" + }, + { + "status": "Low Risk & Synergy", + "name": "mushrooms" + }, + { + "status": "Low Risk & Synergy", + "name": "mxe" + }, + { + "status": "Low Risk & Synergy", + "name": "nbomes" + }, + { + "status": "Low Risk & Synergy", + "name": "nitrous" + }, + { + "status": "Low Risk & No Synergy", + "name": "opioids" + }, + { + "status": "Low Risk & Synergy", + "name": "pcp" + }, + { + "status": "Low Risk & Decrease", + "name": "ssris" + }, + { + "status": "Unsafe", + "name": "tramadol", + "note": "Tramadol is well known to lower seizure threshold and psychedelics also cause occasional seizures." + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_LSD.shtml", + "classes": { + "psychoactive": [ + "Psychedelic" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/LSM-775", + "name": "LSM-775", + "aliases": [ + "lsm" + ], + "aliasesStr": "lsm", + "summary": "Psychedelic of the lysergamide class, less potent by weight and produces a rather mild, dreamy and even sedating trip compared to its bigger brother LSD.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "5-7 days", + "zero": "14 days" + }, + "crossTolerances": [ + "psychedelics" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "250 µg" + }, + { + "name": "Light", + "value": "500-750 µg" + }, + { + "name": "Common", + "value": "750-1250 µg" + }, + { + "name": "Strong", + "value": "1250-1500 µg" + }, + { + "name": "Heavy", + "value": "1500 µg" + }, + { + "name": "Light", + "value": "0.5-0.75 mg" + }, + { + "name": "Common", + "value": "0.75-1 mg" + }, + { + "name": "Strong", + "value": "1-1.5 mg" + }, + { + "name": "Heavy", + "value": "1.5 " + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "25-45 minutes" + }, + { + "name": "Duration", + "value": "8-13 hours" + }, + { + "name": "After Effects", + "value": "1-16 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "250 µg" + }, + { + "name": "Light", + "value": "500-750 µg" + }, + { + "name": "Common", + "value": "750-1250 µg" + }, + { + "name": "Strong", + "value": "1250-1500 µg" + }, + { + "name": "Heavy", + "value": "1500 µg" + }, + { + "name": "Light", + "value": "0.5-0.75 mg" + }, + { + "name": "Common", + "value": "0.75-1 mg" + }, + { + "name": "Strong", + "value": "1-1.5 mg" + }, + { + "name": "Heavy", + "value": "1.5 " + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "25-45 minutes" + }, + { + "name": "Duration", + "value": "8-13 hours" + }, + { + "name": "After Effects", + "value": "1-16 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/LSZ", + "name": "LSZ", + "aliases": [], + "aliasesStr": "", + "summary": "A lysergamide very similar to LSD usually distinguishable only by its shorter duration, though some subjective reports have noted it may be slightly more introspective and slightly less confusing.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 µg" + }, + { + "name": "Light", + "value": "100-150 µg" + }, + { + "name": "Common", + "value": "150-300 µg" + }, + { + "name": "Strong", + "value": "300-400 µg" + }, + { + "name": "Heavy", + "value": "400 µg" + }, + { + "name": "Threshold", + "value": "80 ug" + }, + { + "name": "Light", + "value": "100-150 ug" + }, + { + "name": "Common", + "value": "150-300 ug" + }, + { + "name": "Heavy", + "value": "300 ug" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "90-120 minutes" + }, + { + "name": "Duration", + "value": "7-10 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 µg" + }, + { + "name": "Light", + "value": "100-150 µg" + }, + { + "name": "Common", + "value": "150-300 µg" + }, + { + "name": "Strong", + "value": "300-400 µg" + }, + { + "name": "Heavy", + "value": "400 µg" + }, + { + "name": "Threshold", + "value": "80 ug" + }, + { + "name": "Light", + "value": "100-150 ug" + }, + { + "name": "Common", + "value": "150-300 ug" + }, + { + "name": "Heavy", + "value": "300 ug" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "90-120 minutes" + }, + { + "name": "Duration", + "value": "7-10 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_LSZ.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Lisdexamfetamine", + "name": "Lisdexamfetamine", + "aliases": [ + "Lisdexamfetamine", + "Vyvanse", + "Elvanse" + ], + "aliasesStr": "Lisdexamfetamine, Vyvanse, Elvanse", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "20-30 mg" + }, + { + "name": "Common", + "value": "30-60 mg" + }, + { + "name": "Strong", + "value": "60-90 mg" + }, + { + "name": "Heavy", + "value": "90 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "60-90 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "4-6 hours" + }, + { + "name": "Afterglow", + "value": "2-6 hours" + }, + { + "name": "Total", + "value": "10-14 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "GHB" + }, + { + "status": "Caution", + "name": "GBL" + }, + { + "status": "Caution", + "name": "Opioids" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Caffeine" + }, + { + "status": "Caution", + "name": "Ketamine" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Psychedelic" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "PCP" + }, + { + "status": "Unsafe", + "name": "25x-NBOMe" + }, + { + "status": "Unsafe", + "name": "2C-T-x" + }, + { + "status": "Unsafe", + "name": "5-MeO-xxT" + }, + { + "status": "Unsafe", + "name": "DOx" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "ΑMT" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/List_of_prodrugs", + "name": "List of prodrugs" + }, + { + "url": "https://psychonautwiki.org/wiki/Lorazepam", + "name": "Lorazepam", + "aliases": [ + "ativan" + ], + "aliasesStr": "ativan", + "summary": "An intermediate acting benzodiazepine commonly known as Ativan, commonly prescribed as an alternative to Xanax. Sedating, hypnotic and anxiolytic. Potential to induce amnesia and lowered inhibitions in overdose. Do not combine with other depressants.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "tolerance": { + "full": "within a couple of days of continuous use", + "half": null, + "zero": "7 - 14 days" + }, + "crossTolerances": [ + "benzodiazepines" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.1 mg" + }, + { + "name": "Light", + "value": "0.25-0.5 mg" + }, + { + "name": "Common", + "value": "0.5-1.5 mg" + }, + { + "name": "Strong", + "value": "1.5-2 mg" + }, + { + "name": "Heavy", + "value": "2 mg" + }, + { + "name": "Light", + "value": "0.5 mg", + "note": " NOTE: Warning - higher doses increase the chances of blacking out. Also 1mg Lorazepam ~= 10mg Diazepam." + }, + { + "name": "Common", + "value": "1-2 mg", + "note": " NOTE: Warning - higher doses increase the chances of blacking out. Also 1mg Lorazepam ~= 10mg Diazepam." + }, + { + "name": "Strong", + "value": "2-4 mg", + "note": " NOTE: Warning - higher doses increase the chances of blacking out. Also 1mg Lorazepam ~= 10mg Diazepam." + } + ], + "duration": [ + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "5-30 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Intramuscular", + "dosage": [ + { + "name": "Light", + "value": "0.25-0.5 mg", + "note": " NOTE: Warning - higher doses increase the chances of blacking out. Also 1mg Lorazepam ~= 10mg Diazepam." + }, + { + "name": "Common", + "value": "0.5-1 mg", + "note": " NOTE: Warning - higher doses increase the chances of blacking out. Also 1mg Lorazepam ~= 10mg Diazepam." + }, + { + "name": "Strong", + "value": "1-2 mg", + "note": " NOTE: Warning - higher doses increase the chances of blacking out. Also 1mg Lorazepam ~= 10mg Diazepam." + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.1 mg" + }, + { + "name": "Light", + "value": "0.25-0.5 mg" + }, + { + "name": "Common", + "value": "0.5-1.5 mg" + }, + { + "name": "Strong", + "value": "1.5-2 mg" + }, + { + "name": "Heavy", + "value": "2 mg" + }, + { + "name": "Light", + "value": "0.5 mg", + "note": " NOTE: Warning - higher doses increase the chances of blacking out. Also 1mg Lorazepam ~= 10mg Diazepam." + }, + { + "name": "Common", + "value": "1-2 mg", + "note": " NOTE: Warning - higher doses increase the chances of blacking out. Also 1mg Lorazepam ~= 10mg Diazepam." + }, + { + "name": "Strong", + "value": "2-4 mg", + "note": " NOTE: Warning - higher doses increase the chances of blacking out. Also 1mg Lorazepam ~= 10mg Diazepam." + } + ], + "duration": [ + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "5-30 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine", + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Lysergamides", + "name": "Lysergamides" + }, + { + "url": "https://psychonautwiki.org/wiki/MAOI", + "name": "MAOI", + "interactions": [ + { + "status": "Caution", + "name": "2C-T-x" + }, + { + "status": "Caution", + "name": "2C-x" + }, + { + "status": "Caution", + "name": "DOx" + }, + { + "status": "Caution", + "name": "Ketamine" + }, + { + "status": "Caution", + "name": "Mescaline" + }, + { + "status": "Caution", + "name": "25x-NBOMe" + }, + { + "status": "Caution", + "name": "Opioids" + }, + { + "status": "Unsafe", + "name": "Alcohol" + }, + { + "status": "Unsafe", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "5-MeO-xxT" + }, + { + "status": "Dangerous", + "name": "Substituted amphetamines" + }, + { + "status": "Dangerous", + "name": "ΑMT" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "MDMA" + }, + { + "status": "Dangerous", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "Tramadol" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/MCPP", + "name": "MCPP", + "aliases": [], + "aliasesStr": "", + "summary": "A phenylpiperazine stimulant first developed in the 1970s before being sold in the RC market, often mislabelled as MDMA. Said to have very unpleasant effects such as anxiogenesis and headaches.", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "15 mg" + }, + { + "name": "Light", + "value": "20-50 mg" + }, + { + "name": "Common", + "value": "50-120 mg" + }, + { + "name": "Strong", + "value": "120-150 mg" + }, + { + "name": "Heavy", + "value": "150 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-60 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "3-8 hours" + }, + { + "name": "Onset", + "value": "60 minutes" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "classes": { + "psychoactive": [ + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/MDA", + "name": "MDA", + "aliases": [], + "aliasesStr": "", + "summary": "A stimulant and empathogen. Similar to MDMA but typically produces more visuals than MDMA. Known to be more neurotoxic than MDMA, and is a minor metabolite of MDMA. Duration and onset similar to MDMA. The common Marquis reagent test cannot differentiate MDA and MDMA.", + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "repeated and heavy usage", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "40-60 mg" + }, + { + "name": "Common", + "value": "60-100 mg" + }, + { + "name": "Strong", + "value": "100-145 mg" + }, + { + "name": "Heavy", + "value": "145 mg" + }, + { + "name": "Light", + "value": "30-40 mg" + }, + { + "name": "Common", + "value": "40-80 mg" + }, + { + "name": "Strong", + "value": "80-120 mg" + }, + { + "name": "Heavy", + "value": "120 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-45 minutes" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Peak", + "value": "2.5-4 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + }, + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "40-60 mg" + }, + { + "name": "Common", + "value": "60-100 mg" + }, + { + "name": "Strong", + "value": "100-145 mg" + }, + { + "name": "Heavy", + "value": "145 mg" + }, + { + "name": "Light", + "value": "30-40 mg" + }, + { + "name": "Common", + "value": "40-80 mg" + }, + { + "name": "Strong", + "value": "80-120 mg" + }, + { + "name": "Heavy", + "value": "120 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-45 minutes" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Peak", + "value": "2.5-4 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + }, + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_MDA.shtml", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Psychedelic", + "Stimulant" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/MDAI", + "name": "MDAI", + "aliases": [], + "aliasesStr": "", + "summary": "A selective serotonin releasing agent which is rarely used without a stimulant to obtain desirable effects. Previously believed not to be neuruotoxic, however MDAI has been implicated in several lethal and non-lethal intoxications, and as such may pose more of a risk to health than previously believed.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "somewhat habit-forming with a low potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "entactogens" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "40 mg" + }, + { + "name": "Light", + "value": "40-100 mg" + }, + { + "name": "Common", + "value": "100-175 mg" + }, + { + "name": "Strong", + "value": "175-300 mg" + }, + { + "name": "Heavy", + "value": "300 mg" + }, + { + "name": "Threshold", + "value": "20-40 mg" + }, + { + "name": "Light", + "value": "40-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Heavy", + "value": "150-300 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "4-6 null" + }, + { + "name": "Peak", + "value": "2-2.5 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "40 mg" + }, + { + "name": "Light", + "value": "40-100 mg" + }, + { + "name": "Common", + "value": "100-175 mg" + }, + { + "name": "Strong", + "value": "175-300 mg" + }, + { + "name": "Heavy", + "value": "300 mg" + }, + { + "name": "Threshold", + "value": "20-40 mg" + }, + { + "name": "Light", + "value": "40-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Heavy", + "value": "150-300 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "4-6 null" + }, + { + "name": "Peak", + "value": "2-2.5 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_MDAI.shtml", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/MDEA", + "name": "MDEA", + "aliases": [ + "mde", + "eve" + ], + "aliasesStr": "mde, eve", + "summary": "A quite rare empathogen closely related to MDMA. Yet is less potent than the prior.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "with prolonged and repeated use", + "half": "1-1.5 months", + "zero": "2-3 months" + }, + "crossTolerances": [ + "dopamine", + "serotonin|serotonergic", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "40 mg" + }, + { + "name": "Light", + "value": "70-120 mg" + }, + { + "name": "Common", + "value": "120-180 mg" + }, + { + "name": "Strong", + "value": "180-225 mg" + }, + { + "name": "Heavy", + "value": "225 mg" + }, + { + "name": "Light", + "value": "80-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "150-200 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-30 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "1.5-2 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "12-48 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-36 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "40 mg" + }, + { + "name": "Light", + "value": "70-120 mg" + }, + { + "name": "Common", + "value": "120-180 mg" + }, + { + "name": "Strong", + "value": "180-225 mg" + }, + { + "name": "Heavy", + "value": "225 mg" + }, + { + "name": "Light", + "value": "80-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "150-200 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-30 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "1.5-2 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "12-48 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-36 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "classes": { + "psychoactive": [ + "Empathogen", + "Stimulant", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/MDMA", + "name": "MDMA", + "aliases": [ + "molly", + "ecstasy", + "adam", + "xtc", + "mandy", + "x", + "md" + ], + "aliasesStr": "molly, ecstasy, adam, xtc, mandy, x, md", + "summary": "The world's most popular empathogen with powerful pro-social effects. Has been strongly linked to cognitive decline in excess. Popular at parties, it is often sold in powder or in pills, and may be adulterated with other similar chemicals.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "with prolonged and repeated use", + "half": "1 month", + "zero": "2.5 months" + }, + "crossTolerances": [ + "dopaminergic", + "serotonergic", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "20-80 mg" + }, + { + "name": "Common", + "value": "80-120 mg" + }, + { + "name": "Strong", + "value": "120-150 mg" + }, + { + "name": "Heavy", + "value": "150 mg" + }, + { + "name": "Light", + "value": "40-75 mg", + "note": " NOTE: Higher doses increase neurotoxic effects" + }, + { + "name": "Common", + "value": "75-125 mg", + "note": " NOTE: Higher doses increase neurotoxic effects" + }, + { + "name": "Strong", + "value": "125-175 mg", + "note": " NOTE: Higher doses increase neurotoxic effects" + }, + { + "name": "Heavy", + "value": "175 mg", + "note": " NOTE: Higher doses increase neurotoxic effects" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-30 minutes" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Peak", + "value": "1.5-2.5 hours" + }, + { + "name": "Offset", + "value": "1-1.5 hours" + }, + { + "name": "Afterglow", + "value": "12-48 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "20-70 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "1-72 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "30-70 mg", + "note": " NOTE: Higher doses increase neurotoxic effects" + }, + { + "name": "Common", + "value": "70-120 mg", + "note": " NOTE: Higher doses increase neurotoxic effects" + }, + { + "name": "Strong", + "value": "120-165 mg", + "note": " NOTE: Higher doses increase neurotoxic effects" + }, + { + "name": "Heavy", + "value": "165 mg", + "note": " NOTE: Higher doses increase neurotoxic effects" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "20-80 mg" + }, + { + "name": "Common", + "value": "80-120 mg" + }, + { + "name": "Strong", + "value": "120-150 mg" + }, + { + "name": "Heavy", + "value": "150 mg" + }, + { + "name": "Light", + "value": "40-75 mg", + "note": " NOTE: Higher doses increase neurotoxic effects" + }, + { + "name": "Common", + "value": "75-125 mg", + "note": " NOTE: Higher doses increase neurotoxic effects" + }, + { + "name": "Strong", + "value": "125-175 mg", + "note": " NOTE: Higher doses increase neurotoxic effects" + }, + { + "name": "Heavy", + "value": "175 mg", + "note": " NOTE: Higher doses increase neurotoxic effects" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-30 minutes" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Peak", + "value": "1.5-2.5 hours" + }, + { + "name": "Offset", + "value": "1-1.5 hours" + }, + { + "name": "Afterglow", + "value": "12-48 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "20-70 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "1-72 hours" + } + ] + }, + { + "name": "Rectal", + "dosage": [ + { + "name": "Light", + "value": "30-70 mg", + "note": " NOTE: Higher doses increase neurotoxic effects" + }, + { + "name": "Common", + "value": "70-120 mg", + "note": " NOTE: Higher doses increase neurotoxic effects" + }, + { + "name": "Strong", + "value": "120-165 mg", + "note": " NOTE: Higher doses increase neurotoxic effects" + }, + { + "name": "Heavy", + "value": "165 mg", + "note": " NOTE: Higher doses increase neurotoxic effects" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "2c-t-x" + }, + { + "status": "Low Risk & Synergy", + "name": "2c-x" + }, + { + "status": "Caution", + "name": "5-meo-xxt", + "note": "Some of the 5-MeO tryptamines are a bit unpredictable and should be mixed with MDMA with care" + }, + { + "status": "Caution", + "name": "alcohol", + "note": "Both MDMA and alcohol cause dehydration. Approach this combination with caution, moderation and sufficient hydration. More than a small amount of alcohol will dull the euphoria of MDMA" + }, + { + "status": "Low Risk & Synergy", + "name": "amphetamines", + "note": "Amphetamines increase the neurotoxic effects of MDMA" + }, + { + "status": "Dangerous", + "name": "amt" + }, + { + "status": "Low Risk & Decrease", + "name": "benzodiazepines" + }, + { + "status": "Low Risk & Decrease", + "name": "benzos" + }, + { + "status": "Caution", + "name": "caffeine", + "note": "Caffiene is not really necessary with MDMA and increases any neurotoxic effects from MDMA" + }, + { + "status": "Low Risk & Synergy", + "name": "cannabis", + "note": "Large amounts of cannabis may cause strong and somewhat unpredictable experiences in combination with MDMA. Cannabis should be saved for towards the end of the experience if possible." + }, + { + "status": "Caution", + "name": "cocaine", + "note": "Cocaine blocks some of the desirable effects of MDMA while increasing the risk of heart attack." + }, + { + "status": "Low Risk & Synergy", + "name": "dmt" + }, + { + "status": "Caution", + "name": "dox", + "note": "The combined stimulating effects of the two can be uncomfortable. Coming down on the MDMA while the DOx is still active can be quite anxiogenic. " + }, + { + "status": "Dangerous", + "name": "dxm" + }, + { + "status": "Caution", + "name": "ghb/gbl", + "note": "Large amounts of GHB/GBL may overwhelm the effects of MDMA on the comedown." + }, + { + "status": "Low Risk & Synergy", + "name": "ketamine", + "note": "No unexpected interactions, though likely to increase blood pressure but not an issue with sensible doses. Moving around on high doses of this combination may be ill advised due to risk of physical injury." + }, + { + "status": "Low Risk & Synergy", + "name": "lsd" + }, + { + "status": "Dangerous", + "name": "maois", + "note": "MAO-B inhibitors can increase the potency and duration of phenethylamines unpredictably. MAO-A inhibitors with MDMA will lead to hypertensive crises." + }, + { + "status": "Low Risk & Synergy", + "name": "mescaline" + }, + { + "status": "Low Risk & Synergy", + "name": "mushrooms" + }, + { + "status": "Caution", + "name": "mxe", + "note": "There have been reports of risky serotonergic interactions when the two are taken at the same time, but MXE taken to the end of an MDMA experience does not appear to cause the same issues." + }, + { + "status": "Caution", + "name": "nbomes" + }, + { + "status": "Low Risk & Synergy", + "name": "nitrous" + }, + { + "status": "Low Risk & No Synergy", + "name": "opioids" + }, + { + "status": "Unsafe", + "name": "pcp", + "note": "This combination can easily lead to hypermanic states" + }, + { + "status": "Low Risk & Decrease", + "name": "ssris" + }, + { + "status": "Dangerous", + "name": "tramadol", + "note": "Tramadol and stimulants both increase the risk of seizures." + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_MDMA.shtml", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Psychedelic", + "Stimulant" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/MDPV", + "name": "MDPV", + "aliases": [ + "bath_salts" + ], + "aliasesStr": "bath_salts", + "summary": "MDPV is a potent, and extremely compulsive synthetic euphoric stimulant, which shares some empathogenic effects with MDMA. Has a reputation for causing psychosis. MDPV has been found in products sold as \"bath salts\", \"plant food/fertilizer\", and in some \"ecstasy.\"", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "4-8 mg" + }, + { + "name": "Common", + "value": "8-14 mg" + }, + { + "name": "Strong", + "value": "14-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + }, + { + "name": "Threshold", + "value": "2-6 mg" + }, + { + "name": "Light", + "value": "4-10 mg" + }, + { + "name": "Common", + "value": "8-15 mg" + }, + { + "name": "Strong", + "value": "12-25 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Peak", + "value": "1-4 hours" + }, + { + "name": "Offset", + "value": "0.5-2 hours" + }, + { + "name": "Afterglow", + "value": "2-48 hours" + }, + { + "name": "Total", + "value": "2-7 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "2-7 hours" + }, + { + "name": "After Effects", + "value": "2-48 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1-3 mg" + }, + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-11 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "4-8 mg" + }, + { + "name": "Common", + "value": "8-14 mg" + }, + { + "name": "Strong", + "value": "14-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + }, + { + "name": "Threshold", + "value": "2-6 mg" + }, + { + "name": "Light", + "value": "4-10 mg" + }, + { + "name": "Common", + "value": "8-15 mg" + }, + { + "name": "Strong", + "value": "12-25 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Peak", + "value": "1-4 hours" + }, + { + "name": "Offset", + "value": "0.5-2 hours" + }, + { + "name": "Afterglow", + "value": "2-48 hours" + }, + { + "name": "Total", + "value": "2-7 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "2-7 hours" + }, + { + "name": "After Effects", + "value": "2-48 hours" + } + ] + }, + { + "name": "Rectal", + "dosage": [ + { + "name": "Threshold", + "value": "1-5 mg" + }, + { + "name": "Light", + "value": "3-8 mg" + }, + { + "name": "Common", + "value": "6-12 mg" + }, + { + "name": "Strong", + "value": "10-25 mg" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_MDPV.shtml", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/MET", + "name": "MET", + "aliases": [ + "methylethyltryptamine" + ], + "aliasesStr": "methylethyltryptamine", + "summary": "A rare psychedelic tryptamine, related to DMT and DET. Little information exists about the effects or pharmacology of this drug.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "40 mg" + }, + { + "name": "Light", + "value": "60-120 mg" + }, + { + "name": "Common", + "value": "120-150 mg" + }, + { + "name": "Strong", + "value": "150-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-25 mg" + }, + { + "name": "Strong", + "value": "25-30 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "1-2 hours" + }, + { + "name": "Peak", + "value": "1.5-2.5 hours" + }, + { + "name": "Offset", + "value": "1-3 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "60-90 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-25 mg" + }, + { + "name": "Strong", + "value": "25-35 mg" + }, + { + "name": "Heavy", + "value": "35 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-40 minutes" + }, + { + "name": "Onset", + "value": "2-5 minutes" + }, + { + "name": "Peak", + "value": "1-1.5 hours" + }, + { + "name": "Offset", + "value": "1-2.5 hours" + }, + { + "name": "Afterglow", + "value": "4-12 hours" + }, + { + "name": "Total", + "value": "2-4 hours" + }, + { + "name": "Onset", + "value": "10-15 minutes" + }, + { + "name": "Duration", + "value": "2-3 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "20-40 mg" + }, + { + "name": "Common", + "value": "40-60 mg" + }, + { + "name": "Strong", + "value": "60-90 mg" + }, + { + "name": "Heavy", + "value": "90 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 seconds" + }, + { + "name": "Peak", + "value": "10-20 minutes" + }, + { + "name": "Offset", + "value": "20-40 minutes" + }, + { + "name": "Afterglow", + "value": "20-60 minutes" + }, + { + "name": "Total", + "value": "30-75 minutes" + }, + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "0.5-1 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "40 mg" + }, + { + "name": "Light", + "value": "60-120 mg" + }, + { + "name": "Common", + "value": "120-150 mg" + }, + { + "name": "Strong", + "value": "150-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-25 mg" + }, + { + "name": "Strong", + "value": "25-30 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "1-2 hours" + }, + { + "name": "Peak", + "value": "1.5-2.5 hours" + }, + { + "name": "Offset", + "value": "1-3 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "60-90 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_MET.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/MPT", + "name": "MPT", + "aliases": [ + "MPT", + "Methylpropyltryptamine" + ], + "aliasesStr": "MPT, Methylpropyltryptamine", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ] + }, + { + "url": "https://psychonautwiki.org/wiki/MXiPr", + "name": "MXiPr", + "aliases": [ + "MXiPR", + "MXiP" + ], + "aliasesStr": "MXiPR, MXiP", + "toxicity": [ + "toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dissociative" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "2-5 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "2-5 minutes" + }, + { + "name": "Afterglow", + "value": "2-12 hours" + }, + { + "name": "Total", + "value": "1.5-4 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Mandragora", + "name": "Mandragora", + "aliases": [ + "Mandrake" + ], + "aliasesStr": "Mandrake" + }, + { + "url": "https://psychonautwiki.org/wiki/Mandragora_officinarum_(botany)", + "name": "Mandragora officinarum (botany)" + }, + { + "url": "https://psychonautwiki.org/wiki/Mebroqualone", + "name": "Mebroqualone", + "aliases": [ + "mbq" + ], + "aliasesStr": "mbq", + "summary": "A short acting analogue of Methaqualone, that is much more potent.", + "toxicity": [ + "safe at appropriate dosages" + ], + "addictionPotential": "extremely addictive", + "tolerance": { + "full": "within a couple of days of repeated administration", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "GABA|gabaergic", + "depressants" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-15 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "10-20 minutes" + }, + { + "name": "Duration", + "value": "60-120 minutes" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-8 mg" + }, + { + "name": "Strong", + "value": "8-12 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "1-2 hours" + } + ] + }, + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "3-5 mg" + }, + { + "name": "Light", + "value": "5-8 mg" + }, + { + "name": "Common", + "value": "8-15 mg" + }, + { + "name": "Strong", + "value": "15-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Duration", + "value": "45-90 minutes" + } + ] + }, + { + "name": "Vapourized", + "dosage": [ + { + "name": "Threshold", + "value": "2-3 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-2 minutes" + }, + { + "name": "Duration", + "value": "20-40 minutes" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + }, + { + "status": "Dangerous", + "name": "Dissociatives" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Melatonin", + "name": "Melatonin", + "aliases": [], + "aliasesStr": "", + "summary": "A naturally occurring hormone produced in the body, which promotes sleep at certain times in the day based on the circadian rhythm. It is also commonly available as a drug to treat insomnia and promote a proper sleep cycle. It can be used to promote sleepfulness at the tail-end of drug experiences, though it is not particularly hypnotic.", + "toxicity": [ + "extremely low toxicity" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "after prolonged and repeated usage", + "half": "7 days", + "zero": "14 days" + }, + "crossTolerances": [], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.25 mg" + }, + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-3 mg" + }, + { + "name": "Strong", + "value": "3-6 mg" + }, + { + "name": "Heavy", + "value": "6 mg" + }, + { + "name": "Common", + "value": "3-1 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "1 hours" + }, + { + "name": "Duration", + "value": "6-8 hours" + } + ], + "bioavailability": "15%" + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.25 mg" + }, + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-3 mg" + }, + { + "name": "Strong", + "value": "3-6 mg" + }, + { + "name": "Heavy", + "value": "6 mg" + }, + { + "name": "Common", + "value": "3-1 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "1 hours" + }, + { + "name": "Duration", + "value": "6-8 hours" + } + ], + "bioavailability": "15%" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Melatonin.shtml", + "classes": { + "psychoactive": [ + "Nootropic", + "Supplement" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Memantine", + "name": "Memantine", + "aliases": [], + "aliasesStr": "", + "summary": "An NMDA-antagonist that if used recreationally can cause to a very prolonged \"hole\" lasting up to 16+ hours.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "unknown", + "crossTolerances": [ + "dissociatives" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "30-70 mg" + }, + { + "name": "Common", + "value": "70-110 mg" + }, + { + "name": "Strong", + "value": "110-170 mg" + }, + { + "name": "Heavy", + "value": "170 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Heavy", + "value": "40-80 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "2-3 hours" + }, + { + "name": "Onset", + "value": "2-3 hours" + }, + { + "name": "Peak", + "value": "3-12 hours" + }, + { + "name": "Offset", + "value": "5-24 hours" + }, + { + "name": "Afterglow", + "value": "8-24 hours" + }, + { + "name": "Total", + "value": "18-36 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "12-72 hours" + }, + { + "name": "After Effects", + "value": "1-72 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "30-70 mg" + }, + { + "name": "Common", + "value": "70-110 mg" + }, + { + "name": "Strong", + "value": "110-170 mg" + }, + { + "name": "Heavy", + "value": "170 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Heavy", + "value": "40-80 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "2-3 hours" + }, + { + "name": "Onset", + "value": "2-3 hours" + }, + { + "name": "Peak", + "value": "3-12 hours" + }, + { + "name": "Offset", + "value": "5-24 hours" + }, + { + "name": "Afterglow", + "value": "8-24 hours" + }, + { + "name": "Total", + "value": "18-36 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "12-72 hours" + }, + { + "name": "After Effects", + "value": "1-72 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + } + ], + "classes": { + "psychoactive": [ + "Dissociative", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Mephedrone", + "name": "Mephedrone", + "aliases": [ + "4-mmc", + "meow", + "m-cat", + "4-methylmethcathinone", + "4mmc" + ], + "aliasesStr": "4-mmc, meow, m-cat, 4-methylmethcathinone, 4mmc", + "summary": "A shortlived euphoric stimulant, developed as an analogue of MDMA, which was extremely popular in the research chemical scene before being banned. Commonly seen on street markets but rarer online. Very strong urge to redose compulsively.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "15 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-200 mg" + }, + { + "name": "Strong", + "value": "200-300 mg" + }, + { + "name": "Heavy", + "value": "300 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-200 mg" + }, + { + "name": "Strong", + "value": "150-300 mg" + }, + { + "name": "Heavy", + "value": "300 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-30 minutes" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "30-90 minutes" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "2-3 hours" + }, + { + "name": "After Effects", + "value": "6-24 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "15-45 mg" + }, + { + "name": "Common", + "value": "45-80 mg" + }, + { + "name": "Strong", + "value": "80-125 mg" + }, + { + "name": "Heavy", + "value": "125 mg" + }, + { + "name": "Light", + "value": "15-25 mg" + }, + { + "name": "Common", + "value": "20-80 mg" + }, + { + "name": "Strong", + "value": "75-125 mg" + }, + { + "name": "Heavy", + "value": "125 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-30 minutes" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "30-60 minutes" + }, + { + "name": "Offset", + "value": "30-90 minutes" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "15-45 mg" + }, + { + "name": "Common", + "value": "45-80 mg" + }, + { + "name": "Strong", + "value": "80-125 mg" + }, + { + "name": "Heavy", + "value": "125 mg" + }, + { + "name": "Light", + "value": "15-25 mg" + }, + { + "name": "Common", + "value": "20-80 mg" + }, + { + "name": "Strong", + "value": "75-125 mg" + }, + { + "name": "Heavy", + "value": "125 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-30 minutes" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "30-60 minutes" + }, + { + "name": "Offset", + "value": "30-90 minutes" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "15 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-200 mg" + }, + { + "name": "Strong", + "value": "200-300 mg" + }, + { + "name": "Heavy", + "value": "300 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-200 mg" + }, + { + "name": "Strong", + "value": "150-300 mg" + }, + { + "name": "Heavy", + "value": "300 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-30 minutes" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "30-90 minutes" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "2-3 hours" + }, + { + "name": "After Effects", + "value": "6-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4Methylmethcathinone.shtml", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Mescaline", + "name": "Mescaline", + "aliases": [ + "buttons", + "mesc", + "san", + "san-pedro" + ], + "aliasesStr": "buttons, mesc, san, san-pedro", + "summary": "A psychedelic of the phenethylamine family. Found in psychedelic cacti that have long been used by peoples native to the Southwestern US and Mexico, including Peyote and San Pedro cacti, among others. Can be found as cactus pulp, as an extract from cacti, or as a synthetic substance created in a lab.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 mg" + }, + { + "name": "Light", + "value": "50-200 mg" + }, + { + "name": "Common", + "value": "200-400 mg" + }, + { + "name": "Strong", + "value": "400-800 mg" + }, + { + "name": "Heavy", + "value": "800 mg" + }, + { + "name": "Threshold", + "value": "100 mg", + "note": " NOTE: Doses are for Mescaline HCl" + }, + { + "name": "Light", + "value": "100-200 mg", + "note": " NOTE: Doses are for Mescaline HCl" + }, + { + "name": "Common", + "value": "200-300 mg", + "note": " NOTE: Doses are for Mescaline HCl" + }, + { + "name": "Strong", + "value": "300-500 mg", + "note": " NOTE: Doses are for Mescaline HCl" + }, + { + "name": "Heavy", + "value": "500-700 mg", + "note": " NOTE: Doses are for Mescaline HCl" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "60-120 minutes" + }, + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Peak", + "value": "4-6 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "6-36 hours" + }, + { + "name": "Total", + "value": "8-14 hours" + }, + { + "name": "Onset", + "value": "60-180 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "3-5 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 mg" + }, + { + "name": "Light", + "value": "50-200 mg" + }, + { + "name": "Common", + "value": "200-400 mg" + }, + { + "name": "Strong", + "value": "400-800 mg" + }, + { + "name": "Heavy", + "value": "800 mg" + }, + { + "name": "Threshold", + "value": "100 mg", + "note": " NOTE: Doses are for Mescaline HCl" + }, + { + "name": "Light", + "value": "100-200 mg", + "note": " NOTE: Doses are for Mescaline HCl" + }, + { + "name": "Common", + "value": "200-300 mg", + "note": " NOTE: Doses are for Mescaline HCl" + }, + { + "name": "Strong", + "value": "300-500 mg", + "note": " NOTE: Doses are for Mescaline HCl" + }, + { + "name": "Heavy", + "value": "500-700 mg", + "note": " NOTE: Doses are for Mescaline HCl" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "60-120 minutes" + }, + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Peak", + "value": "4-6 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "6-36 hours" + }, + { + "name": "Total", + "value": "8-14 hours" + }, + { + "name": "Onset", + "value": "60-180 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "3-5 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "2c-t-x" + }, + { + "status": "Caution", + "name": "2c-x" + }, + { + "status": "Caution", + "name": "5-meo-xxt", + "note": "The 5-MeO class of tryptamines can be unpredictable in their interactions" + }, + { + "status": "Low Risk & Decrease", + "name": "alcohol" + }, + { + "status": "Caution", + "name": "amphetamines", + "note": "The focus and anxiety caused by stimulants is magnified by psychedelics and results in an increased risk of thought loops" + }, + { + "status": "Dangerous", + "name": "amt" + }, + { + "status": "Low Risk & Decrease", + "name": "benzodiazepines" + }, + { + "status": "Low Risk & Decrease", + "name": "benzos" + }, + { + "status": "Low Risk & No Synergy", + "name": "caffeine", + "note": "High doses of caffeine are uncomfortable and this will be magnified by psychedelics" + }, + { + "status": "Caution", + "name": "cannabis", + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics." + }, + { + "status": "Caution", + "name": "cocaine", + "note": "The focus and anxiety caused by stimulants is magnified by psychedelics and results in an increased risk of thought loops" + }, + { + "status": "Low Risk & Synergy", + "name": "dmt" + }, + { + "status": "Caution", + "name": "dox" + }, + { + "status": "Low Risk & Synergy", + "name": "dxm" + }, + { + "status": "Low Risk & Decrease", + "name": "ghb/gbl" + }, + { + "status": "Low Risk & Synergy", + "name": "ketamine" + }, + { + "status": "Low Risk & Synergy", + "name": "lsd" + }, + { + "status": "Caution", + "name": "maois" + }, + { + "status": "Low Risk & Synergy", + "name": "mdma" + }, + { + "status": "Low Risk & Synergy", + "name": "mushrooms" + }, + { + "status": "Low Risk & Synergy", + "name": "mxe" + }, + { + "status": "Caution", + "name": "nbomes" + }, + { + "status": "Low Risk & Synergy", + "name": "nitrous" + }, + { + "status": "Low Risk & No Synergy", + "name": "opioids" + }, + { + "status": "Low Risk & Synergy", + "name": "pcp" + }, + { + "status": "Low Risk & Decrease", + "name": "ssris" + }, + { + "status": "Unsafe", + "name": "tramadol", + "note": "This combination can cause seizures due to the lowering of the threshold by tramadol and the potential of mescaline to cause seziures." + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Mescaline.shtml", + "classes": { + "psychoactive": [ + "Psychedelic" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Methadone", + "name": "Methadone", + "aliases": [], + "aliasesStr": "", + "summary": "A synthetic opioid drug used as an analgesic and is often used in detoxification off of other opioids. As it has a much longer half-life.", + "toxicity": [ + "moderate toxicity", + "potentially lethal when mixed with depressants like alcohol or benzodiazepines" + ], + "addictionPotential": "extremely addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "opioids" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-15 mg" + }, + { + "name": "Strong", + "value": "15-30 mg" + }, + { + "name": "Heavy", + "value": "30 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-35 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Peak", + "value": "6-8 hours" + }, + { + "name": "Afterglow", + "value": "1-24 hours" + }, + { + "name": "Onset", + "value": "45-120 minutes" + }, + { + "name": "After Effects", + "value": "1-48 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-15 mg" + }, + { + "name": "Strong", + "value": "15-30 mg" + }, + { + "name": "Heavy", + "value": "30 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-35 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Peak", + "value": "6-8 hours" + }, + { + "name": "Afterglow", + "value": "1-24 hours" + }, + { + "name": "Onset", + "value": "45-120 minutes" + }, + { + "name": "After Effects", + "value": "1-48 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Methadone.shtml", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Methallylescaline", + "name": "Methallylescaline", + "aliases": [ + "mal" + ], + "aliasesStr": "mal", + "summary": "Mescaline analogue first synthesised by Alexander Shulgin, derived from and less potent than allylescaline. A psychedelic phenethylamine which causes stimulation, euphoria and hallucinatory experiences.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "15-25 mg" + }, + { + "name": "Common", + "value": "25-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + }, + { + "name": "Threshold", + "value": "10-15 mg" + }, + { + "name": "Light", + "value": "15-25 mg" + }, + { + "name": "Common", + "value": "25-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-90 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "4-8 hours" + }, + { + "name": "Total", + "value": "6-12 hours" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "3-5 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "15-25 mg" + }, + { + "name": "Common", + "value": "25-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + }, + { + "name": "Threshold", + "value": "10-15 mg" + }, + { + "name": "Light", + "value": "15-25 mg" + }, + { + "name": "Common", + "value": "25-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-90 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "4-8 hours" + }, + { + "name": "Total", + "value": "6-12 hours" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "3-5 hours" + } + ] + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Methallylescaline.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Methamphetamine", + "name": "Methamphetamine", + "aliases": [ + "meth", + "desoxyn", + "tik" + ], + "aliasesStr": "meth, desoxyn, tik", + "summary": "A fairly common and very strong CNS stimulant. It is sometimes prescribed in the form of desoxyn for ADHD and severe obesity. In low doses, methamphetamine can elevate mood, increase alertness, concentration, energy and reduces appetite. At higher doses, it can induce mania, psychosis and muscle degeneration among other issues. Tolerant users may report much higher doses than new users.", + "addictionPotential": "extremely addictive with a high potential for abuse", + "tolerance": { + "full": "rapidly develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulants" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "25-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-30 mg" + }, + { + "name": "Strong", + "value": "20-40 mg" + }, + { + "name": "Heavy", + "value": "40-100 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-3 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "3-4 hours" + }, + { + "name": "Afterglow", + "value": "12-24 hours" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "20-70 minutes" + }, + { + "name": "Duration", + "value": "10-12 hours" + }, + { + "name": "After Effects", + "value": "24 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-30 mg" + }, + { + "name": "Strong", + "value": "30-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "3-5 minutes" + }, + { + "name": "Onset", + "value": "3-5 minutes" + }, + { + "name": "Peak", + "value": "1.5-3 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "4-7 hours" + }, + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "8-10 hours" + } + ] + }, + { + "name": "Rectal", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-30 mg" + }, + { + "name": "Strong", + "value": "30-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "3-5 minutes" + }, + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "3-5 hours" + }, + { + "name": "Afterglow", + "value": "12-24 hours" + }, + { + "name": "Total", + "value": "6-10 hours" + } + ] + }, + { + "name": "Intravenous", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-30 mg" + }, + { + "name": "Strong", + "value": "30-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-2 minutes" + }, + { + "name": "Onset", + "value": "15-30 seconds" + }, + { + "name": "Peak", + "value": "1-3 hours" + }, + { + "name": "Offset", + "value": "3-4 hours" + }, + { + "name": "Afterglow", + "value": "12-24 Hours#" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "0-2 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "30-60 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "5-10 seconds" + }, + { + "name": "Onset", + "value": "7-10 seconds" + }, + { + "name": "Peak", + "value": "1-3 hours" + }, + { + "name": "Offset", + "value": "1-3 hours" + }, + { + "name": "Afterglow", + "value": "2-24 hours" + }, + { + "name": "Total", + "value": "2-6 hours" + }, + { + "name": "Onset", + "value": "0-2 minutes" + }, + { + "name": "Duration", + "value": "3-8 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-30 mg" + }, + { + "name": "Strong", + "value": "30-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "3-5 minutes" + }, + { + "name": "Onset", + "value": "3-5 minutes" + }, + { + "name": "Peak", + "value": "1.5-3 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "4-7 hours" + }, + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "8-10 hours" + } + ] + }, + { + "name": "Intravenous", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-30 mg" + }, + { + "name": "Strong", + "value": "30-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-2 minutes" + }, + { + "name": "Onset", + "value": "15-30 seconds" + }, + { + "name": "Peak", + "value": "1-3 hours" + }, + { + "name": "Offset", + "value": "3-4 hours" + }, + { + "name": "Afterglow", + "value": "12-24 Hours#" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "0-2 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "25-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-30 mg" + }, + { + "name": "Strong", + "value": "20-40 mg" + }, + { + "name": "Heavy", + "value": "40-100 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-3 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "3-5 hours" + }, + { + "name": "Offset", + "value": "3-4 hours" + }, + { + "name": "Afterglow", + "value": "12-24 hours" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "20-70 minutes" + }, + { + "name": "Duration", + "value": "10-12 hours" + }, + { + "name": "After Effects", + "value": "24 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "30-60 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "5-10 seconds" + }, + { + "name": "Onset", + "value": "7-10 seconds" + }, + { + "name": "Peak", + "value": "1-3 hours" + }, + { + "name": "Offset", + "value": "1-3 hours" + }, + { + "name": "Afterglow", + "value": "2-24 hours" + }, + { + "name": "Total", + "value": "2-6 hours" + }, + { + "name": "Onset", + "value": "0-2 minutes" + }, + { + "name": "Duration", + "value": "3-8 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "GHB" + }, + { + "status": "Caution", + "name": "GBL" + }, + { + "status": "Caution", + "name": "Opioids" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Caffeine" + }, + { + "status": "Caution", + "name": "Ketamine" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Psychedelic" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "PCP" + }, + { + "status": "Unsafe", + "name": "25x-NBOMe" + }, + { + "status": "Unsafe", + "name": "2C-T-x" + }, + { + "status": "Unsafe", + "name": "5-MeO-xxT" + }, + { + "status": "Unsafe", + "name": "DOx" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "ΑMT" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Methamphetamine.shtml", + "classes": { + "psychoactive": [ + "Habit Forming", + "Stimulant" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Methaqualone", + "name": "Methaqualone", + "aliases": [ + "ludes", + "quaaludes", + "qualudes", + "mandrax" + ], + "aliasesStr": "ludes, quaaludes, qualudes, mandrax", + "summary": "A pharmaceutical depressant and sedative phased out due to the better safety profile of benzodiazepines, part of the Qualone group of substances. Now very rare, except in South Africa.", + "toxicity": [ + "doses of over 300mg can be dangerous for first time users", + "safe at appropriate dosages" + ], + "addictionPotential": "extremely addictive", + "tolerance": { + "full": "within a couple of days of repeated administration", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "GABA|gabaergic", + "depressants" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "75 mg" + }, + { + "name": "Light", + "value": "150-300 mg" + }, + { + "name": "Common", + "value": "300-500 mg" + }, + { + "name": "Strong", + "value": "500-600 mg" + }, + { + "name": "Light", + "value": "75-150 mg", + "note": " NOTE: Do not take more than 300mg without a tolerance." + }, + { + "name": "Common", + "value": "150-300 mg", + "note": " NOTE: Do not take more than 300mg without a tolerance." + }, + { + "name": "Strong", + "value": "300 mg", + "note": " NOTE: Do not take more than 300mg without a tolerance." + } + ], + "duration": [ + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "6-8 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "4-6 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "50 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-200 mg" + }, + { + "name": "Strong", + "value": "200-300 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "1-2 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "75 mg" + }, + { + "name": "Light", + "value": "150-300 mg" + }, + { + "name": "Common", + "value": "300-500 mg" + }, + { + "name": "Strong", + "value": "500-600 mg" + }, + { + "name": "Light", + "value": "75-150 mg", + "note": " NOTE: Do not take more than 300mg without a tolerance." + }, + { + "name": "Common", + "value": "150-300 mg", + "note": " NOTE: Do not take more than 300mg without a tolerance." + }, + { + "name": "Strong", + "value": "300 mg", + "note": " NOTE: Do not take more than 300mg without a tolerance." + } + ], + "duration": [ + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "6-8 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "4-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + }, + { + "status": "Dangerous", + "name": "Dissociatives" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Methaqualone.shtml", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Methiopropamine", + "name": "Methiopropamine", + "aliases": [ + "MPA" + ], + "aliasesStr": "MPA", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "20-30 mg" + }, + { + "name": "Common", + "value": "30-50 mg" + }, + { + "name": "Strong", + "value": "50-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "2-4 hours" + }, + { + "name": "Offset", + "value": "2-3 hours" + }, + { + "name": "Afterglow", + "value": "1-2 hours" + }, + { + "name": "Total", + "value": "6-10 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Methoxetamine", + "name": "Methoxetamine", + "aliases": [ + "Methoxetamine", + "MXE", + "Mexxy" + ], + "aliasesStr": "Methoxetamine, MXE, Mexxy", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dissociative" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-25 mg" + }, + { + "name": "Common", + "value": "25-45 mg" + }, + { + "name": "Strong", + "value": "45-70 mg" + }, + { + "name": "Heavy", + "value": "70 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-90 minutes" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Peak", + "value": "1.5-2.5 hours" + }, + { + "name": "Offset", + "value": "1-1.5 hours" + }, + { + "name": "Afterglow", + "value": "6-48 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-35 mg" + }, + { + "name": "Strong", + "value": "35-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-75 minutes" + }, + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "1-1.5 hours" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "3-5 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "DOx" + }, + { + "status": "Caution", + "name": "25x-NBOMe" + }, + { + "status": "Caution", + "name": "2C-T-x" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MDMA" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Caution", + "name": "Benzodiazepines" + }, + { + "status": "Caution", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Unsafe", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "ΑMT" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Opioids" + }, + { + "status": "Dangerous", + "name": "Tramadol" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Methoxphenidine", + "name": "Methoxphenidine", + "aliases": [ + "2-meo-diphenidine", + "methoxyphenidine", + "2-mxp", + "mxp" + ], + "aliasesStr": "2-meo-diphenidine, methoxyphenidine, 2-mxp, mxp", + "summary": "A dissociative from the diarylethylamine class, a more potent analogue of diphenidine. Known to be unpredictable, and can cause blackouts.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dissociative" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "30 mg" + }, + { + "name": "Light", + "value": "50-75 mg" + }, + { + "name": "Common", + "value": "75-120 mg" + }, + { + "name": "Strong", + "value": "120-150 mg" + }, + { + "name": "Threshold", + "value": "30-50 mg" + }, + { + "name": "Light", + "value": "50-75 mg" + }, + { + "name": "Common", + "value": "75-120 mg" + }, + { + "name": "Strong", + "value": "120-150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Afterglow", + "value": "1-3 hours" + }, + { + "name": "Total", + "value": "6-8 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "6-8 hours" + }, + { + "name": "After Effects", + "value": "1-3 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "30 mg" + }, + { + "name": "Light", + "value": "50-75 mg" + }, + { + "name": "Common", + "value": "75-120 mg" + }, + { + "name": "Strong", + "value": "120-150 mg" + }, + { + "name": "Threshold", + "value": "30-50 mg" + }, + { + "name": "Light", + "value": "50-75 mg" + }, + { + "name": "Common", + "value": "75-120 mg" + }, + { + "name": "Strong", + "value": "120-150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Afterglow", + "value": "1-3 hours" + }, + { + "name": "Total", + "value": "6-8 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "6-8 hours" + }, + { + "name": "After Effects", + "value": "1-3 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "Depressant" + }, + { + "status": "Dangerous", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Dissociatives" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Methoxphenidine.shtml", + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Methylnaphthidate", + "name": "Methylnaphthidate", + "aliases": [ + "Methylnaphthidate", + "HDMP-28" + ], + "aliasesStr": "Methylnaphthidate, HDMP-28", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "4 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-10 minutes" + }, + { + "name": "Peak", + "value": "1.5-2 hours" + }, + { + "name": "Offset", + "value": "1.5-2 hours" + }, + { + "name": "Afterglow", + "value": "1-8 hours" + }, + { + "name": "Total", + "value": "2-5 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "4-8 mg" + }, + { + "name": "Common", + "value": "8-14 mg" + }, + { + "name": "Strong", + "value": "14-28 mg" + }, + { + "name": "Heavy", + "value": "28 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "3-6 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "1-2 hours" + }, + { + "name": "Total", + "value": "90-180 minutes" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "MDMA" + }, + { + "status": "Dangerous", + "name": "Cocaine" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Methylone", + "name": "Methylone", + "aliases": [ + "bk-mdma", + "m1", + "mdmc" + ], + "aliasesStr": "bk-mdma, m1, mdmc", + "summary": "βk-MDMA is a cathinone stimulant and empathogen, similar in structure to MDMA, though more stimulating and less empathogenic in comparison. Was very commonly mis-sold as MDMA on the street until it was banned in 2013. The Marquis reagent can differentiate βk-MDMA from MDMA. Less potent than MDMA with a slightly shorter duration.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "1 - 3 weeks", + "zero": "3 - 6 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "75 mg" + }, + { + "name": "Light", + "value": "75-150 mg" + }, + { + "name": "Common", + "value": "150-225 mg" + }, + { + "name": "Strong", + "value": "225-325 mg" + }, + { + "name": "Heavy", + "value": "325 mg" + }, + { + "name": "Light", + "value": "100-150 mg" + }, + { + "name": "Common", + "value": "150-250 mg" + }, + { + "name": "Strong", + "value": "200-300 mg" + }, + { + "name": "Heavy", + "value": "300 " + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-45 minutes" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "60-90 minutes" + }, + { + "name": "Offset", + "value": "60-90 minutes" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "2.5-4 hours" + }, + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "6-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "75 mg" + }, + { + "name": "Light", + "value": "75-150 mg" + }, + { + "name": "Common", + "value": "150-225 mg" + }, + { + "name": "Strong", + "value": "225-325 mg" + }, + { + "name": "Heavy", + "value": "325 mg" + }, + { + "name": "Light", + "value": "100-150 mg" + }, + { + "name": "Common", + "value": "150-250 mg" + }, + { + "name": "Strong", + "value": "200-300 mg" + }, + { + "name": "Heavy", + "value": "300 " + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-45 minutes" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "60-90 minutes" + }, + { + "name": "Offset", + "value": "60-90 minutes" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "2.5-4 hours" + }, + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "6-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Methylone.shtml", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Methylphenidate", + "name": "Methylphenidate", + "aliases": [ + "mph", + "ritalin", + "concerta", + "biphentin" + ], + "aliasesStr": "mph, ritalin, concerta, biphentin", + "summary": "A psychostimulant commonly used in the treatment of ADHD, narcolepsy and obesity, particularly in the EU instead of Adderall. Methylphenidate is also a 5HT1A receptor agonist. Sometimes prescribed off-label to help the withdrawals from cocaine and other stimulants.", + "addictionPotential": "moderately addictive with a high potential for abuse", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + }, + { + "name": "Light", + "value": "20-40 mg" + }, + { + "name": "Common", + "value": "40-60 mg" + }, + { + "name": "Strong", + "value": "60-80 mg" + }, + { + "name": "Heavy", + "value": "80-100 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-60 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "1.5-2.5 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "2-6 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Heavy", + "value": "60-75 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-40 minutes" + }, + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Peak", + "value": "30-45 minutes" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "1-4 hours" + }, + { + "name": "Total", + "value": "2-4 hours" + }, + { + "name": "Duration", + "value": "2-4 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Heavy", + "value": "60-75 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-40 minutes" + }, + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Peak", + "value": "30-45 minutes" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "1-4 hours" + }, + { + "name": "Total", + "value": "2-4 hours" + }, + { + "name": "Duration", + "value": "2-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + }, + { + "name": "Light", + "value": "20-40 mg" + }, + { + "name": "Common", + "value": "40-60 mg" + }, + { + "name": "Strong", + "value": "60-80 mg" + }, + { + "name": "Heavy", + "value": "80-100 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-60 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "1.5-2.5 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "2-6 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ], + "classes": { + "psychoactive": [ + "Habit Forming", + "Stimulant" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Metizolam", + "name": "Metizolam", + "aliases": [ + "metiz", + "desmethyletizolam" + ], + "aliasesStr": "metiz, desmethyletizolam", + "summary": "Also known as desmethyletizolam, a thienodiazepine similar in effects and structure to etizolam, but around half as potent and with around a 60% longer half-life. A sedative, and hypnotic, it may cause amnesia and lowered inhibitions in excess.", + "toxicity": [ + "large therapeutic index and margin of safety" + ], + "addictionPotential": "extremely addictive", + "tolerance": { + "full": "within a couple of days of repeated administration", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "thienzodiazepines", + "benzodiazepines" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-4 mg" + }, + { + "name": "Strong", + "value": "4-6 mg" + }, + { + "name": "Heavy", + "value": "6 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-4 mg" + }, + { + "name": "Strong", + "value": "4-6 mg" + }, + { + "name": "Heavy", + "value": "6 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Afterglow", + "value": "10-30 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "10-30 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-4 mg" + }, + { + "name": "Strong", + "value": "4-6 mg" + }, + { + "name": "Heavy", + "value": "6 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-4 mg" + }, + { + "name": "Strong", + "value": "4-6 mg" + }, + { + "name": "Heavy", + "value": "6 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Afterglow", + "value": "10-30 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "10-30 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [ + "Benzodiazepine" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Mexedrone", + "name": "Mexedrone", + "aliases": [ + "4-mmeoc" + ], + "aliasesStr": "4-mmeoc", + "summary": "Mexedrone is a stimulant drug of the cathinone class. It alters the reuptake of serotonin, dopamine, and norepinephrine to cause euphoria, and is similar in effects to mephedrone. It is considered a designer drug and is in a legally grey area globally.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 mg" + }, + { + "name": "Light", + "value": "100-150 mg" + }, + { + "name": "Common", + "value": "150-250 mg" + }, + { + "name": "Strong", + "value": "250-350 mg" + }, + { + "name": "Light", + "value": "75-150 mg" + }, + { + "name": "Common", + "value": "150-200 " + }, + { + "name": "Strong", + "value": "200-300 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "1-3 hours" + }, + { + "name": "After Effects", + "value": "2-6 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "50-80 mg" + }, + { + "name": "Common", + "value": "80-120 mg" + }, + { + "name": "Strong", + "value": "120-200 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "3-10 minutes" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 mg" + }, + { + "name": "Light", + "value": "100-150 mg" + }, + { + "name": "Common", + "value": "150-250 mg" + }, + { + "name": "Strong", + "value": "250-350 mg" + }, + { + "name": "Light", + "value": "75-150 mg" + }, + { + "name": "Common", + "value": "150-200 " + }, + { + "name": "Strong", + "value": "200-300 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "1-3 hours" + }, + { + "name": "After Effects", + "value": "2-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/MiPLA", + "name": "MiPLA", + "aliases": [ + "MiPLA", + "Lamide" + ], + "aliasesStr": "MiPLA, Lamide", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "low potential for abuse and dependence", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "5-7 days", + "zero": "14 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 µg" + }, + { + "name": "Light", + "value": "100-150 µg" + }, + { + "name": "Common", + "value": "150-200 µg" + }, + { + "name": "Strong", + "value": "200-250 µg" + }, + { + "name": "Heavy", + "value": "300 µg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "45-90 minutes" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/MiPT", + "name": "MiPT", + "aliases": [ + "n-methyl-n-isopropyltryptamine" + ], + "aliasesStr": "n-methyl-n-isopropyltryptamine", + "summary": "N-Methyl-N-isopropyltryptamine, a tryptamine analogue of DMT, a very uncommon drug with very few reports of human use. Described as 'more psychedelic than hallucinogenic' users report only mild visuals with some stimulation and cognitive effects. One of the more stable tryptamines.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "25-75 mg" + }, + { + "name": "Heavy", + "value": "75 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "3-8 hours" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "0-2 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "25-75 mg" + }, + { + "name": "Heavy", + "value": "75 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "3-8 hours" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + }, + { + "name": "Vapourized", + "dosage": [ + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-15 mg" + }, + { + "name": "Strong", + "value": "15-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "0-1 minutes" + }, + { + "name": "Duration", + "value": "2-3 hours" + } + ] + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_MIPT.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Midazolam", + "name": "Midazolam", + "aliases": [], + "aliasesStr": "", + "summary": "A common hypnotic, sedative and anxiolytic benzodiazepine. High doses may cause amnesia and loss of inhibitions. Unusually, it is water soluble, and commonly used as a premedication for sedation as the solubility makes it better for IV use than other benzodiazepines.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "3-7 mg" + }, + { + "name": "Common", + "value": "7-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-5 minutes" + } + ] + }, + { + "name": "Intramuscular", + "dosage": [ + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-12 mg" + }, + { + "name": "Strong", + "value": "12-25 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-20 minutes" + } + ] + }, + { + "name": "Intravenous", + "dosage": [ + { + "name": "Light", + "value": "2.5-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "0-1 minutes" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-30 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-40 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Rectal", + "dosage": [ + { + "name": "Light", + "value": "3-7 mg" + }, + { + "name": "Common", + "value": "7-15 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-25 minutes" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Mirtazapine", + "name": "Mirtazapine", + "aliases": [ + "Avanza", + "Axit", + "Mirtaz", + "Mirtazon", + "Remeron", + "Zispin" + ], + "aliasesStr": "Avanza, Axit, Mirtaz, Mirtazon, Remeron, Zispin", + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3.5 mg" + }, + { + "name": "Light", + "value": "70-130 mg" + }, + { + "name": "Common", + "value": "130-190 mg" + }, + { + "name": "Strong", + "value": "190-250 mg" + }, + { + "name": "Heavy", + "value": "250 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Peak", + "value": "90-180 minutes" + }, + { + "name": "Offset", + "value": "2-6 hours" + }, + { + "name": "Total", + "value": "14-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Antidepressants" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Modafinil", + "name": "Modafinil", + "aliases": [ + "provigil" + ], + "aliasesStr": "provigil", + "summary": "A wakefulness promoting, long acting stimulant which is typically only used functionally, because there is no real euphoric component to its effects. Also prescribed for daytime sleeping disorders.", + "toxicity": [ + "The median lethal dose at which 50% of participants die (LD50) from modafinil for human beings has never been reached" + ], + "addictionPotential": "not addictive with a low potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "benzhydryl", + "nootropic|nootropics" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-200 mg" + }, + { + "name": "Strong", + "value": "200-300 mg" + }, + { + "name": "Heavy", + "value": "300 mg" + }, + { + "name": "Common", + "value": "100-300 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-60 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "3.5-5 hours" + }, + { + "name": "Offset", + "value": "1-3 hours" + }, + { + "name": "Afterglow", + "value": "2-6 hours" + }, + { + "name": "Total", + "value": "5-10 hours" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "12-16 hours" + }, + { + "name": "After Effects", + "value": "1-16 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-200 mg" + }, + { + "name": "Strong", + "value": "200-300 mg" + }, + { + "name": "Heavy", + "value": "300 mg" + }, + { + "name": "Common", + "value": "100-300 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-60 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "3.5-5 hours" + }, + { + "name": "Offset", + "value": "1-3 hours" + }, + { + "name": "Afterglow", + "value": "2-6 hours" + }, + { + "name": "Total", + "value": "5-10 hours" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "12-16 hours" + }, + { + "name": "After Effects", + "value": "1-16 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Hormonal Birth Control" + }, + { + "status": "Dangerous", + "name": "CYP2C19-substrates" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Modafinil.shtml", + "classes": { + "psychoactive": [ + "Habit Forming", + "Nootropic", + "Stimulant" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Morning_glory", + "name": "Morning glory" + }, + { + "url": "https://psychonautwiki.org/wiki/Morphine", + "name": "Morphine", + "aliases": [], + "aliasesStr": "", + "summary": "The prototypical opioid drug, a powerful analgesic with euphoric qualities, found in the seeds and wax of the plant papaver somniferum (opium poppy). First isolated by Friedrich Sertürner in 1805, named for its sleep-inducing qualities. Do not combine with other depressants, may cause dangerous respiratory depression in overdose.", + "crossTolerances": [ + "opioids" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + }, + { + "name": "Heavy", + "value": "30 mg" + }, + { + "name": "Light", + "value": "5 mg" + }, + { + "name": "Common", + "value": "15-20 mg" + }, + { + "name": "Strong", + "value": "30 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-40 minutes" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + }, + { + "name": "Heavy", + "value": "30 mg" + }, + { + "name": "Light", + "value": "5 mg" + }, + { + "name": "Common", + "value": "15-20 mg" + }, + { + "name": "Strong", + "value": "30 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-40 minutes" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Morphine.shtml", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Myristicin", + "name": "Myristicin", + "aliases": [ + "Nutmeg" + ], + "aliasesStr": "Nutmeg", + "toxicity": [ + "is neurotoxic", + "can be fatal in extremely high doses" + ], + "addictionPotential": "is not known to be addictive", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-200 mg" + }, + { + "name": "Common", + "value": "200-500 mg" + }, + { + "name": "Strong", + "value": "500-800 mg" + }, + { + "name": "Heavy", + "value": "800 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-4 hours" + }, + { + "name": "Onset", + "value": "3-8 hours" + }, + { + "name": "Peak", + "value": "9-12 hours" + }, + { + "name": "Offset", + "value": "12-48 hours" + }, + { + "name": "Afterglow", + "value": "24-72 hours" + }, + { + "name": "Total", + "value": "12-72 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Benzodiazepines" + }, + { + "status": "Caution", + "name": "Depressant" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Alcohol" + }, + { + "status": "Unsafe", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Opioids" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "Diphenhydramine" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/N-(2C)-fentanyl", + "name": "N-(2C)-fentanyl" + }, + { + "url": "https://psychonautwiki.org/wiki/N-Acetylcysteine", + "name": "N-Acetylcysteine", + "aliases": [ + "N-Acetylcysteine" + ], + "aliasesStr": "N-Acetylcysteine", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "100 mg" + }, + { + "name": "Light", + "value": "400-600 mg" + }, + { + "name": "Common", + "value": "600-1000 mg" + }, + { + "name": "Strong", + "value": "1000-1500 mg" + }, + { + "name": "Heavy", + "value": "1500 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Total", + "value": "3-6 hours" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/N-Ethylhexedrone", + "name": "N-Ethylhexedrone", + "aliases": [ + "Hexen", + "Hex-en", + "NEH", + "Ethyl-Hexedrone" + ], + "aliasesStr": "Hexen, Hex-en, NEH, Ethyl-Hexedrone", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "norepinephrine|noradrenergic", + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "15-30 mg" + }, + { + "name": "Common", + "value": "30-40 mg" + }, + { + "name": "Strong", + "value": "40-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "2-8 minutes" + }, + { + "name": "Peak", + "value": "30-90 minutes" + }, + { + "name": "Offset", + "value": "1-4 hours" + }, + { + "name": "Afterglow", + "value": "1-8 hours" + }, + { + "name": "Total", + "value": "2-5 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + }, + { + "name": "Heavy", + "value": "20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "2-10 minutes" + }, + { + "name": "Peak", + "value": "10-30 minutes" + }, + { + "name": "Offset", + "value": "15-30 minutes" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "1-4 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/N-Methylbisfluoromodafinil", + "name": "N-Methylbisfluoromodafinil", + "aliases": [ + "N-Methylbisfluoromodafinil", + "Dehydroxyfluorafinil", + "Modafiendz" + ], + "aliasesStr": "N-Methylbisfluoromodafinil, Dehydroxyfluorafinil, Modafiendz", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "mildly addictive with a low potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "modafanil", + "analog" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "150-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "5-8 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/NEP", + "name": "NEP", + "aliases": [ + "N-Ethylpentedrone", + "NEP", + "Ethyl-Pentedrone" + ], + "aliasesStr": "N-Ethylpentedrone, NEP, Ethyl-Pentedrone", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "10-25 mg" + }, + { + "name": "Common", + "value": "25-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "4-6 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "2-4 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "1.5-3 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/NM-2-AI", + "name": "NM-2-AI", + "aliases": [], + "aliasesStr": "", + "summary": "Stimulant that is in the aminoindane class. Is it quite close to it's bigger brother 2-AI. Yet this has a lower potency, has a longer duration though.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "150-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-150 " + }, + { + "name": "Strong", + "value": "150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Total", + "value": "2-4 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "150-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-150 " + }, + { + "name": "Strong", + "value": "150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Total", + "value": "2-4 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ], + "classes": { + "psychoactive": [ + "Empathogen", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Naloxone", + "name": "Naloxone", + "aliases": [ + "Naloxone", + "Narcan", + "Evzio" + ], + "aliasesStr": "Naloxone, Narcan, Evzio", + "addictionPotential": "not habit-forming", + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Common", + "value": "1-4 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "30-60 minutes" + } + ] + }, + { + "name": "Intramuscular", + "dosage": [ + { + "name": "Common", + "value": "0.4-2 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "0.25-2 minutes" + }, + { + "name": "Total", + "value": "30-60 minutes" + } + ] + }, + { + "name": "Intravenous", + "dosage": [ + { + "name": "Common", + "value": "0.4-2 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "0.25-2 minutes" + }, + { + "name": "Total", + "value": "30-60 minutes" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Nicotine", + "name": "Nicotine", + "aliases": [], + "aliasesStr": "", + "summary": "A chemical found in tobacco, aubergines and tomatoes which is considered one of the most addictive drugs in existence. It is a mild stimulant, with stress relieving effects. It is widely used in the form of cigarettes, the use of which carries a high risk of causing cancer or heart issues over time. Increasingly, it is 'vaped' as a purportedly safer alternative to smoking.", + "toxicity": [ + "estimated oral LD50 of 6.5 - 13 mg/kg in humans" + ], + "addictionPotential": "extremely addictive with a high potential for abuse", + "tolerance": { + "full": "rapidly develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "roas": [ + { + "name": "Buccal", + "dosage": [ + { + "name": "Threshold", + "value": "0.2 mg" + }, + { + "name": "Light", + "value": "0.5-2 mg" + }, + { + "name": "Common", + "value": "2-4 mg" + }, + { + "name": "Strong", + "value": "4-6 mg" + }, + { + "name": "Heavy", + "value": "6 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "3-15 minutes" + }, + { + "name": "Onset", + "value": "3-15 minutes" + }, + { + "name": "Peak", + "value": "5-20 minutes" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "2-6 hours" + }, + { + "name": "Total", + "value": "45-90 minutes" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "0.2 mg" + }, + { + "name": "Light", + "value": "0.3-0.8 mg" + }, + { + "name": "Common", + "value": "0.8-1.5 mg" + }, + { + "name": "Strong", + "value": "1.5-3.5 mg" + }, + { + "name": "Heavy", + "value": "3.5 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "5-10 seconds" + }, + { + "name": "Onset", + "value": "5-20 seconds" + }, + { + "name": "Peak", + "value": "2-5 minutes" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "1-3 hours" + }, + { + "name": "Total", + "value": "1-3 hours" + } + ] + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Nicotine.shtml", + "classes": { + "psychoactive": [ + "Habit Forming", + "Nootropic" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Nifoxipam", + "name": "Nifoxipam", + "aliases": [], + "aliasesStr": "", + "summary": "An uncommon and relatively new RC benzodiazepine, and metabolite of the hypnotic benzodiazepine flunitrazepam. Little information about the pharmacological properties of this drug exists. Likely to be a strong sedative and hypnotic.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "tolerance": { + "full": "within a couple of days of continuous use", + "half": null, + "zero": "7 - 14 days" + }, + "crossTolerances": [ + "benzodiazepines" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.1 mg" + }, + { + "name": "Light", + "value": "0.25-0.5 mg" + }, + { + "name": "Common", + "value": "0.5-1 mg" + }, + { + "name": "Strong", + "value": "1-2 mg" + }, + { + "name": "Heavy", + "value": "2 mg" + }, + { + "name": "Light", + "value": "250 ug", + "note": " NOTE: Higher doses will increase the likelihood of blacking out" + }, + { + "name": "Common", + "value": "500 ug", + "note": " NOTE: Higher doses will increase the likelihood of blacking out" + }, + { + "name": "Heavy", + "value": "1000 ug", + "note": " NOTE: Higher doses will increase the likelihood of blacking out" + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-120 minutes" + }, + { + "name": "Total", + "value": "10-75 hours" + }, + { + "name": "Onset", + "value": "10-75 minutes" + }, + { + "name": "Duration", + "value": "10-18 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.1 mg" + }, + { + "name": "Light", + "value": "0.25-0.5 mg" + }, + { + "name": "Common", + "value": "0.5-1 mg" + }, + { + "name": "Strong", + "value": "1-2 mg" + }, + { + "name": "Heavy", + "value": "2 mg" + }, + { + "name": "Light", + "value": "250 ug", + "note": " NOTE: Higher doses will increase the likelihood of blacking out" + }, + { + "name": "Common", + "value": "500 ug", + "note": " NOTE: Higher doses will increase the likelihood of blacking out" + }, + { + "name": "Heavy", + "value": "1000 ug", + "note": " NOTE: Higher doses will increase the likelihood of blacking out" + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-120 minutes" + }, + { + "name": "Total", + "value": "10-75 hours" + }, + { + "name": "Onset", + "value": "10-75 minutes" + }, + { + "name": "Duration", + "value": "10-18 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [ + "Benzodiazepine" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Nitromethaqualone", + "name": "Nitromethaqualone" + }, + { + "url": "https://psychonautwiki.org/wiki/Nitrous", + "name": "Nitrous", + "aliases": [ + "laughing_gas", + "n20", + "n2o", + "nos" + ], + "aliasesStr": "laughing_gas, n20, n2o, nos", + "summary": "Nitrous oxide, also known as laughing gas, often inhaled through balloons filled with canisters of the gas.. A short-acting dissociative inhalant with strong visual, mental and auditory effects. Extremely popular especially in combination with other drugs.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "mildly addictive with a moderate potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [], + "interactions": [ + { + "status": "Low Risk & Synergy", + "name": "2c-t-x" + }, + { + "status": "Low Risk & Synergy", + "name": "2c-x" + }, + { + "status": "Low Risk & Synergy", + "name": "5-meo-xxt" + }, + { + "status": "Caution", + "name": "alcohol", + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely." + }, + { + "status": "Low Risk & Synergy", + "name": "amphetamines" + }, + { + "status": "Low Risk & Synergy", + "name": "amt" + }, + { + "status": "Low Risk & Decrease", + "name": "benzodiazepines" + }, + { + "status": "Low Risk & Decrease", + "name": "benzos" + }, + { + "status": "Low Risk & No Synergy", + "name": "caffeine" + }, + { + "status": "Low Risk & Synergy", + "name": "cannabis" + }, + { + "status": "Low Risk & Synergy", + "name": "cocaine" + }, + { + "status": "Low Risk & Synergy", + "name": "dmt" + }, + { + "status": "Low Risk & Synergy", + "name": "dox" + }, + { + "status": "Low Risk & Synergy", + "name": "dxm" + }, + { + "status": "Caution", + "name": "ghb/gbl", + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely." + }, + { + "status": "Low Risk & Synergy", + "name": "ketamine" + }, + { + "status": "Low Risk & Synergy", + "name": "lsd" + }, + { + "status": "Low Risk & No Synergy", + "name": "maois" + }, + { + "status": "Low Risk & Synergy", + "name": "mdma" + }, + { + "status": "Low Risk & Synergy", + "name": "mescaline" + }, + { + "status": "Low Risk & Synergy", + "name": "mushrooms" + }, + { + "status": "Low Risk & Synergy", + "name": "mxe" + }, + { + "status": "Low Risk & Synergy", + "name": "nbomes" + }, + { + "status": "Caution", + "name": "opioids", + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely." + }, + { + "status": "Low Risk & Synergy", + "name": "pcp" + }, + { + "status": "Low Risk & No Synergy", + "name": "ssris" + }, + { + "status": "Caution", + "name": "tramadol", + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely." + } + ], + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Nootropic", + "name": "Nootropic" + }, + { + "url": "https://psychonautwiki.org/wiki/O-Desmethyltramadol", + "name": "O-Desmethyltramadol", + "aliases": [ + "odt", + "o-smt", + "o-dsmt" + ], + "aliasesStr": "odt, o-smt, o-dsmt", + "summary": "A opioid analgesic which is the main active metabolite of Tramadol. Alone, it is a few times more potent than Tramadol and has additional affinity for δ and κ-opioid receptors. Has proven popular when sold, but these occasions have been rare due to patent rights.", + "toxicity": [ + "moderate potential toxicity relative to its dose due to its potency", + "potentially lethal when mixed with depressants like alcohol or benzodiazepines" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "opioids" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-25 mg" + }, + { + "name": "Common", + "value": "25-50 mg" + }, + { + "name": "Strong", + "value": "50-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + }, + { + "name": "Light", + "value": "10-25 mg", + "note": " NOTE: Insufflation considered extremely painful." + }, + { + "name": "Common", + "value": "25-50 mg", + "note": " NOTE: Insufflation considered extremely painful." + }, + { + "name": "Strong", + "value": "50-100 mg", + "note": " NOTE: Insufflation considered extremely painful." + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "2-5 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "1-3 hours" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + }, + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-25 mg" + }, + { + "name": "Common", + "value": "25-50 mg" + }, + { + "name": "Strong", + "value": "50-80 mg" + }, + { + "name": "Heavy", + "value": "80 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "2-5 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "1-3 hours" + }, + { + "name": "Total", + "value": "5-10 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-25 mg" + }, + { + "name": "Common", + "value": "25-50 mg" + }, + { + "name": "Strong", + "value": "50-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + }, + { + "name": "Light", + "value": "10-25 mg", + "note": " NOTE: Insufflation considered extremely painful." + }, + { + "name": "Common", + "value": "25-50 mg", + "note": " NOTE: Insufflation considered extremely painful." + }, + { + "name": "Strong", + "value": "50-100 mg", + "note": " NOTE: Insufflation considered extremely painful." + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "2-5 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "1-3 hours" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/O-PCE", + "name": "O-PCE", + "aliases": [ + "2'-oxo-pce", + "eticyclidone", + "opce", + "2-oxo-pce" + ], + "aliasesStr": "2'-oxo-pce, eticyclidone, opce, 2-oxo-pce", + "summary": "Dissociative of the Arylcyclohexylamine class. Structurally related to Deschloroketamine.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dissociative" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "25-75 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "2-48 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "3-6 mg" + }, + { + "name": "Common", + "value": "6-12 mg" + }, + { + "name": "Strong", + "value": "12-20 mg" + }, + { + "name": "Heavy", + "value": "20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "2-5 minutes" + }, + { + "name": "Afterglow", + "value": "2-12 hours" + }, + { + "name": "Total", + "value": "3-5 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "25-75 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "2-48 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + } + ], + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Omberacetam", + "name": "Omberacetam", + "aliases": [ + "Noopept", + "Ноопепт", + "GVS-111", + "Omberacetam" + ], + "aliasesStr": "Noopept, Ноопепт, GVS-111, Omberacetam", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "non-addictive with a low potential for abuse", + "tolerance": { + "full": "develops over several weeks of prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "racetam", + "nootropic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "3-5 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "1-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + }, + { + "name": "Heavy", + "value": "20 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "2-5 hours" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Opioids", + "name": "Opioids", + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Oroxylin_A", + "name": "Oroxylin A" + }, + { + "url": "https://psychonautwiki.org/wiki/Orphenadrine", + "name": "Orphenadrine" + }, + { + "url": "https://psychonautwiki.org/wiki/Oxazepam", + "name": "Oxazepam", + "aliases": [ + "serax" + ], + "aliasesStr": "serax", + "summary": "A prescription benzodiazepine with intermediate duration and half life. A sedative and hypnotic which may cause lowered inhibitions and amnesia in higher doses.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "30-45 mg" + }, + { + "name": "Heavy", + "value": "45 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-30 mg" + }, + { + "name": "Strong", + "value": "30-45 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "2-3 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "6-8 hours" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "60-120 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-10 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "30-45 mg" + }, + { + "name": "Heavy", + "value": "45 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-30 mg" + }, + { + "name": "Strong", + "value": "30-45 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "2-3 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "6-8 hours" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "60-120 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-10 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "Depressant" + }, + { + "status": "Dangerous", + "name": "Dissociatives" + }, + { + "status": "Dangerous", + "name": "Stimulants" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Oxiracetam", + "name": "Oxiracetam", + "aliases": [ + "neuractiv", + "neuromet", + "hydroxypiracetam" + ], + "aliasesStr": "neuractiv, neuromet, hydroxypiracetam", + "summary": "Oxiracetam is a racetam nootropic, having a hydroxyl group being the only difference between this and Piracetam. It used as a nootropic, namely for increased cognitive function. It is usually used two to three times a day. This substance is normally taken with Choline, can cause headaches without the addition of Choline.", + "toxicity": [ + "safe even when high doses are consumed for a long period of time", + "exact toxic dosage is unknown" + ], + "addictionPotential": "non-addictive with a low potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "racetam", + "nootropic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "250 mg" + }, + { + "name": "Light", + "value": "500-1200 mg" + }, + { + "name": "Common", + "value": "1200-1800 mg" + }, + { + "name": "Strong", + "value": "1800-2400 mg" + }, + { + "name": "Heavy", + "value": "2400 mg" + }, + { + "name": "Common", + "value": "1200-2400 mg", + "note": " Note: This is for the course over a 24 hour period. 2-3x times daily, such as 400mg-800mg/3x day." + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Total", + "value": "8-10 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "250 mg" + }, + { + "name": "Light", + "value": "500-1200 mg" + }, + { + "name": "Common", + "value": "1200-1800 mg" + }, + { + "name": "Strong", + "value": "1800-2400 mg" + }, + { + "name": "Heavy", + "value": "2400 mg" + }, + { + "name": "Common", + "value": "1200-2400 mg", + "note": " Note: This is for the course over a 24 hour period. 2-3x times daily, such as 400mg-800mg/3x day." + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Total", + "value": "8-10 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Oxycodone", + "name": "Oxycodone", + "aliases": [ + "oxy", + "oxycontin", + "percocet", + "oxynorm" + ], + "aliasesStr": "oxy, oxycontin, percocet, oxynorm", + "summary": "A semisynthetic opioid analgesic developed in 1917, prescribed primarily for pain management. It has become extremely popular as a recreational drug in some areas, and carries a high potential for addiction. Reported as being a little more 'stimulating' than other opioids.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or benzodiazepines" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "opioids" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2.5-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "25-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + }, + { + "name": "Light", + "value": "2.5-10 mg", + "note": " Note: Dosages reflect that, while nasal bioavailability (BA) may be less than oral BA, nasal administration causes an additional 'rush' (due to quicker onset); this may lead to a subjective experience of greater strength than an equivalent oral dose." + }, + { + "name": "Common", + "value": "10-25 mg", + "note": " Note: Dosages reflect that, while nasal bioavailability (BA) may be less than oral BA, nasal administration causes an additional 'rush' (due to quicker onset); this may lead to a subjective experience of greater strength than an equivalent oral dose." + }, + { + "name": "Strong", + "value": "25-40 mg", + "note": " Note: Dosages reflect that, while nasal bioavailability (BA) may be less than oral BA, nasal administration causes an additional 'rush' (due to quicker onset); this may lead to a subjective experience of greater strength than an equivalent oral dose." + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2.5-7.5 mg" + }, + { + "name": "Common", + "value": "7.5-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + }, + { + "name": "Light", + "value": "2.5-7.5 mg", + "note": " Note: Dosages reflect that, while nasal bioavailability (BA) may be less than oral BA, nasal administration causes an additional 'rush' (due to quicker onset); this may lead to a subjective experience of greater strength than an equivalent oral dose." + }, + { + "name": "Common", + "value": "7.5-15 mg", + "note": " Note: Dosages reflect that, while nasal bioavailability (BA) may be less than oral BA, nasal administration causes an additional 'rush' (due to quicker onset); this may lead to a subjective experience of greater strength than an equivalent oral dose." + }, + { + "name": "Strong", + "value": "15-25 mg", + "note": " Note: Dosages reflect that, while nasal bioavailability (BA) may be less than oral BA, nasal administration causes an additional 'rush' (due to quicker onset); this may lead to a subjective experience of greater strength than an equivalent oral dose." + } + ], + "duration": [ + { + "name": "Onset", + "value": "2-5 minutes" + }, + { + "name": "Total", + "value": "3-5 hours" + }, + { + "name": "Onset", + "value": "2-5 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2.5-7.5 mg" + }, + { + "name": "Common", + "value": "7.5-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + }, + { + "name": "Light", + "value": "2.5-7.5 mg", + "note": " Note: Dosages reflect that, while nasal bioavailability (BA) may be less than oral BA, nasal administration causes an additional 'rush' (due to quicker onset); this may lead to a subjective experience of greater strength than an equivalent oral dose." + }, + { + "name": "Common", + "value": "7.5-15 mg", + "note": " Note: Dosages reflect that, while nasal bioavailability (BA) may be less than oral BA, nasal administration causes an additional 'rush' (due to quicker onset); this may lead to a subjective experience of greater strength than an equivalent oral dose." + }, + { + "name": "Strong", + "value": "15-25 mg", + "note": " Note: Dosages reflect that, while nasal bioavailability (BA) may be less than oral BA, nasal administration causes an additional 'rush' (due to quicker onset); this may lead to a subjective experience of greater strength than an equivalent oral dose." + } + ], + "duration": [ + { + "name": "Onset", + "value": "2-5 minutes" + }, + { + "name": "Total", + "value": "3-5 hours" + }, + { + "name": "Onset", + "value": "2-5 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2.5-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "25-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + }, + { + "name": "Light", + "value": "2.5-10 mg", + "note": " Note: Dosages reflect that, while nasal bioavailability (BA) may be less than oral BA, nasal administration causes an additional 'rush' (due to quicker onset); this may lead to a subjective experience of greater strength than an equivalent oral dose." + }, + { + "name": "Common", + "value": "10-25 mg", + "note": " Note: Dosages reflect that, while nasal bioavailability (BA) may be less than oral BA, nasal administration causes an additional 'rush' (due to quicker onset); this may lead to a subjective experience of greater strength than an equivalent oral dose." + }, + { + "name": "Strong", + "value": "25-40 mg", + "note": " Note: Dosages reflect that, while nasal bioavailability (BA) may be less than oral BA, nasal administration causes an additional 'rush' (due to quicker onset); this may lead to a subjective experience of greater strength than an equivalent oral dose." + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Oxymorphone", + "name": "Oxymorphone", + "aliases": [ + "opana", + "stopsigns" + ], + "aliasesStr": "opana, stopsigns", + "summary": "A powerful semisynthetic opioid analgesic also known as opana. A derivative of morphine it is approximately ten times as potent. Has a low oral bioavailability, and as such it is usually insufflated or taken rectally.", + "crossTolerances": [ + "opioids" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2.5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + }, + { + "name": "Heavy", + "value": "30 mg" + }, + { + "name": "Light", + "value": "5-7.5 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Heavy", + "value": "20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-45 minutes" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-6 mg" + }, + { + "name": "Heavy", + "value": "6-10 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-5 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2.5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + }, + { + "name": "Heavy", + "value": "30 mg" + }, + { + "name": "Light", + "value": "5-7.5 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Heavy", + "value": "20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-45 minutes" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/PARGY-LAD", + "name": "PARGY-LAD", + "aliases": [ + "PARGY-LAD" + ], + "aliasesStr": "PARGY-LAD", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "5-7 days", + "zero": "14 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 µg" + }, + { + "name": "Light", + "value": "125-275 µg" + }, + { + "name": "Common", + "value": "275-500 µg" + }, + { + "name": "Strong", + "value": "500-700 µg" + }, + { + "name": "Heavy", + "value": "700 µg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Total", + "value": "6-8 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/PCE", + "name": "PCE", + "aliases": [ + "eticyclidine" + ], + "aliasesStr": "eticyclidine", + "summary": "Eticyclidine (PCE) is a Dissociative anesthetic that has hallucinogenic effects. Slightly more potent than Phencyclidine.", + "addictionPotential": "highly addictive with a high potential for adverse side effects such as psychosis", + "tolerance": { + "full": "with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dissociative" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-15 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "40-120 minutes" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "Insufflated minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-8 mg" + }, + { + "name": "Strong", + "value": "8-15 mg" + }, + { + "name": "Light", + "value": "1-3 mg" + }, + { + "name": "Common", + "value": "3-7 mg" + }, + { + "name": "Strong", + "value": "7-15 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-90 minutes" + }, + { + "name": "Onset", + "value": "3-30 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-8 mg" + }, + { + "name": "Strong", + "value": "8-12 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-40 minutes" + }, + { + "name": "Onset", + "value": "2-20 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-8 mg" + }, + { + "name": "Strong", + "value": "8-15 mg" + }, + { + "name": "Light", + "value": "1-3 mg" + }, + { + "name": "Common", + "value": "3-7 mg" + }, + { + "name": "Strong", + "value": "7-15 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-90 minutes" + }, + { + "name": "Onset", + "value": "3-30 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + } + ], + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/PCP", + "name": "PCP", + "aliases": [ + "angeldust", + "phencyclidine", + "angel", + "dust", + "angel_dust", + "wet" + ], + "aliasesStr": "angeldust, phencyclidine, angel, dust, angel_dust, wet", + "summary": "A strong dissociative drug. PCP works primarily as an NMDA receptor antagonist. Also referred to as \"wet\" or \"angel dust\". Best known for stories of the strange and sometimes violent behaviour of those under its influence, though it is likely these are only in overdose cases.", + "addictionPotential": "highly addictive with a high potential for adverse side effects such as psychosis", + "tolerance": { + "full": "with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dissociative|dissociatives" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-15 mg" + }, + { + "name": "Light", + "value": "2-5 mg", + "note": " NOTE: Be cautious with dosing, this drug is known to cause mania." + }, + { + "name": "Common", + "value": "5-10 mg", + "note": " NOTE: Be cautious with dosing, this drug is known to cause mania." + }, + { + "name": "Strong", + "value": "10-15 mg", + "note": " NOTE: Be cautious with dosing, this drug is known to cause mania." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "40-120 minutes" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "2-20 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "12-24 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-8 mg" + }, + { + "name": "Strong", + "value": "8-15 mg" + }, + { + "name": "Light", + "value": "2-4 mg", + "note": " NOTE: Be cautious with dosing, this drug is known to cause mania." + }, + { + "name": "Common", + "value": "4-8 mg", + "note": " NOTE: Be cautious with dosing, this drug is known to cause mania." + }, + { + "name": "Strong", + "value": "8-15 mg", + "note": " NOTE: Be cautious with dosing, this drug is known to cause mania." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-90 minutes" + }, + { + "name": "Onset", + "value": "3-30 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-8 mg" + }, + { + "name": "Strong", + "value": "8-12 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-40 minutes" + }, + { + "name": "Onset", + "value": "2-20 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-8 mg" + }, + { + "name": "Strong", + "value": "8-15 mg" + }, + { + "name": "Light", + "value": "2-4 mg", + "note": " NOTE: Be cautious with dosing, this drug is known to cause mania." + }, + { + "name": "Common", + "value": "4-8 mg", + "note": " NOTE: Be cautious with dosing, this drug is known to cause mania." + }, + { + "name": "Strong", + "value": "8-15 mg", + "note": " NOTE: Be cautious with dosing, this drug is known to cause mania." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-90 minutes" + }, + { + "name": "Onset", + "value": "3-30 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-15 mg" + }, + { + "name": "Light", + "value": "2-5 mg", + "note": " NOTE: Be cautious with dosing, this drug is known to cause mania." + }, + { + "name": "Common", + "value": "5-10 mg", + "note": " NOTE: Be cautious with dosing, this drug is known to cause mania." + }, + { + "name": "Strong", + "value": "10-15 mg", + "note": " NOTE: Be cautious with dosing, this drug is known to cause mania." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "40-120 minutes" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "2-20 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "12-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "2c-t-x" + }, + { + "status": "Low Risk & Synergy", + "name": "2c-x" + }, + { + "status": "Dangerous", + "name": "5-meo-xxt" + }, + { + "status": "Unsafe", + "name": "alcohol", + "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner." + }, + { + "status": "Unsafe", + "name": "amphetamines", + "note": "This combination can easily lead to hypermanic states" + }, + { + "status": "Dangerous", + "name": "amt" + }, + { + "status": "Unsafe", + "name": "benzodiazepines", + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely" + }, + { + "status": "Unsafe", + "name": "benzos", + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely" + }, + { + "status": "Caution", + "name": "caffeine", + "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner." + }, + { + "status": "Low Risk & Synergy", + "name": "cannabis" + }, + { + "status": "Unsafe", + "name": "cocaine", + "note": "This combination can easily lead to hypermanic states" + }, + { + "status": "Low Risk & Synergy", + "name": "dmt" + }, + { + "status": "Unsafe", + "name": "dox", + "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner." + }, + { + "status": "Dangerous", + "name": "dxm" + }, + { + "status": "Dangerous", + "name": "ghb/gbl", + "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner." + }, + { + "status": "Low Risk & Synergy", + "name": "ketamine" + }, + { + "status": "Low Risk & Synergy", + "name": "lsd" + }, + { + "status": "Dangerous", + "name": "maois", + "note": "This combination is very poorly explored" + }, + { + "status": "Unsafe", + "name": "mdma", + "note": "This combination can easily lead to hypermanic states" + }, + { + "status": "Low Risk & Synergy", + "name": "mescaline" + }, + { + "status": "Low Risk & Synergy", + "name": "mushrooms" + }, + { + "status": "Caution", + "name": "mxe", + "note": "There are no reports available about this combination" + }, + { + "status": "Low Risk & Synergy", + "name": "nbomes" + }, + { + "status": "Low Risk & Synergy", + "name": "nitrous" + }, + { + "status": "Caution", + "name": "opioids", + "note": "PCP can reduce opioid tolerance, increasing the risk of overdose" + }, + { + "status": "Unsafe", + "name": "ssris", + "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner." + }, + { + "status": "Dangerous", + "name": "tramadol" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_PCP.shtml", + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/PMA", + "name": "PMA", + "aliases": [], + "aliasesStr": "", + "summary": "An empathogen with a slow onset and very strong serotonin release. This, combined with its lack of dopamine release, often leads users to dose more for the pleasurable effects which never come, leading to hospitalisations and deaths. Sometimes mis-sold as MDMA.", + "toxicity": [ + "can be considered extremely toxic when compared to other substances such as Methamphetamine or MDMA", + "Ingestion of PMA has been associated with severe tachycardia (abnormally high heart rate), seizures, hyperthermia, and death" + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "GHB" + }, + { + "status": "Caution", + "name": "GBL" + }, + { + "status": "Caution", + "name": "Opioids" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Caffeine" + }, + { + "status": "Caution", + "name": "Ketamine" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Psychedelic" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "PCP" + }, + { + "status": "Unsafe", + "name": "25x-NBOMe" + }, + { + "status": "Unsafe", + "name": "2C-T-x" + }, + { + "status": "Unsafe", + "name": "5-MeO-xxT" + }, + { + "status": "Unsafe", + "name": "DOx" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "ΑMT" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_PMA.shtml", + "classes": { + "psychoactive": [ + "Stimulant", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/PMMA", + "name": "PMMA", + "aliases": [ + "PMMA" + ], + "aliasesStr": "PMMA", + "toxicity": [ + "can be considered extremely toxic when compared to other substances such as Methamphetamine or MDMA", + "Ingestion of PMMA has been associated with severe tachycardia (abnormally high heart rate), seizures, hyperthermia, and death" + ] + }, + { + "url": "https://psychonautwiki.org/wiki/PRO-LAD", + "name": "PRO-LAD", + "aliases": [], + "aliasesStr": "", + "summary": "A very rare lysergamide that is slightly less potent than LSD, yet with a shorter duration of action.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "5-7 days", + "zero": "14 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 µg" + }, + { + "name": "Light", + "value": "50-100 µg" + }, + { + "name": "Common", + "value": "100-200 µg" + }, + { + "name": "Strong", + "value": "200-350 µg" + }, + { + "name": "Heavy", + "value": "350 µg" + }, + { + "name": "Light", + "value": "50-100 ug" + }, + { + "name": "Common", + "value": "100-150 ug" + }, + { + "name": "Strong", + "value": "150-200 ug" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Total", + "value": "6-8 hours" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "6-10 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 µg" + }, + { + "name": "Light", + "value": "50-100 µg" + }, + { + "name": "Common", + "value": "100-200 µg" + }, + { + "name": "Strong", + "value": "200-350 µg" + }, + { + "name": "Heavy", + "value": "350 µg" + }, + { + "name": "Light", + "value": "50-100 ug" + }, + { + "name": "Common", + "value": "100-150 ug" + }, + { + "name": "Strong", + "value": "150-200 ug" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Total", + "value": "6-8 hours" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "6-10 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ], + "classes": { + "psychoactive": [ + "Psychedelic", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Peganum_harmala", + "name": "Peganum harmala", + "aliases": [ + "Espand", + "Esfand", + "Syrian rue" + ], + "aliasesStr": "Espand, Esfand, Syrian rue" + }, + { + "url": "https://psychonautwiki.org/wiki/Pentedrone", + "name": "Pentedrone", + "aliases": [], + "aliasesStr": "", + "summary": "A potent NDRI cathinone-type stimulant with more-ish effects but not thought to be especially enjoyable.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "1-10 hours" + }, + { + "name": "Total", + "value": "2-6 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "2-6 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + }, + { + "name": "Heavy", + "value": "20 mg" + }, + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Peak", + "value": "30-90 minutes" + }, + { + "name": "Offset", + "value": "30-90 minutes" + }, + { + "name": "Afterglow", + "value": "1-8 hours" + }, + { + "name": "Total", + "value": "1-4 hours" + }, + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "1-4 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + }, + { + "name": "Heavy", + "value": "20 mg" + }, + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Peak", + "value": "30-90 minutes" + }, + { + "name": "Offset", + "value": "30-90 minutes" + }, + { + "name": "Afterglow", + "value": "1-8 hours" + }, + { + "name": "Total", + "value": "1-4 hours" + }, + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "1-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + }, + { + "name": "Heavy", + "value": "25 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "1-10 hours" + }, + { + "name": "Total", + "value": "2-6 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "2-6 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Rectal", + "dosage": [ + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Pentedrone.shtml", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Pentobarbital", + "name": "Pentobarbital", + "aliases": [ + "nembutal", + "novopentobarb" + ], + "aliasesStr": "nembutal, novopentobarb", + "summary": "A CNS depressant drug that is of the barbituate class. Typically not used often as it is easier to OD on than benzodiazepines, the new alternative to barbituates. Used often for insomnia, to cause sedation.", + "toxicity": [ + "moderate toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-200 mg" + }, + { + "name": "Strong", + "value": "200-300 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-200 mg" + }, + { + "name": "Heavy", + "value": "200-300 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Peak", + "value": "1-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "1-36 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Duration", + "value": "3-4 hours" + }, + { + "name": "After Effects", + "value": "1-36 hours" + } + ] + }, + { + "name": "Intramuscular", + "dosage": [ + { + "name": "Light", + "value": "100-150 mg" + }, + { + "name": "Common", + "value": "150-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-25 minutes" + }, + { + "name": "Duration", + "value": "3-4 hours" + } + ] + }, + { + "name": "Intravenous", + "dosage": [ + { + "name": "Light", + "value": "50-60 mg" + }, + { + "name": "Common", + "value": "60-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1 minutes" + }, + { + "name": "Duration", + "value": "15-20 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-200 mg" + }, + { + "name": "Strong", + "value": "200-300 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-200 mg" + }, + { + "name": "Heavy", + "value": "200-300 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Peak", + "value": "1-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "1-36 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Duration", + "value": "3-4 hours" + }, + { + "name": "After Effects", + "value": "1-36 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Barbiturate" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Pethidine", + "name": "Pethidine", + "aliases": [ + "Pethidine", + "Meperidine", + "Demerol", + "Dolantin", + "Dolcontral" + ], + "aliasesStr": "Pethidine, Meperidine, Demerol, Dolantin, Dolcontral", + "toxicity": [ + "high toxicity", + "potentially lethal when mixed with depressants like alcohol or benzodiazepines" + ], + "addictionPotential": "extremely addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "opioids" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-200 mg" + }, + { + "name": "Strong", + "value": "200-400 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "4-6 hours" + }, + { + "name": "Afterglow", + "value": "2-10 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Phenazepam", + "name": "Phenazepam", + "aliases": [], + "aliasesStr": "", + "summary": "A very long acting, potent and subtle benzodiazepine. Infamous for the calamitous experiences it tends to produce in people dosing unknown amounts. Prescribed in certain countries for epilepsy and alcohol withdrawal.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "tolerance": { + "full": "within a couple of days of continuous use", + "half": null, + "zero": "7-14 days" + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-3 mg" + }, + { + "name": "Strong", + "value": "4-5 mg" + }, + { + "name": "Heavy", + "value": "5 mg" + }, + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Heavy", + "value": "2-4 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-4 hours" + }, + { + "name": "Afterglow", + "value": "15-36 hours" + }, + { + "name": "Total", + "value": "15-24 hours" + }, + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Duration", + "value": "18+ hours" + }, + { + "name": "After Effects", + "value": "36+ hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-3 mg" + }, + { + "name": "Strong", + "value": "4-5 mg" + }, + { + "name": "Heavy", + "value": "5 mg" + }, + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Heavy", + "value": "2-4 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-4 hours" + }, + { + "name": "Afterglow", + "value": "15-36 hours" + }, + { + "name": "Total", + "value": "15-24 hours" + }, + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Duration", + "value": "18+ hours" + }, + { + "name": "After Effects", + "value": "36+ hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + }, + { + "status": "Dangerous", + "name": "Dissociatives" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Research Chemical" + ], + "chemical": [ + "Benzodiazepine" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Phenethylamine_(compound)", + "name": "Phenethylamine (compound)" + }, + { + "url": "https://psychonautwiki.org/wiki/Phenibut", + "name": "Phenibut", + "aliases": [], + "aliasesStr": "", + "summary": "A derivative of GABA with the addition of a phenyl ring which allows it to cross the Blood Brain Barrier. Is mostly used as an anti-anxiety and anti-insomnia medication. Tolerance and physical dependency builds very quickly.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol, benzodiazepines or opioids" + ], + "addictionPotential": "moderately physically and psychologically addictive", + "tolerance": { + "full": "within a couple of days of continuous use", + "half": null, + "zero": "7 - 14 days" + }, + "crossTolerances": [ + "GABA" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.25 g" + }, + { + "name": "Light", + "value": "0.5-1 g" + }, + { + "name": "Common", + "value": "1-2 g" + }, + { + "name": "Strong", + "value": "2-3.5 g" + }, + { + "name": "Heavy", + "value": "3.5 g" + }, + { + "name": "Light", + "value": "300-600 mg", + "note": " NOTE: This substance has a very fast tolerance raise, and also seems to vary a lot person to person. Start low and work your way up. We would recommend starting with a low dose and working it up every 50-100mg's every two weeks." + }, + { + "name": "Common", + "value": "600-1200 mg", + "note": " NOTE: This substance has a very fast tolerance raise, and also seems to vary a lot person to person. Start low and work your way up. We would recommend starting with a low dose and working it up every 50-100mg's every two weeks." + }, + { + "name": "Strong", + "value": "1200-1800 mg", + "note": " NOTE: This substance has a very fast tolerance raise, and also seems to vary a lot person to person. Start low and work your way up. We would recommend starting with a low dose and working it up every 50-100mg's every two weeks." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1.5-3 hours" + }, + { + "name": "Onset", + "value": "1.5-3 hours" + }, + { + "name": "Peak", + "value": "3-4 hours" + }, + { + "name": "Offset", + "value": "4-6 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "10-16 hours" + }, + { + "name": "Onset", + "value": "30-120 minutes" + }, + { + "name": "Duration", + "value": "9-16 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.25 g" + }, + { + "name": "Light", + "value": "0.5-1 g" + }, + { + "name": "Common", + "value": "1-2 g" + }, + { + "name": "Strong", + "value": "2-3.5 g" + }, + { + "name": "Heavy", + "value": "3.5 g" + }, + { + "name": "Light", + "value": "300-600 mg", + "note": " NOTE: This substance has a very fast tolerance raise, and also seems to vary a lot person to person. Start low and work your way up. We would recommend starting with a low dose and working it up every 50-100mg's every two weeks." + }, + { + "name": "Common", + "value": "600-1200 mg", + "note": " NOTE: This substance has a very fast tolerance raise, and also seems to vary a lot person to person. Start low and work your way up. We would recommend starting with a low dose and working it up every 50-100mg's every two weeks." + }, + { + "name": "Strong", + "value": "1200-1800 mg", + "note": " NOTE: This substance has a very fast tolerance raise, and also seems to vary a lot person to person. Start low and work your way up. We would recommend starting with a low dose and working it up every 50-100mg's every two weeks." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1.5-3 hours" + }, + { + "name": "Onset", + "value": "1.5-3 hours" + }, + { + "name": "Peak", + "value": "3-4 hours" + }, + { + "name": "Offset", + "value": "4-6 hours" + }, + { + "name": "Afterglow", + "value": "6-24 hours" + }, + { + "name": "Total", + "value": "10-16 hours" + }, + { + "name": "Onset", + "value": "30-120 minutes" + }, + { + "name": "Duration", + "value": "9-16 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Nootropic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Phenobarbital", + "name": "Phenobarbital", + "aliases": [ + "pheno", + "phenobarbitone", + "luminal" + ], + "aliasesStr": "pheno, phenobarbitone, luminal", + "summary": "CNS depressant that is used mostly for insomnia (In older patients) and epliepsy (in younger patients) And it a very strong narcotic, that can be taken most ways. It's used less as \"safer\" alternatives have been made (Benzodiazepines).", + "toxicity": [ + "moderate toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "150-300 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "150-300 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Peak", + "value": "4-6 hours" + }, + { + "name": "Afterglow", + "value": "1-48 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "150-300 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "150-300 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Peak", + "value": "4-6 hours" + }, + { + "name": "Afterglow", + "value": "1-48 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Barbiturate" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Phenylpiracetam", + "name": "Phenylpiracetam", + "aliases": [ + "Phenylpiracetam", + "Phenotropil", + "Carphedon" + ], + "aliasesStr": "Phenylpiracetam, Phenotropil, Carphedon", + "toxicity": [ + "safe even when high doses are consumed for a long period of time", + "exact toxic dosage is unknown" + ], + "addictionPotential": "non-addictive with a low potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "racetam", + "nootropic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-200 mg" + }, + { + "name": "Strong", + "value": "200-400 mg" + }, + { + "name": "Heavy", + "value": "400 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Total", + "value": "2-3 hours" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Piper_nigrum_(botany)", + "name": "Piper nigrum (botany)" + }, + { + "url": "https://psychonautwiki.org/wiki/Piracetam", + "name": "Piracetam", + "aliases": [ + "nootropil", + "lucetam", + "noostan", + "breinox", + "oikamid", + "geratam", + "biotropil" + ], + "aliasesStr": "nootropil, lucetam, noostan, breinox, oikamid, geratam, biotropil", + "summary": "A racetam nootropic claimed by many to have cognitive benefits however this has never been strongly supported in healthy individuals. Prescribed in the UK as a treatment for myoclonus. Potentially an ampakine. One of the first popular 'nootropics.'", + "addictionPotential": "not addictive with a low potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "racetam", + "nootropic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.25 g" + }, + { + "name": "Light", + "value": "0.5-2 g" + }, + { + "name": "Common", + "value": "2-3 g" + }, + { + "name": "Strong", + "value": "3-5 g" + }, + { + "name": "Heavy", + "value": "5 g" + }, + { + "name": "Common", + "value": "1200-4800 mg", + "note": " Note: Doses are normally split up to be taken 3x a day." + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "15-35 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.25 g" + }, + { + "name": "Light", + "value": "0.5-2 g" + }, + { + "name": "Common", + "value": "2-3 g" + }, + { + "name": "Strong", + "value": "3-5 g" + }, + { + "name": "Heavy", + "value": "5 g" + }, + { + "name": "Common", + "value": "1200-4800 mg", + "note": " Note: Doses are normally split up to be taken 3x a day." + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "15-35 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Piracetam.shtml", + "classes": { + "psychoactive": [ + "Nootropic" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Poppers", + "name": "Poppers" + }, + { + "url": "https://psychonautwiki.org/wiki/Pramiracetam", + "name": "Pramiracetam", + "aliases": [], + "aliasesStr": "", + "summary": "A CNS stimulant that is a nootropic, that belongs to the racetam family of compounds. Much more potent than Piracetam while appearing to work on similar mechanisms.", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "not addictive with a low potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "racetam", + "nootropic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "100 mg" + }, + { + "name": "Light", + "value": "250-500 mg" + }, + { + "name": "Common", + "value": "500-800 mg" + }, + { + "name": "Strong", + "value": "800-1200 mg" + }, + { + "name": "Heavy", + "value": "1200 mg" + }, + { + "name": "Common", + "value": "400-1200 mg", + "note": " Note: Usually taken two or three times a day. So 400mg taken three times a day. Or 600mg three times a day." + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Total", + "value": "4-7 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-2 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "100 mg" + }, + { + "name": "Light", + "value": "250-500 mg" + }, + { + "name": "Common", + "value": "500-800 mg" + }, + { + "name": "Strong", + "value": "800-1200 mg" + }, + { + "name": "Heavy", + "value": "1200 mg" + }, + { + "name": "Common", + "value": "400-1200 mg", + "note": " Note: Usually taken two or three times a day. So 400mg taken three times a day. Or 600mg three times a day." + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Total", + "value": "4-7 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-2 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Nootropic" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Pregabalin", + "name": "Pregabalin", + "aliases": [ + "lyrica", + "pregablin" + ], + "aliasesStr": "lyrica, pregablin", + "summary": "Pregabalin (Lyrica) is a GABA derivative that is used to treat neuropathic pain and seizures, as well as anxiety.", + "toxicity": [ + "low toxicity" + ], + "tolerance": { + "full": "within several months of continuous use", + "half": null, + "zero": "7 - 14 days" + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 mg" + }, + { + "name": "Light", + "value": "50-225 mg" + }, + { + "name": "Common", + "value": "225-600 mg" + }, + { + "name": "Strong", + "value": "600-900 mg" + }, + { + "name": "Heavy", + "value": "900 mg" + }, + { + "name": "Light", + "value": "150-300 mg" + }, + { + "name": "Common", + "value": "300-600 mg" + }, + { + "name": "Strong", + "value": "600-900 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Peak", + "value": "4-6 hours" + }, + { + "name": "Offset", + "value": "4-8 hours" + }, + { + "name": "Afterglow", + "value": "4-10 hours" + }, + { + "name": "Total", + "value": "9-17 hours" + }, + { + "name": "Onset", + "value": "90-150 minutes" + }, + { + "name": "Duration", + "value": "6-14 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ], + "bioavailability": "90%" + }, + { + "name": "Rectal", + "dosage": [ + { + "name": "Threshold", + "value": "40 mg" + }, + { + "name": "Light", + "value": "40-200 mg" + }, + { + "name": "Common", + "value": "200-450 mg" + }, + { + "name": "Strong", + "value": "450-600 mg" + }, + { + "name": "Heavy", + "value": "600 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-120 minutes" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "3-5 hours" + }, + { + "name": "Afterglow", + "value": "6-12 hours" + }, + { + "name": "Total", + "value": "5-8 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 mg" + }, + { + "name": "Light", + "value": "50-225 mg" + }, + { + "name": "Common", + "value": "225-600 mg" + }, + { + "name": "Strong", + "value": "600-900 mg" + }, + { + "name": "Heavy", + "value": "900 mg" + }, + { + "name": "Light", + "value": "150-300 mg" + }, + { + "name": "Common", + "value": "300-600 mg" + }, + { + "name": "Strong", + "value": "600-900 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-2 hours" + }, + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Peak", + "value": "4-6 hours" + }, + { + "name": "Offset", + "value": "4-8 hours" + }, + { + "name": "Afterglow", + "value": "4-10 hours" + }, + { + "name": "Total", + "value": "9-17 hours" + }, + { + "name": "Onset", + "value": "90-150 minutes" + }, + { + "name": "Duration", + "value": "6-14 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ], + "bioavailability": "90%" + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Oxycodone" + }, + { + "status": "Caution", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Caution", + "name": "MDMA" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Prochlorperazine", + "name": "Prochlorperazine", + "aliases": [ + "Compazine", + "Stemzine", + "Buccastem", + "Stemetil", + "Phenotil" + ], + "aliasesStr": "Compazine, Stemzine, Buccastem, Stemetil, Phenotil", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "2.5-5 mg" + }, + { + "name": "Common", + "value": "5-20 mg" + }, + { + "name": "Strong", + "value": "20-40 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Total", + "value": "4-8 hours" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Prolintane", + "name": "Prolintane", + "aliases": [ + "catovit", + "promotil", + "villescon" + ], + "aliasesStr": "catovit, promotil, villescon", + "summary": "A stimulant drug which is a dopamine reuptake inhibitor, related to MDPV and Pyrovalerone. It was first developed in the 1950s, and has seen some light usage in rave culture, though it remains relatively uncommon. Believed to have a relatively forgiving safety profile.", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "15-25 mg" + }, + { + "name": "Common", + "value": "25-45 mg" + }, + { + "name": "Strong", + "value": "45-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + }, + { + "name": "Threshold", + "value": "5-10 mg" + }, + { + "name": "Light", + "value": "10-15 " + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-40 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "2-6 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "15-25 mg" + }, + { + "name": "Common", + "value": "25-45 mg" + }, + { + "name": "Strong", + "value": "45-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + }, + { + "name": "Threshold", + "value": "5-10 mg" + }, + { + "name": "Light", + "value": "10-15 " + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-40 minutes" + }, + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "2-6 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ], + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Promethazine", + "name": "Promethazine", + "aliases": [], + "aliasesStr": "", + "summary": "A first generation antihistamine, which also possesses anticholinergic, strong sedative and antipsychotic properties. Once commonly used as a treatment for psychosis, it is now more commonly seen as a component of codeine cough syrups as an anti-nausea agent.", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "12.5-25 mg" + }, + { + "name": "Common", + "value": "25-50 mg" + }, + { + "name": "Strong", + "value": "50-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + }, + { + "name": "Common", + "value": "25-75 mg", + "note": " NOTE: This is what is normally used in medicinal settings, and is usually what is prescribed to you, since it has anticholinergic properties; IE; Delirant." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-60 minutes" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "3-5 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "0-3 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "12.5-25 mg" + }, + { + "name": "Common", + "value": "25-50 mg" + }, + { + "name": "Strong", + "value": "50-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + }, + { + "name": "Common", + "value": "25-75 mg", + "note": " NOTE: This is what is normally used in medicinal settings, and is usually what is prescribed to you, since it has anticholinergic properties; IE; Delirant." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-60 minutes" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "3-5 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "0-3 hours" + } + ] + } + ], + "classes": { + "psychoactive": [], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Propylhexedrine", + "name": "Propylhexedrine", + "aliases": [ + "benzedrex", + "propylhexadrine", + "hexahdromethamphetamine" + ], + "aliasesStr": "benzedrex, propylhexadrine, hexahdromethamphetamine", + "summary": "A relatively common CNS stimulant sold over the counter in benzedrex inhalers.", + "tolerance": { + "full": "rapidly develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dopamine", + "stimulant" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "31.25-62.5 mg" + }, + { + "name": "Common", + "value": "62.5-125 mg" + }, + { + "name": "Strong", + "value": "125-187.5 mg" + }, + { + "name": "Heavy", + "value": "187.5 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-90 minutes" + }, + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Peak", + "value": "2-5 hours" + }, + { + "name": "Offset", + "value": "1-3 hours" + }, + { + "name": "Afterglow", + "value": "2-12 hours" + }, + { + "name": "Total", + "value": "4-10 hours" + }, + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-16 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "10-30 mg", + "note": " Note: Be aware of potency difference between pure HCl substance and cottons." + }, + { + "name": "Common", + "value": "30-75 mg", + "note": " Note: Be aware of potency difference between pure HCl substance and cottons." + }, + { + "name": "Strong", + "value": "75-100 mg", + "note": " Note: Be aware of potency difference between pure HCl substance and cottons." + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-10 minutes" + } + ] + }, + { + "name": "Insufflated(Pure)", + "dosage": [ + { + "name": "Light", + "value": "5-15 mg", + "note": " Note: Be aware of potency difference between pure HCl substance and cottons." + }, + { + "name": "Common", + "value": "15-30 mg", + "note": " Note: Be aware of potency difference between pure HCl substance and cottons." + }, + { + "name": "Strong", + "value": "30-50 mg", + "note": " Note: Be aware of potency difference between pure HCl substance and cottons." + } + ] + }, + { + "name": "Oral(Benzedrex)", + "dosage": [ + { + "name": "Light", + "value": "20-60 mg", + "note": " Note: Be aware of potency difference between pure HCl substance and cottons." + }, + { + "name": "Common", + "value": "60-125 mg", + "note": " Note: Be aware of potency difference between pure HCl substance and cottons." + }, + { + "name": "Strong", + "value": "125-250 mg", + "note": " Note: Be aware of potency difference between pure HCl substance and cottons." + }, + { + "name": "Heavy", + "value": "250 mg", + "note": " Note: Be aware of potency difference between pure HCl substance and cottons." + } + ] + }, + { + "name": "Oral(Pure)", + "dosage": [ + { + "name": "Light", + "value": "10-20 mg", + "note": " Note: Be aware of potency difference between pure HCl substance and cottons." + }, + { + "name": "Common", + "value": "20-50 mg", + "note": " Note: Be aware of potency difference between pure HCl substance and cottons." + }, + { + "name": "Strong", + "value": "50 mg", + "note": " Note: Be aware of potency difference between pure HCl substance and cottons." + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ], + "classes": { + "psychoactive": [ + "Habit Forming", + "Stimulant" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Proscaline", + "name": "Proscaline", + "aliases": [], + "aliasesStr": "", + "summary": "A very uncommon psychedelic stimulant and phenethylamine and analogue on mescaline with similar effects. Roughly 5-7 times more potent than mescaline by weight.", + "toxicity": [ + "no negative health effects attributed to trying this drug" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "15-30 mg" + }, + { + "name": "Common", + "value": "30-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + }, + { + "name": "Threshold", + "value": "15 mg" + }, + { + "name": "Light", + "value": "15-30 mg" + }, + { + "name": "Common", + "value": "30-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "3-5 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "15-30 mg" + }, + { + "name": "Common", + "value": "30-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + }, + { + "name": "Threshold", + "value": "15 mg" + }, + { + "name": "Light", + "value": "15-30 mg" + }, + { + "name": "Common", + "value": "30-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + } + ], + "duration": [ + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "3-5 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Psilocin", + "name": "Psilocin", + "aliases": [ + "4-ho-dmt", + "4-oh-dmt" + ], + "aliasesStr": "4-ho-dmt, 4-oh-dmt", + "summary": "Psilocin is a substutued tryptamine alkaloid, that is present in most psychedelic mushrooms. It is relatively unstable in solution due to the -OH group.", + "toxicity": [ + "extremely low toxicity" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1.5-3 hours" + }, + { + "name": "Onset", + "value": "20-45 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1.5-2 hours" + }, + { + "name": "Afterglow", + "value": "4-24 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "3-12 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "2.5-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-15 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1.5-3 hours" + }, + { + "name": "Onset", + "value": "20-45 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1.5-2 hours" + }, + { + "name": "Afterglow", + "value": "4-24 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "3-12 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Empathogen", + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Psilocybe_cubensis", + "name": "Psilocybe cubensis", + "aliases": [ + "Shrooms", + "Magic mushroom" + ], + "aliasesStr": "Shrooms, Magic mushroom" + }, + { + "url": "https://psychonautwiki.org/wiki/Psilocybin_mushrooms", + "name": "Psilocybin mushrooms", + "aliases": [ + "Psilocybin", + "Psilocybin mushrooms", + "Magic Mushrooms", + "Shrooms", + "4-PO-DMT" + ], + "aliasesStr": "Psilocybin, Psilocybin mushrooms, Magic Mushrooms, Shrooms, 4-PO-DMT", + "toxicity": [ + "extremely low toxicity relative to dose" + ], + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2.5 mg" + }, + { + "name": "Light", + "value": "2.5-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "25-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1-1.5 hours" + }, + { + "name": "Onset", + "value": "20-45 minutes" + }, + { + "name": "Peak", + "value": "2-2.5 hours" + }, + { + "name": "Offset", + "value": "2.5-3.5 hours" + }, + { + "name": "Afterglow", + "value": "4-24 hours" + }, + { + "name": "Total", + "value": "6-8 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Unsafe", + "name": "Lithium" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Psychedelic", + "name": "Psychedelic", + "toxicity": [ + "very low toxicity" + ], + "addictionPotential": "low abuse potential", + "tolerance": { + "full": "almost immediately after ingestion", + "half": null, + "zero": null + }, + "crossTolerances": [ + "psychedelics" + ], + "interactions": [ + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Unsafe", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Lithium" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Pyrazolam", + "name": "Pyrazolam", + "aliases": [], + "aliasesStr": "", + "summary": "RC benzodiazepine discovered by Hoffman-LaRoche in the 1970s. Came to the RC market in the early 2010s. At lower doses it is mainly an anxiolytic compound, yet at higher doses can be quite sedating, hypnotic, amnesic, and can cause loss of inhibitions. Structurally similar to Alprazolam, Bromazepam, and Triazolam. Is 12x as potent as Diazepam.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "tolerance": { + "full": "within a couple of days of continuous use", + "half": null, + "zero": "7 - 14 days" + }, + "crossTolerances": [ + "benzodiazepines" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-3 mg" + }, + { + "name": "Strong", + "value": "3-4 mg" + }, + { + "name": "Heavy", + "value": "4 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-3 mg" + }, + { + "name": "Strong", + "value": "3-4 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-15 minutes" + }, + { + "name": "Total", + "value": "5-8 hours" + }, + { + "name": "Onset", + "value": "10-15 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-3 mg" + }, + { + "name": "Strong", + "value": "3-4 mg" + }, + { + "name": "Heavy", + "value": "4 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-3 mg" + }, + { + "name": "Strong", + "value": "3-4 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-15 minutes" + }, + { + "name": "Total", + "value": "5-8 hours" + }, + { + "name": "Onset", + "value": "10-15 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Pyrazolam.shtml", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Research Chemical" + ], + "chemical": [ + "Benzodiazepine" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Quetiapine", + "name": "Quetiapine", + "aliases": [ + "seroquel" + ], + "aliasesStr": "seroquel", + "summary": "An atypical antipsychotic medication under the brand name Seroquel. Also used to treat insomnia and mood swings. This drug is very sedating and can stop/slow down psychedelic drug trips. Infrequently abused.", + "toxicity": [ + "low toxicity" + ], + "addictionPotential": "moderately physically and psychologically addictive", + "tolerance": { + "full": "within a week of continuous use", + "half": null, + "zero": "7 - 14 days" + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "25-50 mg" + }, + { + "name": "Common", + "value": "50-150 mg" + }, + { + "name": "Strong", + "value": "150-300 mg" + }, + { + "name": "Heavy", + "value": "300 mg" + }, + { + "name": "Light", + "value": "25 mg" + }, + { + "name": "Common", + "value": "50 mg" + }, + { + "name": "Strong", + "value": "150 mg" + }, + { + "name": "Heavy", + "value": "300 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "1.5-6 hours" + }, + { + "name": "Offset", + "value": "6-7 hours" + }, + { + "name": "Afterglow", + "value": "24-48 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "IR minutes" + }, + { + "name": "Duration", + "value": "7-12 hours" + }, + { + "name": "After Effects", + "value": "Can hours" + } + ], + "bioavailability": "100%" + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "25-50 mg" + }, + { + "name": "Common", + "value": "50-150 mg" + }, + { + "name": "Strong", + "value": "150-300 mg" + }, + { + "name": "Heavy", + "value": "300 mg" + }, + { + "name": "Light", + "value": "25 mg" + }, + { + "name": "Common", + "value": "50 mg" + }, + { + "name": "Strong", + "value": "150 mg" + }, + { + "name": "Heavy", + "value": "300 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Peak", + "value": "1.5-6 hours" + }, + { + "name": "Offset", + "value": "6-7 hours" + }, + { + "name": "Afterglow", + "value": "24-48 hours" + }, + { + "name": "Total", + "value": "4-8 hours" + }, + { + "name": "Onset", + "value": "IR minutes" + }, + { + "name": "Duration", + "value": "7-12 hours" + }, + { + "name": "After Effects", + "value": "Can hours" + } + ], + "bioavailability": "100%" + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Dangerous", + "name": "Depressant" + } + ], + "classes": { + "psychoactive": [ + "Depressant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/RIMA", + "name": "RIMA", + "interactions": [ + { + "status": "Caution", + "name": "2C-T-x" + }, + { + "status": "Caution", + "name": "2C-x" + }, + { + "status": "Caution", + "name": "DOx" + }, + { + "status": "Caution", + "name": "Ketamine" + }, + { + "status": "Caution", + "name": "Mescaline" + }, + { + "status": "Caution", + "name": "25x-NBOMe" + }, + { + "status": "Caution", + "name": "Opioids" + }, + { + "status": "Unsafe", + "name": "Alcohol" + }, + { + "status": "Unsafe", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "5-MeO-xxT" + }, + { + "status": "Dangerous", + "name": "Substituted amphetamines" + }, + { + "status": "Dangerous", + "name": "ΑMT" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "MDMA" + }, + { + "status": "Dangerous", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "Tramadol" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Racetams", + "name": "Racetams" + }, + { + "url": "https://psychonautwiki.org/wiki/Risperidone", + "name": "Risperidone", + "aliases": [ + "Risperdal" + ], + "aliasesStr": "Risperdal", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.25 mg" + }, + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-3 mg" + }, + { + "name": "Strong", + "value": "3-6 mg" + }, + { + "name": "Heavy", + "value": "6 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Peak", + "value": "2-8 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "12-20 hours" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Rolicyclidine", + "name": "Rolicyclidine", + "aliases": [ + "pcpy" + ], + "aliasesStr": "pcpy", + "summary": "Rolicyclidine, also known as PCPy, is a dissociative with effects similar to PCP. While this dissociative anesthetic has hallucinogenic and sedative effects, it is said to be much less stimulating than PCP. In this sense it is more similar to opioids, or other central nervous system depressants.", + "addictionPotential": "highly addictive with a high potential for adverse side effects such as psychosis", + "tolerance": { + "full": "with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "dissociative|dissociatives" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-9 mg" + }, + { + "name": "Strong", + "value": "9-13 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-8 mg" + }, + { + "name": "Strong", + "value": "8 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-120 minutes" + }, + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "3-4 hours" + }, + { + "name": "Afterglow", + "value": "12-48 hours" + }, + { + "name": "Total", + "value": "6-12 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "2-6 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-8 mg" + }, + { + "name": "Strong", + "value": "8-15 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-90 minutes" + }, + { + "name": "Onset", + "value": "3-30 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + }, + { + "name": "Onset", + "value": "30 minutes" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-8 mg" + }, + { + "name": "Strong", + "value": "8-12 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-40 minutes" + }, + { + "name": "Onset", + "value": "2-20 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "4-48 hours" + }, + { + "name": "Total", + "value": "4-6 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-9 mg" + }, + { + "name": "Strong", + "value": "9-13 mg" + }, + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-8 mg" + }, + { + "name": "Strong", + "value": "8 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-120 minutes" + }, + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Peak", + "value": "2-3 hours" + }, + { + "name": "Offset", + "value": "3-4 hours" + }, + { + "name": "Afterglow", + "value": "12-48 hours" + }, + { + "name": "Total", + "value": "6-12 hours" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "2-6 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Caffeine" + }, + { + "status": "Unsafe", + "name": "DOx" + }, + { + "status": "Unsafe", + "name": "Substituted amphetamines" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Cocaine" + }, + { + "status": "Unsafe", + "name": "Alcohol" + }, + { + "status": "Unsafe", + "name": "Benzodiazepines" + }, + { + "status": "Unsafe", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "2C-T-x" + }, + { + "status": "Dangerous", + "name": "ΑMT" + }, + { + "status": "Dangerous", + "name": "5-MeO-xxT" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Opioids" + } + ], + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/SAM-e", + "name": "SAM-e", + "aliases": [ + "S-Adenosyl Methionine", + "SAM-e", + "Methylguanidoacetic Acid" + ], + "aliasesStr": "S-Adenosyl Methionine, SAM-e, Methylguanidoacetic Acid", + "addictionPotential": "not habit-forming with a low potential for abuse", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "200 mg" + }, + { + "name": "Light", + "value": "400-800 mg" + }, + { + "name": "Common", + "value": "800-1200 mg" + }, + { + "name": "Strong", + "value": "1200-1600 mg" + }, + { + "name": "Heavy", + "value": "1600 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "100-180 minutes" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/STS-135", + "name": "STS-135", + "aliases": [ + "STS-135" + ], + "aliasesStr": "STS-135", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "cannabinoids" + ], + "roas": [ + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "0.5-1.5 mg" + }, + { + "name": "Common", + "value": "1.5-2 mg" + }, + { + "name": "Strong", + "value": "2-4 mg" + }, + { + "name": "Heavy", + "value": "4 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "10-45 minutes" + }, + { + "name": "Onset", + "value": "10-45 seconds" + }, + { + "name": "Peak", + "value": "10-30 minutes" + }, + { + "name": "Offset", + "value": "5-10 minutes" + }, + { + "name": "Afterglow", + "value": "15-45 minutes" + }, + { + "name": "Total", + "value": "30-60 minutes" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "2C-T-x" + }, + { + "status": "Caution", + "name": "2C-x" + }, + { + "status": "Caution", + "name": "5-MeO-xxT" + }, + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "ΑMT" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Caution", + "name": "DMT" + }, + { + "status": "Caution", + "name": "DOx" + }, + { + "status": "Caution", + "name": "LSD" + }, + { + "status": "Caution", + "name": "Mescaline" + }, + { + "status": "Caution", + "name": "Psilocybin mushrooms" + }, + { + "status": "Caution", + "name": "25x-NBOMe" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Salvia_divinorum", + "name": "Salvia divinorum", + "aliases": [ + "Salvia", + "Sage of the Diviners", + "ska maría pastora", + "seer's sage", + "yerba de la pastora", + "Sally" + ], + "aliasesStr": "Salvia, Sage of the Diviners, ska maría pastora, seer's sage, yerba de la pastora, Sally" + }, + { + "url": "https://psychonautwiki.org/wiki/Salvinorin_A", + "name": "Salvinorin A", + "aliases": [ + "Salvia", + "Salvia divinorum", + "Diviner's Sage", + "Ska María Pastora", + "Seer's Sage", + "Sally" + ], + "aliasesStr": "Salvia, Salvia divinorum, Diviner's Sage, Ska María Pastora, Seer's Sage, Sally", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "crossTolerances": [ + "hallucinogen" + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Salvinorin_B_methoxymethyl_ether", + "name": "Salvinorin B methoxymethyl ether" + }, + { + "url": "https://psychonautwiki.org/wiki/Secobarbital", + "name": "Secobarbital", + "aliases": [ + "seconal" + ], + "aliasesStr": "seconal", + "summary": "A Barbiturate derivative that possesses all the classic effects of todays Benzodiazepines, and the old Barbiturates. It's used in the treatment of Epilepsy, short term treatment for insomnia, and a preoperative medication for anaesthesia and anxiolysis for short surgical/diagnostic/therapeutic procedures.", + "toxicity": [ + "moderate toxicity" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "25-50 mg" + }, + { + "name": "Common", + "value": "50-150 mg" + }, + { + "name": "Strong", + "value": "150-300 mg" + }, + { + "name": "Light", + "value": "25-50 mg" + }, + { + "name": "Common", + "value": "50-150 mg" + }, + { + "name": "Strong", + "value": "150-300 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Peak", + "value": "4-8 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "1-24 hours" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "6-10 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "25-50 mg" + }, + { + "name": "Common", + "value": "50-150 mg" + }, + { + "name": "Strong", + "value": "150-300 mg" + }, + { + "name": "Light", + "value": "25-50 mg" + }, + { + "name": "Common", + "value": "50-150 mg" + }, + { + "name": "Strong", + "value": "150-300 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Peak", + "value": "4-8 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "1-24 hours" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "6-10 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Barbiturate" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Sedative", + "name": "Sedative" + }, + { + "url": "https://psychonautwiki.org/wiki/Selective_serotonin_reuptake_inhibitor", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "url": "https://psychonautwiki.org/wiki/Serotonergic_psychedelic", + "name": "Serotonergic psychedelic" + }, + { + "url": "https://psychonautwiki.org/wiki/Serotonin", + "name": "Serotonin" + }, + { + "url": "https://psychonautwiki.org/wiki/Serotonin-norepinephrine_reuptake_inhibitor", + "name": "Serotonin-norepinephrine reuptake inhibitor" + }, + { + "url": "https://psychonautwiki.org/wiki/Stimulants", + "name": "Stimulants" + }, + { + "url": "https://psychonautwiki.org/wiki/Substituted_aminorexes", + "name": "Substituted aminorexes" + }, + { + "url": "https://psychonautwiki.org/wiki/Substituted_amphetamines", + "name": "Substituted amphetamines" + }, + { + "url": "https://psychonautwiki.org/wiki/Substituted_cathinones", + "name": "Substituted cathinones" + }, + { + "url": "https://psychonautwiki.org/wiki/Substituted_morphinans", + "name": "Substituted morphinans" + }, + { + "url": "https://psychonautwiki.org/wiki/Substituted_phenethylamines", + "name": "Substituted phenethylamines" + }, + { + "url": "https://psychonautwiki.org/wiki/Substituted_phenidates", + "name": "Substituted phenidates" + }, + { + "url": "https://psychonautwiki.org/wiki/Substituted_tryptamines", + "name": "Substituted tryptamines" + }, + { + "url": "https://psychonautwiki.org/wiki/Sufentanil", + "name": "Sufentanil", + "aliases": [], + "aliasesStr": "", + "summary": "An synthetic analgesic drug that is roughly between 5-10x the potency of it's parent drug, (Fentanyl); It's use is very contained to surgery and post-operative pain.", + "roas": [ + { + "name": "Intravenous", + "dosage": [ + { + "name": "Threshold", + "value": "0.1 μg" + }, + { + "name": "Light", + "value": "1-5 μg" + }, + { + "name": "Common", + "value": "5-10 μg" + }, + { + "name": "Strong", + "value": "10-25 μg" + }, + { + "name": "Heavy", + "value": "25 μg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-2 minutes" + }, + { + "name": "Peak", + "value": "5-10 minutes" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "1-5 ug" + }, + { + "name": "Common", + "value": "5-10 ug" + }, + { + "name": "Strong", + "value": "10-25 ug" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-2 minutes" + }, + { + "name": "Duration", + "value": "5-10 minutes" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Synthetic_cannabinoid", + "name": "Synthetic cannabinoid", + "addictionPotential": "moderately addictive with a high potential for abuse", + "interactions": [ + { + "status": "Caution", + "name": "2C-T-x" + }, + { + "status": "Caution", + "name": "2C-x" + }, + { + "status": "Caution", + "name": "5-MeO-xxT" + }, + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "ΑMT" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Caution", + "name": "DMT" + }, + { + "status": "Caution", + "name": "DOx" + }, + { + "status": "Caution", + "name": "LSD" + }, + { + "status": "Caution", + "name": "Mescaline" + }, + { + "status": "Caution", + "name": "Psilocybin mushrooms" + }, + { + "status": "Caution", + "name": "25x-NBOMe" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/THJ-018", + "name": "THJ-018", + "aliases": [ + "THJ-018" + ], + "aliasesStr": "THJ-018", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "cannabinoids" + ], + "roas": [ + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "1-2 mg" + }, + { + "name": "Common", + "value": "2-3 mg" + }, + { + "name": "Strong", + "value": "3-5 mg" + }, + { + "name": "Heavy", + "value": "5 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Peak", + "value": "60-90 minutes" + }, + { + "name": "Offset", + "value": "5-10 minutes" + }, + { + "name": "Afterglow", + "value": "60-90 minutes" + }, + { + "name": "Total", + "value": "2-3 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "2C-T-x" + }, + { + "status": "Caution", + "name": "2C-x" + }, + { + "status": "Caution", + "name": "5-MeO-xxT" + }, + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "ΑMT" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Caution", + "name": "DMT" + }, + { + "status": "Caution", + "name": "DOx" + }, + { + "status": "Caution", + "name": "LSD" + }, + { + "status": "Caution", + "name": "Mescaline" + }, + { + "status": "Caution", + "name": "Psilocybin mushrooms" + }, + { + "status": "Caution", + "name": "25x-NBOMe" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/THJ-2201", + "name": "THJ-2201", + "aliases": [ + "THJ-2201" + ], + "aliasesStr": "THJ-2201", + "toxicity": [ + "exact toxic dosage is unknown" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "cannabinoids" + ], + "roas": [ + { + "name": "Smoked", + "dosage": [ + { + "name": "Threshold", + "value": "0.5 mg" + }, + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Strong", + "value": "2-5 mg" + }, + { + "name": "Heavy", + "value": "5 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Peak", + "value": "30-45 minutes" + }, + { + "name": "Afterglow", + "value": "60-90 minutes" + }, + { + "name": "Total", + "value": "1-2 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "2C-T-x" + }, + { + "status": "Caution", + "name": "2C-x" + }, + { + "status": "Caution", + "name": "5-MeO-xxT" + }, + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "ΑMT" + }, + { + "status": "Caution", + "name": "Cocaine" + }, + { + "status": "Caution", + "name": "DMT" + }, + { + "status": "Caution", + "name": "DOx" + }, + { + "status": "Caution", + "name": "LSD" + }, + { + "status": "Caution", + "name": "Mescaline" + }, + { + "status": "Caution", + "name": "Psilocybin mushrooms" + }, + { + "status": "Caution", + "name": "25x-NBOMe" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/TMA", + "name": "TMA", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "40 70" + }, + { + "name": "Light", + "value": "70-140 70" + }, + { + "name": "Common", + "value": "140-170 70" + }, + { + "name": "Strong", + "value": "170-200 70" + }, + { + "name": "Heavy", + "value": "200 70" + } + ], + "duration": [ + { + "name": "Total", + "value": "6-12 hours" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/TMA-2", + "name": "TMA-2", + "aliases": [], + "aliasesStr": "", + "summary": "Trimethoxyamphetamine-2, a psychedelic amphetamine and stimulant first synthesised by Alexander Shulgin. An uncommon compound of similar activity to other psychedelic amphetamines. Short history of human use.", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + }, + { + "name": "Threshold", + "value": "5-10 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1.5-3 hours" + }, + { + "name": "Onset", + "value": "20-120 minutes" + }, + { + "name": "Peak", + "value": "4-6 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "4-24 hours" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "20-120 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "Possibility hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + }, + { + "name": "Threshold", + "value": "5-10 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1.5-3 hours" + }, + { + "name": "Onset", + "value": "20-120 minutes" + }, + { + "name": "Peak", + "value": "4-6 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Afterglow", + "value": "4-24 hours" + }, + { + "name": "Total", + "value": "8-12 hours" + }, + { + "name": "Onset", + "value": "20-120 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "Possibility hours" + } + ] + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_TMA2.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/TMA-6", + "name": "TMA-6", + "aliases": [], + "aliasesStr": "", + "summary": "A rarely seen Psychedelic Amphetamine and Mescaline analogue. First synthesised by Alexander Shulgin, who descrived it as \"one of the most rewarding and pleasurable of the methoxylated amphetamines.\"", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-35 mg" + }, + { + "name": "Strong", + "value": "35-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Threshold", + "value": "15-20 mg" + }, + { + "name": "Light", + "value": "20-30 mg" + }, + { + "name": "Common", + "value": "30-40 mg" + }, + { + "name": "Heavy", + "value": "40-50 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1.5-3 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Peak", + "value": "5-8 hours" + }, + { + "name": "Offset", + "value": "3-5 hours" + }, + { + "name": "Afterglow", + "value": "6-18 hours" + }, + { + "name": "Total", + "value": "10-16 hours" + }, + { + "name": "Onset", + "value": "60 minutes" + }, + { + "name": "Duration", + "value": "10-18 hours" + }, + { + "name": "After Effects", + "value": "Possibility hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-35 mg" + }, + { + "name": "Strong", + "value": "35-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Threshold", + "value": "15-20 mg" + }, + { + "name": "Light", + "value": "20-30 mg" + }, + { + "name": "Common", + "value": "30-40 mg" + }, + { + "name": "Heavy", + "value": "40-50 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "1.5-3 hours" + }, + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Peak", + "value": "5-8 hours" + }, + { + "name": "Offset", + "value": "3-5 hours" + }, + { + "name": "Afterglow", + "value": "6-18 hours" + }, + { + "name": "Total", + "value": "10-16 hours" + }, + { + "name": "Onset", + "value": "60 minutes" + }, + { + "name": "Duration", + "value": "10-18 hours" + }, + { + "name": "After Effects", + "value": "Possibility hours" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_TMA6.shtml", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Tabernanthe_iboga_(botany)", + "name": "Tabernanthe iboga (botany)" + }, + { + "url": "https://psychonautwiki.org/wiki/Tapentadol", + "name": "Tapentadol", + "aliases": [], + "aliasesStr": "", + "summary": "An opioid analgesic drug with potency somewhere between tramadol and morphine, and with a similar action to Tramadol. Also an adrenergic reuptake inhibitor. High addiction potential. Potential for respiratory depression in overdose. Should not be combined with depressants or stimulants.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or benzodiazepines" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "opioids" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "12.5 mg" + }, + { + "name": "Light", + "value": "25-50 mg" + }, + { + "name": "Common", + "value": "50-75 mg" + }, + { + "name": "Strong", + "value": "75-150 mg" + }, + { + "name": "Heavy", + "value": "150 mg" + }, + { + "name": "Light", + "value": "25-50 mg", + "note": " NOTE: Doses are for no tolerance. Insufflated administration is ineffective." + }, + { + "name": "Common", + "value": "50-75 mg", + "note": " NOTE: Doses are for no tolerance. Insufflated administration is ineffective." + }, + { + "name": "Strong", + "value": "75-150 mg", + "note": " NOTE: Doses are for no tolerance. Insufflated administration is ineffective." + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "4-6 hours" + }, + { + "name": "Afterglow", + "value": "1-6 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "12.5 mg" + }, + { + "name": "Light", + "value": "25-50 mg" + }, + { + "name": "Common", + "value": "50-75 mg" + }, + { + "name": "Strong", + "value": "75-150 mg" + }, + { + "name": "Heavy", + "value": "150 mg" + }, + { + "name": "Light", + "value": "25-50 mg", + "note": " NOTE: Doses are for no tolerance. Insufflated administration is ineffective." + }, + { + "name": "Common", + "value": "50-75 mg", + "note": " NOTE: Doses are for no tolerance. Insufflated administration is ineffective." + }, + { + "name": "Strong", + "value": "75-150 mg", + "note": " NOTE: Doses are for no tolerance. Insufflated administration is ineffective." + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "4-6 hours" + }, + { + "name": "Afterglow", + "value": "1-6 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "SNRIs" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "Serotonin" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "5-Hydroxytryptophan" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Tapentadol.shtml", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Temazepam", + "name": "Temazepam", + "aliases": [ + "restoril" + ], + "aliasesStr": "restoril", + "summary": "Temazepam's brand name is Restoril. It is a hypnotic benzodiazepine with effects similar to clonazepam, frequently prescribed as a sleep aid. Some users report mild euphoria alongside the hypnotic effects.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "tolerance": { + "full": "within a couple of days of continuous use", + "half": null, + "zero": "7-14 days" + }, + "crossTolerances": [ + "benzodiazepines" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-30 mg" + }, + { + "name": "Strong", + "value": "30-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-40 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Afterglow", + "value": "3.5-18.4 hours" + }, + { + "name": "Total", + "value": "0.5-3 hours" + }, + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Duration", + "value": "6-10 hours" + }, + { + "name": "After Effects", + "value": "6-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-30 mg" + }, + { + "name": "Strong", + "value": "30-40 mg" + }, + { + "name": "Heavy", + "value": "40 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-40 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Afterglow", + "value": "3.5-18.4 hours" + }, + { + "name": "Total", + "value": "0.5-3 hours" + }, + { + "name": "Onset", + "value": "20-90 minutes" + }, + { + "name": "Duration", + "value": "6-10 hours" + }, + { + "name": "After Effects", + "value": "6-12 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Theacrine", + "name": "Theacrine", + "aliases": [], + "aliasesStr": "", + "summary": "Small alkaloid which can be seen as a structurally modified version of caffeine, with similar stimulating effects. It also shares anti-inflammatory and analgesic effects with caffeine.", + "addictionPotential": "produces dependence with chronic use and has a low abuse potential", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "150-300 mg" + }, + { + "name": "Heavy", + "value": "300 mg" + }, + { + "name": "Light", + "value": "10-25 mg" + }, + { + "name": "Common", + "value": "25-50 mg" + }, + { + "name": "Strong", + "value": "50-100 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "2-6 hours" + } + ] + }, + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "25 mg" + }, + { + "name": "Common", + "value": "25-100 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-30 minutes" + }, + { + "name": "Total", + "value": "1-3 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 mg" + }, + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "150-300 mg" + }, + { + "name": "Heavy", + "value": "300 mg" + }, + { + "name": "Light", + "value": "10-25 mg" + }, + { + "name": "Common", + "value": "25-50 mg" + }, + { + "name": "Strong", + "value": "50-100 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "2-6 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Nootropic", + "Stimulant" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Theanine", + "name": "Theanine", + "aliases": [ + "Theanine", + "L-Theanine", + "L-γ-glutamylethylamide and N5-ethyl-L-glutamine" + ], + "aliasesStr": "Theanine, L-Theanine, L-γ-glutamylethylamide and N5-ethyl-L-glutamine", + "toxicity": [ + "extremely low toxicity" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "after prolonged and repeated usage", + "half": "5 days", + "zero": "10 days" + }, + "crossTolerances": [], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 mg" + }, + { + "name": "Light", + "value": "75-175 mg" + }, + { + "name": "Common", + "value": "175-300 mg" + }, + { + "name": "Strong", + "value": "300-500 mg" + }, + { + "name": "Heavy", + "value": "500 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Peak", + "value": "1-3 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + } + ] + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Thebaine", + "name": "Thebaine" + }, + { + "url": "https://psychonautwiki.org/wiki/Thienodiazepines", + "name": "Thienodiazepines" + }, + { + "url": "https://psychonautwiki.org/wiki/Tianeptine", + "name": "Tianeptine", + "aliases": [], + "aliasesStr": "", + "summary": "A Tricyclic antidepressant, that has quite unique pharmacological properties than others in its class. Such as the possible indirect action on NMDA/AMPA and a full agonist at the μ-opioid receptor. While abuse of this substance is uncommon, it has been shown in a few countries.", + "toxicity": [ + "large therapeutic index and margin of safety" + ], + "addictionPotential": "mildly addictive", + "tolerance": { + "full": "with prolonged use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "trycyclic antidepressants", + "opioids" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "6-12 mg" + }, + { + "name": "Common", + "value": "12-35 mg" + }, + { + "name": "Strong", + "value": "35-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + }, + { + "name": "Light", + "value": "7.5 mg", + "note": "Tianeptine" + }, + { + "name": "Common", + "value": "12.5 mg", + "note": "Tianeptine" + }, + { + "name": "Strong", + "value": "17 mg", + "note": "Tianeptine" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-30 minutes" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "60-90 minutes" + }, + { + "name": "Offset", + "value": "30-60 minutes" + }, + { + "name": "Total", + "value": "2-3 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3 mg" + }, + { + "name": "Light", + "value": "6-12 mg" + }, + { + "name": "Common", + "value": "12-35 mg" + }, + { + "name": "Strong", + "value": "35-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + }, + { + "name": "Light", + "value": "7.5 mg", + "note": "Tianeptine" + }, + { + "name": "Common", + "value": "12.5 mg", + "note": "Tianeptine" + }, + { + "name": "Strong", + "value": "17 mg", + "note": "Tianeptine" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-30 minutes" + }, + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Peak", + "value": "60-90 minutes" + }, + { + "name": "Offset", + "value": "30-60 minutes" + }, + { + "name": "Total", + "value": "2-3 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Tilidin", + "name": "Tilidin", + "aliases": [ + "Tilidine", + "Tilidin", + "Darby", + "Valoron", + "Generika" + ], + "aliasesStr": "Tilidine, Tilidin, Darby, Valoron, Generika", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 mg" + }, + { + "name": "Light", + "value": "25-50 mg" + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-150 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "20-40 minutes" + }, + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "30-60 minutes" + }, + { + "name": "Afterglow", + "value": "1-12 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Tizanidine", + "name": "Tizanidine", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 μg" + }, + { + "name": "Light", + "value": "2-3 μg" + }, + { + "name": "Common", + "value": "4-5 μg" + }, + { + "name": "Strong", + "value": "6-8 μg" + }, + { + "name": "Heavy", + "value": "8 μg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "60-120 minutes" + }, + { + "name": "Total", + "value": "2-6 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "Depressant" + }, + { + "status": "Dangerous", + "name": "Dissociatives" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/Tramadol", + "name": "Tramadol", + "aliases": [ + "tram" + ], + "aliasesStr": "tram", + "summary": "A synthetic opioid analgesic, tramadol is used to treat moderate pain and can be considered a medium-strength opioid. Tramadol also has the unusual effect of being a serotonin releasing agent and a serotonin reuptake inhibitor, and as a consequence should not be taken in excess due to the risk of serotonin syndrome. Risk of seizures above 300mg doses.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or benzodiazepines" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "opioids" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 mg" + }, + { + "name": "Light", + "value": "25-100 mg" + }, + { + "name": "Common", + "value": "100-250 mg" + }, + { + "name": "Strong", + "value": "250-300 mg" + }, + { + "name": "Heavy", + "value": "300 mg" + }, + { + "name": "Light", + "value": "50-100 mg", + "note": " NOTE: Tramadol has a ceiling dose, where recreational effects are not increased. Risk of seizure at doses over 300mg. Tramadol decreases the seizure threshold, use extreme caution. Dosing insufflated is ineffective." + }, + { + "name": "Common", + "value": "100-250 mg", + "note": " NOTE: Tramadol has a ceiling dose, where recreational effects are not increased. Risk of seizure at doses over 300mg. Tramadol decreases the seizure threshold, use extreme caution. Dosing insufflated is ineffective." + }, + { + "name": "Heavy", + "value": "250-400 mg", + "note": " NOTE: Tramadol has a ceiling dose, where recreational effects are not increased. Risk of seizure at doses over 300mg. Tramadol decreases the seizure threshold, use extreme caution. Dosing insufflated is ineffective." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Peak", + "value": "2-6 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "1 hours" + }, + { + "name": "Duration", + "value": "5-7 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ], + "bioavailability": "90%" + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "25 mg" + }, + { + "name": "Light", + "value": "25-100 mg" + }, + { + "name": "Common", + "value": "100-250 mg" + }, + { + "name": "Strong", + "value": "250-300 mg" + }, + { + "name": "Heavy", + "value": "300 mg" + }, + { + "name": "Light", + "value": "50-100 mg", + "note": " NOTE: Tramadol has a ceiling dose, where recreational effects are not increased. Risk of seizure at doses over 300mg. Tramadol decreases the seizure threshold, use extreme caution. Dosing insufflated is ineffective." + }, + { + "name": "Common", + "value": "100-250 mg", + "note": " NOTE: Tramadol has a ceiling dose, where recreational effects are not increased. Risk of seizure at doses over 300mg. Tramadol decreases the seizure threshold, use extreme caution. Dosing insufflated is ineffective." + }, + { + "name": "Heavy", + "value": "250-400 mg", + "note": " NOTE: Tramadol has a ceiling dose, where recreational effects are not increased. Risk of seizure at doses over 300mg. Tramadol decreases the seizure threshold, use extreme caution. Dosing insufflated is ineffective." + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-60 minutes" + }, + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Peak", + "value": "2-6 hours" + }, + { + "name": "Offset", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "6-10 hours" + }, + { + "name": "Onset", + "value": "1 hours" + }, + { + "name": "Duration", + "value": "5-7 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ], + "bioavailability": "90%" + } + ], + "interactions": [ + { + "status": "Unsafe", + "name": "2c-t-x" + }, + { + "status": "Unsafe", + "name": "2c-x", + "note": "Tramadol is well known to lower seizure threshold and psychedelics raise the risk of seizures." + }, + { + "status": "Unsafe", + "name": "5-meo-xxt" + }, + { + "status": "Dangerous", + "name": "alcohol", + "note": "Heavy CNS depressants, risk of seizures. Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place affected patients in the recovery position to prevent vomit aspiration from excess. Memory blackouts are likely." + }, + { + "status": "Dangerous", + "name": "amphetamines", + "note": "Tramadol and stimulants both increase the risk of seizures." + }, + { + "status": "Dangerous", + "name": "amt" + }, + { + "status": "Dangerous", + "name": "benzodiazepines", + "note": "Central nervous system- and/or respiratory-depressant effects may be additively or synergistically present. Vomit aspiration a risk when passed out, lay down in recovery position if ingested." + }, + { + "status": "Dangerous", + "name": "benzos", + "note": "Central nervous system- and/or respiratory-depressant effects may be additively or synergistically present. Vomit aspiration a risk when passed out, lay down in recovery position if ingested." + }, + { + "status": "Low Risk & No Synergy", + "name": "caffeine" + }, + { + "status": "Low Risk & Synergy", + "name": "cannabis" + }, + { + "status": "Dangerous", + "name": "cocaine", + "note": "Tramadol and stimulants both increase the risk of seizures." + }, + { + "status": "Unsafe", + "name": "dmt", + "note": "Tramadol is well known to lower seizure threshold and psychedelics also cause occasional seizures." + }, + { + "status": "Unsafe", + "name": "dox", + "note": "Tramadol is well known to lower seizure threshold and psychedelics also cause occasional seizures." + }, + { + "status": "Dangerous", + "name": "dxm" + }, + { + "status": "Dangerous", + "name": "ghb/gbl", + "note": "The sedative effects of this combination can lead to dangerous respiratory depression." + }, + { + "status": "Dangerous", + "name": "ketamine" + }, + { + "status": "Unsafe", + "name": "lsd", + "note": "Tramadol is well known to lower seizure threshold and psychedelics also cause occasional seizures." + }, + { + "status": "Dangerous", + "name": "maois" + }, + { + "status": "Dangerous", + "name": "mdma", + "note": "Tramadol and stimulants both increase the risk of seizures." + }, + { + "status": "Unsafe", + "name": "mescaline", + "note": "This combination can cause seizures due to the lowering of the threshold by tramadol and the potential of mescaline to cause seziures." + }, + { + "status": "Unsafe", + "name": "mushrooms", + "note": "Tramadol is well known to lower seizure threshold and psychedelics also cause occasional seizures." + }, + { + "status": "Dangerous", + "name": "mxe" + }, + { + "status": "Unsafe", + "name": "nbomes", + "note": "Tramadol is well known to lower seizure threshold and NBOMes have also shown a tendency to cause severe seizures" + }, + { + "status": "Caution", + "name": "nitrous", + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely." + }, + { + "status": "Dangerous", + "name": "opioids", + "note": "Concomitant use of tramadol increases the seizure risk in patients taking other opioids. These agents are often individually epileptogenic and may have additive effects on seizure threshold during coadministration. Central nervous system- and/or respiratory-depressant effects may be additively or synergistically present" + }, + { + "status": "Dangerous", + "name": "pcp" + }, + { + "status": "Dangerous", + "name": "ssris" + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Triazolam", + "name": "Triazolam", + "aliases": [ + "halcion" + ], + "aliasesStr": "halcion", + "summary": "An uncommon and very short acting benzodiazepine. Sedating and hypnotic, and may induce amnesia and lowered inhibitions at high doses.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "tolerance": { + "full": "within a couple of days of continuous use", + "half": null, + "zero": "7 - 14 days" + }, + "crossTolerances": [ + "benzodiazepines" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.125 mg" + }, + { + "name": "Light", + "value": "0.125-0.25 mg" + }, + { + "name": "Common", + "value": "0.25-0.5 mg" + }, + { + "name": "Strong", + "value": "0.5-0.75 mg" + }, + { + "name": "Heavy", + "value": "0.75 mg" + }, + { + "name": "Light", + "value": "0.125-0.25 mg" + }, + { + "name": "Common", + "value": "0.25-0.5 mg" + }, + { + "name": "Strong", + "value": "0.5-1.5 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-30 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "1-3 hours" + }, + { + "name": "Afterglow", + "value": "1-12 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "10-20 minutes" + }, + { + "name": "Duration", + "value": "4-7 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.125 mg" + }, + { + "name": "Light", + "value": "0.125-0.25 mg" + }, + { + "name": "Common", + "value": "0.25-0.5 mg" + }, + { + "name": "Strong", + "value": "0.5-0.75 mg" + }, + { + "name": "Heavy", + "value": "0.75 mg" + }, + { + "name": "Light", + "value": "0.125-0.25 mg" + }, + { + "name": "Common", + "value": "0.25-0.5 mg" + }, + { + "name": "Strong", + "value": "0.5-1.5 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-30 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Offset", + "value": "1-3 hours" + }, + { + "name": "Afterglow", + "value": "1-12 hours" + }, + { + "name": "Total", + "value": "3-6 hours" + }, + { + "name": "Onset", + "value": "10-20 minutes" + }, + { + "name": "Duration", + "value": "4-7 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Tryptamine_(compound)", + "name": "Tryptamine (compound)" + }, + { + "url": "https://psychonautwiki.org/wiki/Tyrosine", + "name": "Tyrosine", + "aliases": [ + "Tyrosine", + "L-Tyrosine", + "4-Hydroxyphenylalanine" + ], + "aliasesStr": "Tyrosine, L-Tyrosine, 4-Hydroxyphenylalanine", + "toxicity": [ + "extremely low toxicity" + ], + "addictionPotential": "mildly habit forming", + "tolerance": { + "full": "after repeated and frequent usage", + "half": "7 days", + "zero": "14 days" + }, + "crossTolerances": [ + "dopamine" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "300 mg" + }, + { + "name": "Light", + "value": "500-1000 mg" + }, + { + "name": "Common", + "value": "1000-2000 mg" + }, + { + "name": "Strong", + "value": "2000-3000 mg" + }, + { + "name": "Heavy", + "value": "3000 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Peak", + "value": "1-3 hours" + }, + { + "name": "Afterglow", + "value": "6-12 hours" + }, + { + "name": "Total", + "value": "2-4 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Methoxetamine" + }, + { + "status": "Caution", + "name": "Dissociatives" + }, + { + "status": "Unsafe", + "name": "Dextromethorphan" + }, + { + "status": "Unsafe", + "name": "MDMA" + }, + { + "status": "Unsafe", + "name": "Stimulants" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "25x-NBOH" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "MAOI" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/U-47700", + "name": "U-47700", + "aliases": [ + "u47700" + ], + "aliasesStr": "u47700", + "summary": "A µ-opioid receptor agonist that is related to AH-7921. Having a very short duration.", + "toxicity": [ + "high toxicity relative to its dose due to its extreme potency", + "potentially lethal when mixed with depressants like alcohol or benzodiazepines" + ], + "addictionPotential": "moderately addictive with a high potential for abuse", + "tolerance": { + "full": "develops with prolonged and repeated use", + "half": "3 - 7 days", + "zero": "1 - 2 weeks" + }, + "crossTolerances": [ + "opioids" + ], + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "4-6 mg" + }, + { + "name": "Common", + "value": "6-8 mg" + }, + { + "name": "Strong", + "value": "8-10 mg" + }, + { + "name": "Heavy", + "value": "10 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "15-20 minutes" + }, + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Peak", + "value": "1-2 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "2-3 hours" + }, + { + "name": "Onset", + "value": "15 minutes" + }, + { + "name": "Duration", + "value": "3-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-7.5 mg" + }, + { + "name": "Common", + "value": "7.5-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + }, + { + "name": "Heavy", + "value": "25 " + } + ], + "duration": [ + { + "name": "Onset", + "value": "15 minutes" + }, + { + "name": "Duration", + "value": "5-7 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Substituted amphetamines" + }, + { + "status": "Caution", + "name": "MAOI" + }, + { + "status": "Caution", + "name": "Nitrous" + }, + { + "status": "Caution", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "Alcohol" + }, + { + "status": "Dangerous", + "name": "Benzodiazepines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "GHB" + }, + { + "status": "Dangerous", + "name": "GBL" + }, + { + "status": "Dangerous", + "name": "Ketamine" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "Tramadol" + }, + { + "status": "Dangerous", + "name": "Grapefruit" + } + ], + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_U47700.shtml", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Xanthines", + "name": "Xanthines" + }, + { + "url": "https://psychonautwiki.org/wiki/Zolpidem", + "name": "Zolpidem", + "aliases": [ + "ambien", + "stilnox" + ], + "aliasesStr": "ambien, stilnox", + "summary": "Commonly prescribed for insomnia, Ambien (zolpidem) can cause realistic hallucinations similar to those of deliriants, and is very likely to cause amnesia at higher doses. Take care when using this drug, as it tends to lower inhibitions to a level which causes the user to do things they might not normally do when sober.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like alcohol or opioids" + ], + "addictionPotential": "moderately addictive", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "2.5-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + }, + { + "name": "Heavy", + "value": "20-30 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-45 minutes" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "3-6 hours" + }, + { + "name": "Offset", + "value": "4-5 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "5-10 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "5-10 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + }, + { + "name": "Light", + "value": "2.5-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + }, + { + "name": "Heavy", + "value": "20-30 mg" + } + ], + "duration": [ + { + "name": "Comeup", + "value": "30-45 minutes" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Peak", + "value": "3-6 hours" + }, + { + "name": "Offset", + "value": "4-5 hours" + }, + { + "name": "Afterglow", + "value": "2-4 hours" + }, + { + "name": "Total", + "value": "5-10 hours" + }, + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "5-10 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Zopiclone", + "name": "Zopiclone", + "aliases": [ + "imovane", + "zimovane" + ], + "aliasesStr": "imovane, zimovane", + "summary": "A nonbenzodiazepine sedative sleep aid (Z-drug), which can have hallucinogenic effects if taken while awake. Often causes users to have a metallic taste in the mouth for ~12h. Has been reported in some cases to cause certain users to black out, redose excessively and undertake dangerous activities such as driving.", + "toxicity": [ + "low toxicity", + "potentially lethal when mixed with depressants like benzodiazepines, alcohol or opioids" + ], + "addictionPotential": "extremely physically and psychologically addictive", + "tolerance": { + "full": "within a couple of weeks of daily use", + "half": null, + "zero": "7 - 14 days" + }, + "crossTolerances": [ + "benzodiazepines" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "3.5-5 mg" + }, + { + "name": "Common", + "value": "5-7.5 mg" + }, + { + "name": "Strong", + "value": "7.5-15 mg" + }, + { + "name": "Heavy", + "value": "15 mg" + }, + { + "name": "Threshold", + "value": "3.5 mg" + }, + { + "name": "Light", + "value": "3.5-5 mg" + }, + { + "name": "Common", + "value": "5-7.5 mg" + }, + { + "name": "Strong", + "value": "7.5-15 mg" + }, + { + "name": "Heavy", + "value": "15-22.5 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Peak", + "value": "3-4 hours" + }, + { + "name": "Total", + "value": "3.5-9 hours" + }, + { + "name": "Onset", + "value": "15 minutes" + }, + { + "name": "Duration", + "value": "3.5-9 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg" + }, + { + "name": "Light", + "value": "3.5-5 mg" + }, + { + "name": "Common", + "value": "5-7.5 mg" + }, + { + "name": "Strong", + "value": "7.5-15 mg" + }, + { + "name": "Heavy", + "value": "15 mg" + }, + { + "name": "Threshold", + "value": "3.5 mg" + }, + { + "name": "Light", + "value": "3.5-5 mg" + }, + { + "name": "Common", + "value": "5-7.5 mg" + }, + { + "name": "Strong", + "value": "7.5-15 mg" + }, + { + "name": "Heavy", + "value": "15-22.5 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Peak", + "value": "3-4 hours" + }, + { + "name": "Total", + "value": "3.5-9 hours" + }, + { + "name": "Onset", + "value": "15 minutes" + }, + { + "name": "Duration", + "value": "3.5-9 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Common" + ] + } + }, + { + "url": "https://psychonautwiki.org/wiki/Beta-Carboline", + "name": "Beta-Carboline" + }, + { + "url": "https://psychonautwiki.org/wiki/%CE%91MT", + "name": "ΑMT", + "aliases": [ + "AMT", + "αMT", + "Indopan" + ], + "aliasesStr": "AMT, αMT, Indopan", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "moderately habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "14 days", + "zero": "1 month" + }, + "crossTolerances": [ + "psychedelics" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "10-25 mg" + }, + { + "name": "Common", + "value": "25-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "60-180 minutes" + }, + { + "name": "Peak", + "value": "4-6 hours" + }, + { + "name": "Afterglow", + "value": "1-5 hours" + }, + { + "name": "Total", + "value": "13-15 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "Alcohol" + }, + { + "status": "Caution", + "name": "Caffeine" + }, + { + "status": "Caution", + "name": "Cannabis" + }, + { + "status": "Dangerous", + "name": "2C-T-x" + }, + { + "status": "Dangerous", + "name": "2C-x" + }, + { + "status": "Dangerous", + "name": "5-MeO-xxT" + }, + { + "status": "Dangerous", + "name": "Substituted amphetamines" + }, + { + "status": "Dangerous", + "name": "Cocaine" + }, + { + "status": "Dangerous", + "name": "DOx" + }, + { + "status": "Dangerous", + "name": "Dextromethorphan" + }, + { + "status": "Dangerous", + "name": "MAOI" + }, + { + "status": "Dangerous", + "name": "MDMA" + }, + { + "status": "Dangerous", + "name": "Mescaline" + }, + { + "status": "Dangerous", + "name": "Methoxetamine" + }, + { + "status": "Dangerous", + "name": "25x-NBOMe" + }, + { + "status": "Dangerous", + "name": "PCP" + }, + { + "status": "Dangerous", + "name": "Selective serotonin reuptake inhibitor" + }, + { + "status": "Dangerous", + "name": "Tramadol" + } + ] + }, + { + "url": "https://psychonautwiki.org/wiki/%CE%92k-2C-B", + "name": "Βk-2C-B", + "aliases": [ + "βk-2C-B", + "beta-keto 2C-B", + "bk-2C-B" + ], + "aliasesStr": "βk-2C-B, beta-keto 2C-B, bk-2C-B", + "toxicity": [ + "toxic dose is unknown" + ], + "addictionPotential": "not habit-forming", + "tolerance": { + "full": "almost immediately after ingestion", + "half": "3 days", + "zero": "7 days" + }, + "crossTolerances": [ + "psychedelic" + ], + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 mg" + }, + { + "name": "Light", + "value": "60-80 mg" + }, + { + "name": "Common", + "value": "80-100 mg" + }, + { + "name": "Strong", + "value": "100-150 mg" + }, + { + "name": "Heavy", + "value": "150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-70 minutes" + }, + { + "name": "Total", + "value": "8-12 hours" + } + ] + } + ] + }, + { + "name": "1b-lsd", + "url": "https://wiki.tripsit.me/wiki/1b-lsd", + "aliases": [ + "1b" + ], + "aliasesStr": "1b", + "summary": "1B-LSD (1-butanoyl-lysergic acid diethylamide) is an LSD analogue which appears to be about as potent as 1P-LSD (slightly more potent than LSD) and has a slightly shorter duration than that of LSD, again thought to be about the same as 1P-LSD. Released in late 2018, and marketed agressively as a replacement for 1P-LSD. 1B-LSD does not yet have a clearly established safety profile,", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "25-50 ug", + "note": " NOTE: At the time of this chemical's release, the manufacturers claimed 1B-LSD was expected to be slightly less potent than 1P-LSD, supposedly owing to the increased mass of the butanoyl group over the propionyl group, however anecdotes seem to indicate approximate equipotency to 1P-LSD." + }, + { + "name": "Common", + "value": "50-125 ug", + "note": " NOTE: At the time of this chemical's release, the manufacturers claimed 1B-LSD was expected to be slightly less potent than 1P-LSD, supposedly owing to the increased mass of the butanoyl group over the propionyl group, however anecdotes seem to indicate approximate equipotency to 1P-LSD." + }, + { + "name": "Strong", + "value": "125-250 ug", + "note": " NOTE: At the time of this chemical's release, the manufacturers claimed 1B-LSD was expected to be slightly less potent than 1P-LSD, supposedly owing to the increased mass of the butanoyl group over the propionyl group, however anecdotes seem to indicate approximate equipotency to 1P-LSD." + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "6-24 hours" + } + ] + } + ] + }, + { + "name": "2-ai", + "url": "https://wiki.tripsit.me/wiki/2-ai", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2Aminoindan.shtml", + "aliases": [ + "2ai", + "2-aminoindan" + ], + "aliasesStr": "2ai, 2-aminoindan", + "summary": "Short acting stimulant that is sometimes compared to the likes of Methamphetamine. It is a rigid analogue of Amphetamine, and also partially substitutes for the prior in rat discrimination studies. ", + "reagents": "Marquis: Orange > Brown. | Mecke: Yellow. | Mandelin: Blue. | Liebermann: Yellow Brown. | Ehrlich: No colour change.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3-5 mg" + }, + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-40 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "1-2 hours" + }, + { + "name": "After Effects", + "value": "2-4 hours" + } + ] + } + ] + }, + { + "name": "2-chloro-ephenidine", + "url": "https://wiki.tripsit.me/wiki/2-chloro-ephenidine", + "aliases": [ + "2-chloroephenidine", + "2chloroephenidine", + "2-cl-ephenidine", + "2clephenidine" + ], + "aliasesStr": "2-chloroephenidine, 2chloroephenidine, 2-cl-ephenidine, 2clephenidine", + "summary": "Analogue of Ephenidine. Very little is known about this quite obscure compound. Very likely to exhibit dissociative effects, and is slightly less potent than the parent drug Ephenidine.", + "classes": { + "psychoactive": [ + "Dissociative", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "100-130 mg" + }, + { + "name": "Common", + "value": "130-175 mg" + }, + { + "name": "Strong", + "value": "175-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "2-dpmp", + "url": "https://wiki.tripsit.me/wiki/2-dpmp", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Desoxypipradrol_.shtml", + "aliases": [ + "desoxypipradrol", + "2dpmp", + "2-desoxypiperadol", + "desoxypipradol" + ], + "aliasesStr": "desoxypipradrol, 2dpmp, 2-desoxypiperadol, desoxypipradol", + "summary": "A very potent stimulant that is a NDRI. Developed by Novartis in the 1950s, to treat narcolepsy and ADHD, however dropped when Methylphenidate was produced a few years later, which was seen as superior due to its shorter T½. 2-DPMP Half life 16-20 hours. Warning: subjective reports suggest this drug is caustic to the nasal mucosa and may cause damage to the nasal cavity.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1-2 mg", + "note": " NOTE: This drug is extremely potent and extremely long lasting, even at 'common' doses. Be sure to start low and avoid redosing." + }, + { + "name": "Light", + "value": "2-3 mg", + "note": " NOTE: This drug is extremely potent and extremely long lasting, even at 'common' doses. Be sure to start low and avoid redosing." + }, + { + "name": "Common", + "value": "3-4 mg", + "note": " NOTE: This drug is extremely potent and extremely long lasting, even at 'common' doses. Be sure to start low and avoid redosing." + }, + { + "name": "Strong", + "value": "4-6 mg", + "note": " NOTE: This drug is extremely potent and extremely long lasting, even at 'common' doses. Be sure to start low and avoid redosing." + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1-2 mg", + "note": " NOTE: This drug is extremely potent and extremely long lasting, even at 'common' doses. Be sure to start low and avoid redosing." + }, + { + "name": "Light", + "value": "2-4 mg", + "note": " NOTE: This drug is extremely potent and extremely long lasting, even at 'common' doses. Be sure to start low and avoid redosing." + }, + { + "name": "Common", + "value": "4-6 mg", + "note": " NOTE: This drug is extremely potent and extremely long lasting, even at 'common' doses. Be sure to start low and avoid redosing." + }, + { + "name": "Strong", + "value": "6-8 mg", + "note": " NOTE: This drug is extremely potent and extremely long lasting, even at 'common' doses. Be sure to start low and avoid redosing." + } + ], + "duration": [ + { + "name": "Onset", + "value": "60-120 minutes" + }, + { + "name": "Duration", + "value": "16-72 hours" + }, + { + "name": "After Effects", + "value": "1-72 hours" + } + ] + } + ] + }, + { + "name": "2-fdck", + "url": "https://wiki.tripsit.me/wiki/2-fdck", + "aliases": [ + "2f-ketamine", + "2f-ket", + "2-fluorodeschloroketamine", + "2-fl-2'-oxo-pcm", + "2f-dck", + "2fket", + "2fdck" + ], + "aliasesStr": "2f-ketamine, 2f-ket, 2-fluorodeschloroketamine, 2-fl-2'-oxo-pcm, 2f-dck, 2fket, 2fdck", + "summary": "Dissociative anesthetic of the arylcyclohexylamine class. Seemingly on par with ketamine in dosage. Longer onset than the prior.", + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "20-50 mg" + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-175 mg" + } + ] + } + ] + }, + { + "name": "2-me-dmt", + "url": "https://wiki.tripsit.me/wiki/2-me-dmt", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2MeDMT.shtml", + "aliases": [], + "aliasesStr": "", + "summary": "Also known as 2,N,N-TMT, this drug was first synthesised by Alexander Shulgin. Described as a very mild psychedelic of similar subjective effects to other tryptamines. Reported as having an unusual and unpredictable dose curve, it is recommended to start low with this drug.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "30-50 mg" + }, + { + "name": "Common", + "value": "50-75 mg" + }, + { + "name": "Strong", + "value": "75-100 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "60-90 minutes" + }, + { + "name": "Duration", + "value": "3-8 hours" + }, + { + "name": "After Effects", + "value": "1-5 hours" + } + ] + } + ] + }, + { + "name": "2-mec", + "url": "https://wiki.tripsit.me/wiki/2-mec", + "aliases": [], + "aliasesStr": "", + "summary": "Cathinone which some users report to feel like a weaker MDMA with a shorter onset.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "25-50 mg" + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-250 mg" + } + ], + "duration": [ + { + "name": "Duration", + "value": "2-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-200 mg" + }, + { + "name": "Strong", + "value": "200-350 mg" + } + ], + "duration": [ + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "2-methyl-2-butanol", + "url": "https://wiki.tripsit.me/wiki/2-methyl-2-butanol", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2Methyl2Butanol.shtml", + "aliases": [ + "2m2b" + ], + "aliasesStr": "2m2b", + "summary": "A tertiary alcohol that has sedative, hypnotic, and anxiolytic effects. It is also roughly 20x more potent than Ethanol by weight.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "2.5-5 g" + }, + { + "name": "Common", + "value": "5-7.5 g" + }, + { + "name": "Strong", + "value": "7.5-15 g" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-25 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "2-6 hours" + } + ] + } + ] + }, + { + "name": "2-methylamphetamine", + "url": "https://wiki.tripsit.me/wiki/2-methylamphetamine", + "aliases": [ + "2-ma" + ], + "aliasesStr": "2-ma", + "summary": "Also known as Ortetamine, this rarely seen amphetamine is approximately 1/10th as potent as dextroamphetamine. Little information exists regarding its safety or effects.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "10-30 mg" + }, + { + "name": "Common", + "value": "30-50 mg" + }, + { + "name": "Strong", + "value": "50-70 mg" + } + ], + "duration": [ + { + "name": "After Effects", + "value": "1-10 hours" + } + ] + } + ] + }, + { + "name": "2-mmc", + "url": "https://wiki.tripsit.me/wiki/2-mmc", + "aliases": [], + "aliasesStr": "", + "summary": "A cathinone, yet the effects are noted more of the likes of 2-FA or amphetamine. Which apparently left people dissapointed.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-40 mg" + }, + { + "name": "Strong", + "value": "40-80 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "2-15 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "2-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "20-50 mg" + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-135 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "2-8 hours" + } + ] + } + ] + }, + { + "name": "2-mppp", + "url": "https://wiki.tripsit.me/wiki/2-mppp", + "aliases": [ + "n-piperidinecathinone" + ], + "aliasesStr": "n-piperidinecathinone", + "summary": "A novel stimulant that is similar to methcathinone.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "15-30 mg" + }, + { + "name": "Common", + "value": "30-60 mg" + }, + { + "name": "Strong", + "value": "60-110 mg" + }, + { + "name": "Heavy", + "value": "110 mg" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "25-50 mg" + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-150 mg" + }, + { + "name": "Heavy", + "value": "150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-20 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "2-nmc", + "url": "https://wiki.tripsit.me/wiki/2-nmc", + "aliases": [], + "aliasesStr": "", + "summary": "Inactive.", + "classes": { + "psychoactive": [ + "Inactive" + ], + "chemical": [] + } + }, + { + "name": "2-pa", + "url": "https://wiki.tripsit.me/wiki/2-pa", + "aliases": [ + "2-phenylacetamide" + ], + "aliasesStr": "2-phenylacetamide", + "summary": "Amphetamine with the alpha-methyl replaced by ketone. Very few reports. Also no information on the safety of this compound. As always treat with caution.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "10-25 mg" + }, + { + "name": "Common", + "value": "25-50 mg" + }, + { + "name": "Strong", + "value": "50-100 mg" + }, + { + "name": "Heavy", + "value": "100 " + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "1-10 hours" + } + ] + } + ] + }, + { + "name": "2-pta", + "url": "https://wiki.tripsit.me/wiki/2-pta", + "aliases": [ + "4-methyl-2-pa", + "2-(p-tolyl)acetamide" + ], + "aliasesStr": "4-methyl-2-pa, 2-(p-tolyl)acetamide", + "summary": "4-Methylamphetamine with the alpha-methyl replaced by ketone. Very few reports. Also no information of the safety of this compound. As always treat with caution.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-80 mg" + }, + { + "name": "Heavy", + "value": "80 " + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-25 minutes" + }, + { + "name": "Duration", + "value": "1-3 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "2c-b-an", + "url": "https://wiki.tripsit.me/wiki/2c-b-an", + "aliases": [], + "aliasesStr": "", + "summary": "2C-B-AN is a novel prodrug for 2C-B.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "30-45 mg" + }, + { + "name": "Common", + "value": "45-70 mg" + }, + { + "name": "Strong", + "value": "70-100 mg" + }, + { + "name": "Heavy", + "value": "100 " + } + ], + "duration": [ + { + "name": "Onset", + "value": "40-75 minutes" + }, + { + "name": "Duration", + "value": "5-9 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "2c-b-fly-nbome", + "url": "https://wiki.tripsit.me/wiki/2c-b-fly-nbome", + "aliases": [ + "2cbflynbome" + ], + "aliasesStr": "2cbflynbome", + "classes": { + "psychoactive": [ + "Empathogen", + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "100-200 ug", + "note": " Note: More research needs to be done with this chemical. Stay safe." + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-10 minutes" + } + ] + } + ] + }, + { + "name": "2c-g", + "url": "https://wiki.tripsit.me/wiki/2c-g", + "aliases": [ + "2cg" + ], + "aliasesStr": "2cg", + "summary": "Extremely rare drug of the 2C-X family. An extremely long lasting substance. Is nearly as potent as its amphetamine counter-part, Ganesha. Yet is said to have very little visual activity.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "20-25 mg" + }, + { + "name": "Common", + "value": "25-30 mg" + }, + { + "name": "Strong", + "value": "30 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-120 minutes" + }, + { + "name": "Duration", + "value": "15-35 hours" + }, + { + "name": "After Effects", + "value": "1-72 hours" + } + ] + } + ] + }, + { + "name": "2c-ip", + "url": "https://wiki.tripsit.me/wiki/2c-ip", + "aliases": [], + "aliasesStr": "", + "summary": "Isopropyl analog (branched analog) of 2C-P with a slightly shorter duration and lower potency.", + "reagents": "Marquis: Orange > Red. | Mecke: Yellow > Brown. | Mandelin: Green. | Ehrlich: No colour change.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Heavy", + "value": "30-45 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Duration", + "value": "12-16 hours" + }, + { + "name": "After Effects", + "value": "4-8 hours" + } + ] + } + ] + }, + { + "name": "2c-n", + "url": "https://wiki.tripsit.me/wiki/2c-n", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CN.shtml", + "aliases": [ + "2cn" + ], + "aliasesStr": "2cn", + "summary": "A relatively uncommon and short-acting psychedelic phenethylamine of the 2C-x family. It behaves much like other 2C-x drugs, but is unique in that it is a yellowish golden-coloured salt. Described by some, namely Shulgin, as being quite underwhelming.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "100 mg" + }, + { + "name": "Common", + "value": "100-125 mg" + }, + { + "name": "Strong", + "value": "125-150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "2-4 hours" + } + ] + } + ] + }, + { + "name": "2c-t-4", + "url": "https://wiki.tripsit.me/wiki/2c-t-4", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CT4.shtml", + "aliases": [ + "2ct4", + "2c-t4", + "2-ct4", + "2ct-4" + ], + "aliasesStr": "2ct4, 2c-t4, 2-ct4, 2ct-4", + "summary": "A psychedelic phenethylamine that has a longer onset and duration compared to the more common 2C-T-x (2 and 7).", + "reagents": "Marquis: Pale Orange. | Mandelin: Orange (Or Purple). | Liebermann: Purple. | Ehrlich: Purple.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5-6 mg" + }, + { + "name": "Light", + "value": "6-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-120 minutes" + }, + { + "name": "Duration", + "value": "10-18 hours" + }, + { + "name": "After Effects", + "value": "4-8 hours" + } + ] + } + ] + }, + { + "name": "3-cmc", + "url": "https://wiki.tripsit.me/wiki/3-cmc", + "aliases": [ + "3cmc" + ], + "aliasesStr": "3cmc", + "summary": "A rarely seen halogenated cathinone drug. Likely to be a stimulant, possibly an entactogen. (Note: The amphetamine analogue of this drug, 4-CA, is a highly dangerous neurotoxin, no data about the safety of this one, but should likely be avoided)", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "20-40 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Common", + "value": "40-80 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Strong", + "value": "80-100 mg", + "note": " NOTE: These doses are tentative and may need further research." + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "1-2 hours" + }, + { + "name": "After Effects", + "value": "3-6 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "30-60 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Common", + "value": "60-100 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Strong", + "value": "100-180 mg", + "note": " NOTE: These doses are tentative and may need further research." + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "4-12 hours" + } + ] + } + ] + }, + { + "name": "3-fmc", + "url": "https://wiki.tripsit.me/wiki/3-fmc", + "aliases": [], + "aliasesStr": "", + "summary": "A stimulant drug related to mephedrone. A member of the cathinone class, it is also an amphetamine. Effects similar to other drugs of its class, may possess high addiction potential. May be a monoamine releaser, reuptake inhibitor or both.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "25-50 mg", + "note": "Rapid onset. 3-fmc is very harsh on the nasal membranes" + }, + { + "name": "Common", + "value": "50-100 mg", + "note": "Rapid onset. 3-fmc is very harsh on the nasal membranes" + }, + { + "name": "Strong", + "value": "100-150 mg", + "note": "Rapid onset. 3-fmc is very harsh on the nasal membranes" + } + ], + "duration": [ + { + "name": "Duration", + "value": "2-4 hours" + } + ] + } + ] + }, + { + "name": "3-mec", + "url": "https://wiki.tripsit.me/wiki/3-mec", + "aliases": [], + "aliasesStr": "", + "summary": "Another cathinone based stimulant, that is weaker than 4-MEC. Very few reports since it is quite unpopular.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "25-50 mg" + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-150 mg" + } + ], + "duration": [ + { + "name": "Duration", + "value": "1-1.5 hours" + }, + { + "name": "After Effects", + "value": "1-3 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-175 mg" + }, + { + "name": "Strong", + "value": "175-250 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + }, + { + "name": "After Effects", + "value": "2-5 hours" + } + ] + } + ] + }, + { + "name": "3-meo-pcpr", + "url": "https://wiki.tripsit.me/wiki/3-meo-pcpr", + "aliases": [], + "aliasesStr": "", + "summary": "This is the N-Propyl homologue of 3-MeO-PCE. It is slightly less potent than PCP. Yet seems slightly less manic inducing.", + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "1-3 mg" + }, + { + "name": "Common", + "value": "3-8 mg" + }, + { + "name": "Strong", + "value": "8-15 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "1-3 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-8 mg" + }, + { + "name": "Common", + "value": "8-15 mg" + }, + { + "name": "Strong", + "value": "15-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "3-4 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + } + ] + }, + { + "name": "3-meo-pcpy", + "url": "https://wiki.tripsit.me/wiki/3-meo-pcpy", + "aliases": [], + "aliasesStr": "", + "summary": "3-Methoxy analogue of Rolicyclidine (PCPy) less opioid effects than Phenylcyclidine (PCP) Yet still prominent.", + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "1-3 mg" + }, + { + "name": "Common", + "value": "3-6 mg" + }, + { + "name": "Strong", + "value": "6-10 mg" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-8 mg" + }, + { + "name": "Strong", + "value": "8-15 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "3-meomc", + "url": "https://wiki.tripsit.me/wiki/3-meomc", + "aliases": [], + "aliasesStr": "", + "summary": "A cathinone that has a short history of human use.", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "25-50 mg" + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-20 minutes" + } + ] + } + ] + }, + { + "name": "3-oh-Phenazepam", + "url": "https://wiki.tripsit.me/wiki/3-oh-Phenazepam", + "aliases": [ + "3-ho-phenazepam", + "3hophenazepam", + "3ohphenazepam", + "3-ho-p", + "3hop", + "3-oh-p", + "3ohp", + "3-hydroxyphenazepam" + ], + "aliasesStr": "3-ho-phenazepam, 3hophenazepam, 3ohphenazepam, 3-ho-p, 3hop, 3-oh-p, 3ohp, 3-hydroxyphenazepam", + "summary": "The 3-OH analogue of Phenazepam, which cuts the half life down quite a bit. Psychoactive effects are mostly lead by its metabolites, rather than the drug itself.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Heavy", + "value": "2-4 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "10-24 hours" + }, + { + "name": "After Effects", + "value": "2-24 hours" + } + ] + } + ] + }, + { + "name": "3,6-dmpm", + "url": "https://wiki.tripsit.me/wiki/3,6-dmpm", + "aliases": [], + "aliasesStr": "", + "summary": "Stimulant that is related to Phenmetrazine. Nearly no information on dose or effects.", + "classes": { + "psychoactive": [ + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "4-aco-dalt", + "url": "https://wiki.tripsit.me/wiki/4-aco-dalt", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4AcODALT.shtml", + "aliases": [ + "4acodalt" + ], + "aliasesStr": "4acodalt", + "summary": "An uncommon tryptamine derivative first reported in the mid 2000s, likely a psychedelic. Little is known about the pharmacology or effects of this compound.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20 mg" + }, + { + "name": "Light", + "value": "40-50 mg" + }, + { + "name": "Common", + "value": "50-70 mg" + }, + { + "name": "Heavy", + "value": "100 " + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "5-9 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + }, + { + "name": "Vapourized", + "dosage": [ + { + "name": "Threshold", + "value": "2-4 mg" + }, + { + "name": "Light", + "value": "5-8 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15 " + } + ] + } + ] + }, + { + "name": "4-aco-dpt", + "url": "https://wiki.tripsit.me/wiki/4-aco-dpt", + "aliases": [ + "4acodpt" + ], + "aliasesStr": "4acodpt", + "summary": "Research chemical of the Tryptamine class. First noted being sold in 2012, yet never recieved much attention. Conflicting reports. Doesn't dissolve well at all in nearly all solutions it was tested in.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-35 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-10 minutes" + } + ] + } + ] + }, + { + "name": "4-benzylpiperidine", + "url": "https://wiki.tripsit.me/wiki/4-benzylpiperidine", + "aliases": [ + "4-pmpd" + ], + "aliasesStr": "4-pmpd", + "summary": "A dopamine releasing agent with weak serotonin releasing properties. Little evidence of human use. Potentially dangerous in overdose given MAOI + monoamine releasing properties.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "75-125 mg" + }, + { + "name": "Common", + "value": "125-200 mg" + }, + { + "name": "Strong", + "value": "200-350 mg" + }, + { + "name": "Heavy", + "value": "350 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-45 minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + } + ] + } + ] + }, + { + "name": "4-cbc", + "url": "https://wiki.tripsit.me/wiki/4-cbc", + "aliases": [], + "aliasesStr": "", + "summary": "Is a potentially very neurotoxic Cathinone. Obviously no scientic reports have been noted on the neurotoxicity or cardiotoxicity, so please move on with extreme caution.", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "40-70 mg", + "note": " Note: Be careful and read the summary before ingesting this substance." + }, + { + "name": "Common", + "value": "50-80 mg", + "note": " Note: Be careful and read the summary before ingesting this substance." + }, + { + "name": "Strong", + "value": "80-100 mg", + "note": " Note: Be careful and read the summary before ingesting this substance." + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Duration", + "value": "1-3 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "40-70 mg", + "note": " Note: Be careful and read the summary before ingesting this substance." + }, + { + "name": "Common", + "value": "70-100 mg", + "note": " Note: Be careful and read the summary before ingesting this substance." + }, + { + "name": "Strong", + "value": "100-130 mg", + "note": " Note: Be careful and read the summary before ingesting this substance." + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60mg minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "2-6 hours" + } + ] + } + ] + }, + { + "name": "4-chlorodiazepam", + "url": "https://wiki.tripsit.me/wiki/4-chlorodiazepam", + "aliases": [ + "ro5-4864", + "4'-chlorodiazepam" + ], + "aliasesStr": "ro5-4864, 4'-chlorodiazepam", + "summary": "A benzodiazepine derivative of Diazepam, yet lacks affinity for GABA(a) receptors, yet is still a sedative, that has pro-convulsant effects. Yet at lower doses it has been proven to be neuroprotective.", + "classes": { + "psychoactive": [ + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "4-cic", + "url": "https://wiki.tripsit.me/wiki/4-cic", + "aliases": [], + "aliasesStr": "", + "summary": "Inactive.", + "classes": { + "psychoactive": [ + "Inactive" + ], + "chemical": [] + } + }, + { + "name": "4-cma", + "url": "https://wiki.tripsit.me/wiki/4-cma", + "aliases": [], + "aliasesStr": "", + "summary": "The stimulant that is the N-Methyl Derivative and prodrug of the neurotoxic para-Chloroamphetamine.", + "classes": { + "psychoactive": [ + "Research Chemical" + ], + "chemical": [] + } + }, + { + "name": "4-cmc", + "url": "https://wiki.tripsit.me/wiki/4-cmc", + "aliases": [ + "4cmc" + ], + "aliasesStr": "4cmc", + "summary": "(Note this work is going off just a few users inputs, so take all of this with a grain of salt) The cathinone analogue of 4-CMA which is highly neurotoxic. It is not known if the cathinone family holds the same neurotoxicity problem as with the parent compound.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "20-30 mg" + }, + { + "name": "Light", + "value": "30-50 mg" + }, + { + "name": "Common", + "value": "50 mg" + }, + { + "name": "Strong", + "value": "100 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "Few hours" + } + ] + } + ] + }, + { + "name": "4-emc", + "url": "https://wiki.tripsit.me/wiki/4-emc", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4Ethylmethcathinone.shtml", + "aliases": [ + "4-ethylmethcathinone" + ], + "aliasesStr": "4-ethylmethcathinone", + "summary": "A stimulant that is a structural isomer of 4-MEC.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-200 mg" + }, + { + "name": "Strong", + "value": "200 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "2-8 hours" + } + ] + } + ] + }, + { + "name": "4-epd", + "url": "https://wiki.tripsit.me/wiki/4-epd", + "aliases": [ + "4-ethylpentedrone" + ], + "aliasesStr": "4-ethylpentedrone", + "summary": "An obscure analogue of Pentedrone, which means very little information on this chemical. It is likely is shares the same general effects of the other Pentedrone family.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + } + ] + } + ] + }, + { + "name": "4-fea", + "url": "https://wiki.tripsit.me/wiki/4-fea", + "aliases": [ + "4-fluoroethylamphetamine" + ], + "aliasesStr": "4-fluoroethylamphetamine", + "summary": "Stimulant that is the ethyl analogue of 4-FMA.", + "classes": { + "psychoactive": [ + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "25-50 mg", + "note": " Note: Tentative data as of writing." + }, + { + "name": "Common", + "value": "50-75 mg", + "note": " Note: Tentative data as of writing." + }, + { + "name": "Strong", + "value": "75-150 mg", + "note": " Note: Tentative data as of writing." + } + ], + "duration": [ + { + "name": "Onset", + "value": "40-60 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "4-fluoroethylphenidate", + "url": "https://wiki.tripsit.me/wiki/4-fluoroethylphenidate", + "aliases": [ + "4f-eph", + "4-feph" + ], + "aliasesStr": "4f-eph, 4-feph", + "summary": "A more potent and longer lasting analogue of Ethylphenidate.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-25 minutes" + }, + { + "name": "Duration", + "value": "5-6 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "4-fluoromethylphenidate", + "url": "https://wiki.tripsit.me/wiki/4-fluoromethylphenidate", + "aliases": [ + "4f-mph", + "4-fmph", + "4fmph", + "4-fl-mph", + "4-fluoro-mph" + ], + "aliasesStr": "4f-mph, 4-fmph, 4fmph, 4-fl-mph, 4-fluoro-mph", + "summary": "A relatively uncommon, more serotonergic RC derivative of methylphenidate. A dopamine reuptake inhibitor possessing similar effects to associated stimulant compounds.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1-5 mg", + "note": " Note: There has been a range of different reactions to similar doses, particularly some users have reported 15mg being too intense. It is advisable to start low with this drug." + }, + { + "name": "Light", + "value": "5-10 mg", + "note": " Note: There has been a range of different reactions to similar doses, particularly some users have reported 15mg being too intense. It is advisable to start low with this drug." + }, + { + "name": "Common", + "value": "10-15 mg", + "note": " Note: There has been a range of different reactions to similar doses, particularly some users have reported 15mg being too intense. It is advisable to start low with this drug." + }, + { + "name": "Strong", + "value": "15-20 mg", + "note": " Note: There has been a range of different reactions to similar doses, particularly some users have reported 15mg being too intense. It is advisable to start low with this drug." + }, + { + "name": "Heavy", + "value": "20-25 mg", + "note": " Note: There has been a range of different reactions to similar doses, particularly some users have reported 15mg being too intense. It is advisable to start low with this drug." + } + ], + "duration": [ + { + "name": "Onset", + "value": "25-40 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "5-10 hours" + } + ] + } + ] + }, + { + "name": "4-fluoropentedrone", + "url": "https://wiki.tripsit.me/wiki/4-fluoropentedrone", + "aliases": [ + "4-fpd", + "4-f-pentedrone", + "4f-pentedrone" + ], + "aliasesStr": "4-fpd, 4-f-pentedrone, 4f-pentedrone", + "summary": "An obscure analogue of pentedrone, little information exists about this cathinone. It is likely that it has the same general effects as pentedrone, mephedrone and other related stimulants.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "4-fmc", + "url": "https://wiki.tripsit.me/wiki/4-fmc", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4Fluoromethcathinone.shtml", + "aliases": [ + "4-fluoromethcathinone", + "fpephedrone", + "flephedrone", + "4fmc" + ], + "aliasesStr": "4-fluoromethcathinone, fpephedrone, flephedrone, 4fmc", + "summary": "A cathinone stimulant also known as flephedrone, appeared in 2008 marketed as a mephedrone replacement. With some mild empathogenic effects, it failed to achieve widespread popularity.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "25-40 mg" + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-150 " + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "150-200 " + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + } + ] + }, + { + "name": "4-fpm", + "url": "https://wiki.tripsit.me/wiki/4-fpm", + "aliases": [], + "aliasesStr": "", + "summary": "Seems to be a substance, that was just made to get money. High doses needed to feel any effects. Would avoid.", + "classes": { + "psychoactive": [ + "Research Chemical" + ], + "chemical": [] + } + }, + { + "name": "4-fpp", + "url": "https://wiki.tripsit.me/wiki/4-fpp", + "aliases": [], + "aliasesStr": "", + "summary": "A piperazine derivative that has been reported to have mild pyschedelic effects, and also empathogen qualities. It has been sold in many branded legal highs.", + "classes": { + "psychoactive": [ + "Empathogen", + "Psychedelic", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "20-40 mg" + }, + { + "name": "Common", + "value": "40-80 mg" + }, + { + "name": "Strong", + "value": "80-150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + } + ] + } + ] + }, + { + "name": "4-ho-mcpt", + "url": "https://wiki.tripsit.me/wiki/4-ho-mcpt", + "aliases": [], + "aliasesStr": "", + "summary": "Novel synthetic tryptamine that is the cyclopropyl homologue of Psilocin. Not much is known about anything.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "4-ho-mpmi", + "url": "https://wiki.tripsit.me/wiki/4-ho-mpmi", + "aliases": [ + "lucigenol" + ], + "aliasesStr": "lucigenol", + "summary": "A rare tryptamine derivative first synthesised by David Nichols. This drug, also known as lucigenol, has rarely been documented outside the lab. It is known to be a psychedelic similar to other psychoactive tryptamines, with a potency similar to DOI, but little else is known.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "500-750 ug", + "note": " Note, this substance has never been reported on past 2mg's. Use you're judgement; It's near eqipotent to DOI." + }, + { + "name": "Light", + "value": "750 ug", + "note": " Note, this substance has never been reported on past 2mg's. Use you're judgement; It's near eqipotent to DOI." + }, + { + "name": "Common", + "value": "1-2 mg", + "note": " Note, this substance has never been reported on past 2mg's. Use you're judgement; It's near eqipotent to DOI." + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Duration", + "value": "6-8 hours" + } + ] + } + ] + }, + { + "name": "4-mec", + "url": "https://wiki.tripsit.me/wiki/4-mec", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4Methylethcathinone.shtml", + "aliases": [ + "4-Methylethcathinone", + "4mec", + "4-methylethcathinone" + ], + "aliasesStr": "4-Methylethcathinone, 4mec, 4-methylethcathinone", + "summary": "A substituted cathinone stimulant; little is known about its safety or subjective effects. It is believed to have similar effects to mephedrone, but with a lower potency and a stronger stimulating character.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "25-40 mg" + }, + { + "name": "Common", + "value": "40-100 mg" + }, + { + "name": "Strong", + "value": "100-150 mg" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-200 mg" + }, + { + "name": "Strong", + "value": "200 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + }, + { + "name": "After Effects", + "value": "2-4 hours" + } + ] + } + ] + }, + { + "name": "4-meo-butryfentanyl", + "url": "https://wiki.tripsit.me/wiki/4-meo-butryfentanyl", + "aliases": [ + "4-meo-bf" + ], + "aliasesStr": "4-meo-bf", + "summary": "Rare and basically unknown opioid and fentanyl analogue (not to be confused with Butyrfentanyl). Virtually no reliable information exists, safe dosages are unknown. Exercise extreme caution. Overdose may result in respiratory depression. Do not mix with stimulants or depressants.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Opioid", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "4-meo-mipt", + "url": "https://wiki.tripsit.me/wiki/4-meo-mipt", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4MeOMiPT.shtml", + "aliases": [], + "aliasesStr": "", + "summary": "A rare psychedelic tryptamine first synthesised by Alexander Shulgin, said to the be \"little brother\" of 5-MeO-MiPT. Said to be relatively mild with lighter visual effects than most tryptamines.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20 " + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Duration", + "value": "3-7 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + } + ] + }, + { + "name": "4-methylaminorex", + "url": "https://wiki.tripsit.me/wiki/4-methylaminorex", + "aliases": [], + "aliasesStr": "", + "summary": "A very potent stimulant that has quite a long duration of action at around 16 hours.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg" + }, + { + "name": "Light", + "value": "1-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-15 mg" + }, + { + "name": "Dangerous", + "value": "15-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Duration", + "value": "14-18 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ] + }, + { + "name": "4-methylmethylphenidate", + "url": "https://wiki.tripsit.me/wiki/4-methylmethylphenidate", + "aliases": [ + "4-mmph", + "4-me-tmp", + "4-metmp" + ], + "aliasesStr": "4-mmph, 4-me-tmp, 4-metmp", + "summary": "A stimulant drug related to methylphenidate and also known as 4-Me-TMP, it has demonstrated lower dopamine reuptake inhibition properties and is potentially less potent. Has been subjectively described as very similar in feel to MPH.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-45 mg" + }, + { + "name": "Strong", + "value": "45-70 mg" + }, + { + "name": "Heavy", + "value": "70 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "25-40 mg" + }, + { + "name": "Common", + "value": "40-60 mg" + }, + { + "name": "Strong", + "value": "60-90 mg" + }, + { + "name": "Heavy", + "value": "90-125 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-35 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + } + ] + } + ] + }, + { + "name": "4-mpd", + "url": "https://wiki.tripsit.me/wiki/4-mpd", + "aliases": [], + "aliasesStr": "", + "summary": "Stimulant of the cathinone class. Higher homologue of Mephedrone, and the p-Methyl analogue of Pentedrone.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Stimulant", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "4-mta", + "url": "https://wiki.tripsit.me/wiki/4-mta", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4MTA.shtml", + "aliases": [ + "4-methylthioamphetamine" + ], + "aliasesStr": "4-methylthioamphetamine", + "summary": "Empathogen with very low chronic toxicity but high risk of acute harm due to mixed serotonin release and MAOI action. Reported to lack euphoria and rarely sold since being scheduled.", + "classes": { + "psychoactive": [ + "Empathogen", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "4,4-dmar", + "url": "https://wiki.tripsit.me/wiki/4,4-dmar", + "aliases": [ + "serotoni", + "4,4-dmap" + ], + "aliasesStr": "serotoni, 4,4-dmap", + "summary": "Very closely related stimulant to Aminorex and Pemoline. Was sold as a designer drug for quite awhile under the brand name \"Serotoni\" has been linked to at least 31 deaths. It is a potent SNDRA.", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "30-60 mg" + }, + { + "name": "Common", + "value": "60-120 mg" + }, + { + "name": "Strong", + "value": "120-200 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "4f-neb", + "url": "https://wiki.tripsit.me/wiki/4f-neb", + "aliases": [], + "aliasesStr": "", + "summary": "The 4-Fluoro analogue of N-Ethylbuphedrone (NEB) is a part of the cathinone class.", + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "50-75 " + }, + { + "name": "Common", + "value": "75-150 mg" + }, + { + "name": "Strong", + "value": "150-250 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "50-100 minutes" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "75-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "150-300 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "90-180 minutes" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "4f-php", + "url": "https://wiki.tripsit.me/wiki/4f-php", + "aliases": [], + "aliasesStr": "", + "summary": "4-Fluoro analogue of a-PHP, yet seems to have less mania attachted to it. Dose is near on par.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + } + ] + } + ] + }, + { + "name": "4f-pvp", + "url": "https://wiki.tripsit.me/wiki/4f-pvp", + "aliases": [ + "4f-a-pvp", + "pfpvp" + ], + "aliasesStr": "4f-a-pvp, pfpvp", + "summary": "Fluornated analogue of a-PVP. Seems to be slightly less weaker than it's parent compound.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-25 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-20 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + } + ] + } + ] + }, + { + "name": "5-apdb", + "url": "https://wiki.tripsit.me/wiki/5-apdb", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5APDB.shtml", + "aliases": [], + "aliasesStr": "", + "summary": "An entactogenic amphetamine stimulant with similar structure and effects to MDMA. An analogue of MDA, it is a highly selective serotonin releaser but inhibits reuptake of serotonin (weakly), dopamine and norepinephrine.", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-75 mg" + }, + { + "name": "Common", + "value": "75-125 mg" + }, + { + "name": "Heavy", + "value": "125-200 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + } + ] + } + ] + }, + { + "name": "5-apdi", + "url": "https://wiki.tripsit.me/wiki/5-apdi", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_IAP.shtml", + "aliases": [ + "iap" + ], + "aliasesStr": "iap", + "summary": "Also commonly known as IAP. A selective serotonin releasing agent with psychedelic and empathogenic properties. Users have often reported issues with the drug causing overheating and unwelcome bowel movements.", + "classes": { + "psychoactive": [ + "Empathogen", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "15-25 mg" + }, + { + "name": "Common", + "value": "25-50 mg" + }, + { + "name": "Strong", + "value": "50-75 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "8-14 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "5-bpdi", + "url": "https://wiki.tripsit.me/wiki/5-bpdi", + "aliases": [], + "aliasesStr": "", + "summary": "An analogue of a-PHP, which has been described as having an extremely similar effect profile, with some users noting that it may be slightly lighter and with less of an urge to redose. However, little record of the safety of human use exists.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "7.5-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "25-45 mg" + }, + { + "name": "Heavy", + "value": "45 " + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "3-8 hours" + } + ] + } + ] + }, + { + "name": "5-br-dmt", + "url": "https://wiki.tripsit.me/wiki/5-br-dmt", + "aliases": [], + "aliasesStr": "", + "summary": "Psychedelic drug of the Trypyamine class, and is also found in two marine invertebrates. Animal studies have shown that this could be useful for sedative and/or antidepressant use.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Vapourized", + "dosage": [ + { + "name": "Light", + "value": "10-25 mg" + }, + { + "name": "Common", + "value": "25-35 mg" + }, + { + "name": "Strong", + "value": "35-65 mg" + } + ] + } + ] + }, + { + "name": "5-dbfpv", + "url": "https://wiki.tripsit.me/wiki/5-dbfpv", + "aliases": [], + "aliasesStr": "", + "summary": "Stimulant of the cathinone class. Analogue of MDPV where the methylenedioxyphenyl group was replaced with a dihydrobenzofuran.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2-5 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-60 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "After Effects", + "value": "4-12 hours" + } + ] + } + ] + }, + { + "name": "5-eapb", + "url": "https://wiki.tripsit.me/wiki/5-eapb", + "aliases": [ + "5eapb" + ], + "aliasesStr": "5eapb", + "summary": "A empathogen sold as a replacement to 5-MAPB after it was banned in the UK, but said to be less enjoyable and never gained much popularity.", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "30-40 mg" + }, + { + "name": "Common", + "value": "40-60 mg" + }, + { + "name": "Strong", + "value": "60-100 " + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-60 mg" + }, + { + "name": "Common", + "value": "60-100 mg" + }, + { + "name": "Strong", + "value": "100-150 " + } + ], + "duration": [ + { + "name": "Onset", + "value": "Oral minutes" + }, + { + "name": "Duration", + "value": "5-6 hours" + } + ] + } + ] + }, + { + "name": "5-htp", + "url": "https://wiki.tripsit.me/wiki/5-htp", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Tryptophan.shtml", + "aliases": [ + "5htp", + "5-hydroxytryptophan", + "tryptophan", + "l-tryptophan", + "oxitriptan" + ], + "aliasesStr": "5htp, 5-hydroxytryptophan, tryptophan, l-tryptophan, oxitriptan", + "summary": "The precursor to serotonin. In some countries it is sold OTC as a supplement for mood stabilisation and insomnia. It is frequently used as a recovery supplement following the use of MDMA or any other drug that depletes serotonin. Do not mix this drug with anything serotonergic, as this can cause serotonin syndrome.", + "classes": { + "psychoactive": [ + "Supplement" + ], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-100 mg", + "note": " NOTE: Do not take this while on a serotonergic drug, only afterwards. Wait at least 12 hours following the last dose in the case of MDMA." + }, + { + "name": "Common", + "value": "100-200 mg", + "note": " NOTE: Do not take this while on a serotonergic drug, only afterwards. Wait at least 12 hours following the last dose in the case of MDMA." + }, + { + "name": "Strong", + "value": "200-300 mg", + "note": " NOTE: Do not take this while on a serotonergic drug, only afterwards. Wait at least 12 hours following the last dose in the case of MDMA." + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + } + ] + } + ] + }, + { + "name": "5-iai", + "url": "https://wiki.tripsit.me/wiki/5-iai", + "aliases": [ + "5iai" + ], + "aliasesStr": "5iai", + "summary": "A monoamine triple releaser first synthesised by David Nichols, possesses similar properties to MDMA. Probably neurotoxic in humans, however the extent of this is unclear.", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "name": "5-it", + "url": "https://wiki.tripsit.me/wiki/5-it", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5IT.shtml", + "aliases": [ + "5-api" + ], + "aliasesStr": "5-api", + "summary": "An empathogenic stimulant with a very long duration, prone to cause overheating and potentially quite dangerous. Related to αMT, though described as being less psychedelic and with much stronger stimulating effects.", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50 mg" + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "90-120 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "1-48 hours" + } + ] + } + ] + }, + { + "name": "5-mapdb", + "url": "https://wiki.tripsit.me/wiki/5-mapdb", + "aliases": [ + "5mapdb" + ], + "aliasesStr": "5mapdb", + "summary": "An entactogenic drug with similar effects to MDMA, it is related to 5-MAPB. Likely to release serotonin and show neurotoxicity in the same way as MDMA", + "classes": { + "psychoactive": [ + "Empathogen", + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-75 mg" + }, + { + "name": "Common", + "value": "75-120 mg" + }, + { + "name": "Strong", + "value": "120-150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-70 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "2-4 hours" + } + ] + } + ] + }, + { + "name": "5-meo-amt", + "url": "https://wiki.tripsit.me/wiki/5-meo-amt", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5MeOAMT.shtml", + "aliases": [ + "5meoamt" + ], + "aliasesStr": "5meoamt", + "summary": "A long-acting psychedelic and entactogenic tryptamine, related to aMT. Very potent and may be sold on blotters. Possibly has been missold as LSD in the past, however this is uncommon. Possibly an MAOI.", + "classes": { + "psychoactive": [ + "Empathogen", + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "0.5-1 mg", + "note": " NOTE: Hospitalizations have occured with as doses as low as 8mg" + }, + { + "name": "Light", + "value": "1-2 mg", + "note": " NOTE: Hospitalizations have occured with as doses as low as 8mg" + }, + { + "name": "Common", + "value": "2-4 mg", + "note": " NOTE: Hospitalizations have occured with as doses as low as 8mg" + }, + { + "name": "Strong", + "value": "4-6 mg", + "note": " NOTE: Hospitalizations have occured with as doses as low as 8mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-120 minutes" + }, + { + "name": "Duration", + "value": "12-18 hours" + }, + { + "name": "After Effects", + "value": "4-24+ hours" + } + ] + } + ] + }, + { + "name": "5-meo-dpt", + "url": "https://wiki.tripsit.me/wiki/5-meo-dpt", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5MeODPT.shtml", + "aliases": [ + "5meodpt" + ], + "aliasesStr": "5meodpt", + "summary": "A rare tryptamine psychedelic and analogue of DPT. Little is known about this compound but it is likely to have effects similar to DPT, DMT and others related compounds.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "3 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Common", + "value": "3-5 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Strong", + "value": "5-10 mg", + "note": " NOTE: These doses are tentative and may need further research." + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + }, + { + "name": "After Effects", + "value": "1-2 hours" + } + ] + } + ] + }, + { + "name": "5-meo-eipt", + "url": "https://wiki.tripsit.me/wiki/5-meo-eipt", + "aliases": [ + "5meoeipt" + ], + "aliasesStr": "5meoeipt", + "summary": "A little known and little studied tryptamine and analogue of EiPT, also related to DiPT and DET. Probably a psychedelic. Few reports of effects.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1-3 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Light", + "value": "3-7 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Common", + "value": "7-15 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Strong", + "value": "15-20 mg", + "note": " NOTE: These doses are tentative and may need further research." + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-10 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2-5 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Light", + "value": "5-10 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Common", + "value": "10-20 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Strong", + "value": "20-25 mg", + "note": " NOTE: These doses are tentative and may need further research." + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "5-10 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "5-meo-malt", + "url": "https://wiki.tripsit.me/wiki/5-meo-malt", + "aliases": [], + "aliasesStr": "", + "summary": "A new and uncommon psychedelic tryptamine related to 5-MeO-DALT. Little is known about it, but its effects are probably similar to other psychedelic tryptamines.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg", + "note": " Note: Due to the massive amount of reports not correlating to the others please start very low and titrate up." + }, + { + "name": "Common", + "value": "10-20 mg", + "note": " Note: Due to the massive amount of reports not correlating to the others please start very low and titrate up." + }, + { + "name": "Strong", + "value": "20 mg", + "note": " Note: Due to the massive amount of reports not correlating to the others please start very low and titrate up." + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Duration", + "value": "1-3 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "15-25 mg", + "note": " Note: Due to the massive amount of reports not correlating to the others please start very low and titrate up." + }, + { + "name": "Common", + "value": "25-50 mg", + "note": " Note: Due to the massive amount of reports not correlating to the others please start very low and titrate up." + }, + { + "name": "Strong", + "value": "50 mg", + "note": " Note: Due to the massive amount of reports not correlating to the others please start very low and titrate up." + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-30 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + } + ] + }, + { + "name": "Vapourized", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg", + "note": " Note: Due to the massive amount of reports not correlating to the others please start very low and titrate up." + }, + { + "name": "Common", + "value": "10-15 mg", + "note": " Note: Due to the massive amount of reports not correlating to the others please start very low and titrate up." + }, + { + "name": "Strong", + "value": "15-20 mg", + "note": " Note: Due to the massive amount of reports not correlating to the others please start very low and titrate up." + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-5 minutes" + }, + { + "name": "Duration", + "value": "0.5-1.5 hours" + } + ] + } + ] + }, + { + "name": "5-meo-met", + "url": "https://wiki.tripsit.me/wiki/5-meo-met", + "aliases": [], + "aliasesStr": "", + "summary": "An obscure psychedelic drug similar in structure to 5-MeO-DMT. Possibly first synthesised by Alexander Shulgin. Likely to have similar effects to other tryptamine psychedelics.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "13-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-45 minutes" + }, + { + "name": "Duration", + "value": "2-3 hours" + }, + { + "name": "After Effects", + "value": "1-2 hours" + } + ] + }, + { + "name": "Vapourized", + "dosage": [ + { + "name": "Light", + "value": "1-5 mg" + }, + { + "name": "Common", + "value": "5-8 mg" + }, + { + "name": "Strong", + "value": "8-12 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-5 minutes" + } + ] + } + ] + }, + { + "name": "5-meo-nipt", + "url": "https://wiki.tripsit.me/wiki/5-meo-nipt", + "aliases": [ + "5meonipt" + ], + "aliasesStr": "5meonipt", + "summary": "A little known and little studied tryptamine and analogue of NiPT, also related to DiPT and DET. Psychedelic, that is generally regarded as not worth the time.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "8-15 mg" + }, + { + "name": "Strong", + "value": "15-25 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-16 hours" + } + ] + } + ] + }, + { + "name": "5-meo-pyr-t", + "url": "https://wiki.tripsit.me/wiki/5-meo-pyr-t", + "aliases": [], + "aliasesStr": "", + "summary": "A very odd acting tryptamine, that is very potent. With doses as low as 3mg vapourised causing complete blocks of memory loss.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-1.5 mg" + }, + { + "name": "Strong", + "value": "1.5-2 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-20 minutes" + }, + { + "name": "Duration", + "value": "2-6 hours" + }, + { + "name": "After Effects", + "value": "1-36 hours" + } + ] + }, + { + "name": "Vapourized", + "dosage": [ + { + "name": "Light", + "value": "0.5-1.5 mg" + }, + { + "name": "Common", + "value": "1.5-2 mg" + }, + { + "name": "Strong", + "value": "2-3 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-2 minutes" + }, + { + "name": "Duration", + "value": "1-5 hours" + } + ] + } + ] + }, + { + "name": "5-methyl-bk-mdea", + "url": "https://wiki.tripsit.me/wiki/5-methyl-bk-mdea", + "aliases": [ + "5-methyl-ethylone", + "5-me" + ], + "aliasesStr": "5-methyl-ethylone, 5-me", + "summary": "Also known as 5-methyl ethylone or 5-ME, this is a cathinone drug and analogue of ethylone. Little is known about this obscure compound but it is reasonable to assume it has an effect profile similar to other stimulants of the cathionone class, with a slightly higher potency than ethylone. Potentially entactogenic and a monoamine releasing agent.", + "classes": { + "psychoactive": [ + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "30-60 mg" + }, + { + "name": "Common", + "value": "60-150 mg" + }, + { + "name": "Strong", + "value": "150-300 mg" + } + ], + "duration": [ + { + "name": "Duration", + "value": "2-3 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-250 mg" + }, + { + "name": "Strong", + "value": "250-400 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + } + ] + } + ] + }, + { + "name": "5-ppdi", + "url": "https://wiki.tripsit.me/wiki/5-ppdi", + "aliases": [], + "aliasesStr": "", + "summary": "An obscure analogue of α-PBP, which is itself an analogue of α-PVP. This rare compound has little history of human usage. Some trip reports suggest it is inactive. If it is active it likely has a similar effect profile to other pyrovalerone stimulants.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "15-30 mg" + }, + { + "name": "Common", + "value": "30-50 mg" + }, + { + "name": "Strong", + "value": "50-70 mg" + }, + { + "name": "Heavy", + "value": "70 " + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "3-6 hours" + } + ] + } + ] + }, + { + "name": "6-eapb", + "url": "https://wiki.tripsit.me/wiki/6-eapb", + "aliases": [], + "aliasesStr": "", + "summary": "A rare entactogen benzofuran structurally related to MDMA and 6-APB, though weaker in effects. the pharmacology of this compound is unclear. Likely to be a monoamine releaser, monoamine reuptake inhibitor or both.", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-75 mg" + }, + { + "name": "Common", + "value": "75-100 mg" + }, + { + "name": "Strong", + "value": "100-150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "4-7 hours" + }, + { + "name": "After Effects", + "value": "1-10 hours" + } + ] + } + ] + }, + { + "name": "6-mapb", + "url": "https://wiki.tripsit.me/wiki/6-mapb", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_6MAPB.shtml", + "aliases": [], + "aliasesStr": "", + "summary": "Empathogen drug that is structurally related to 6-APB and MDMA.", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-100 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "Within minutes" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "20-40 mg" + }, + { + "name": "Common", + "value": "40-80 mg" + }, + { + "name": "Strong", + "value": "80-100 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "Within minutes" + }, + { + "name": "Duration", + "value": "5-10 hours" + }, + { + "name": "After Effects", + "value": "2-4 hours" + } + ] + } + ] + }, + { + "name": "6-mddm", + "url": "https://wiki.tripsit.me/wiki/6-mddm", + "aliases": [ + "6-methylenedihydrodesoxymorphine" + ], + "aliasesStr": "6-methylenedihydrodesoxymorphine", + "summary": "Semisynthetic opioid that is a derivative of Hydromorphone with little history of human use. Roughly around ~80x the potency of Morphine. Structurally related to Desomorphine.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "125 ug", + "note": " NOTE: These dosages are based off the potency and converted to what we have with Morphine's dose. Further research is required." + }, + { + "name": "Common", + "value": "187-250 ug", + "note": " NOTE: These dosages are based off the potency and converted to what we have with Morphine's dose. Further research is required." + }, + { + "name": "Strong", + "value": "375 ug", + "note": " NOTE: These dosages are based off the potency and converted to what we have with Morphine's dose. Further research is required." + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-15 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-10 hours" + } + ] + } + ] + }, + { + "name": "25e-nbome", + "url": "https://wiki.tripsit.me/wiki/25e-nbome", + "aliases": [ + "25e" + ], + "aliasesStr": "25e", + "summary": "A potent psychedelic phenethylamine and derivative of 2C-E, usually sold on blotters. May be mis-sold as LSD. Effects include vivid hallucinations, stimulation, heavy body load and vasoconstriction. At high doses vasoconstriction can endanger life, exercise caution.", + "reagents": "Marquis: Red > Yellow. | Mecke: Green. | Mandelin: Red. | Ehrlich: No colour change.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "50-100 ug" + }, + { + "name": "Light", + "value": "50-200 ug" + }, + { + "name": "Common", + "value": "200-400 ug" + }, + { + "name": "Strong", + "value": "400-800 ug" + } + ] + } + ] + }, + { + "name": "25g-nbome", + "url": "https://wiki.tripsit.me/wiki/25g-nbome", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_25GNBOMe.shtml", + "aliases": [ + "25g", + "25gnbome" + ], + "aliasesStr": "25g, 25gnbome", + "summary": "A rare psychedelic stimulant and bomamine. A derivative of 2C-G, but far more potent. Likely to have hallucinogenic, stimulant and vasoconstrictive properties which may be dangerous at high doses. A heavy body load is to be expected.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Buccal", + "dosage": [ + { + "name": "Threshold", + "value": "500 ug", + "note": " NOTE: Users report wildly varying reactions to the same doses. Start low and work your way up." + }, + { + "name": "Light", + "value": "1000-1500 ug", + "note": " NOTE: Users report wildly varying reactions to the same doses. Start low and work your way up." + }, + { + "name": "Common", + "value": "1500-2000 ug", + "note": " NOTE: Users report wildly varying reactions to the same doses. Start low and work your way up." + }, + { + "name": "Strong", + "value": "2000 ug", + "note": " NOTE: Users report wildly varying reactions to the same doses. Start low and work your way up." + } + ] + }, + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "500 ug", + "note": " NOTE: Users report wildly varying reactions to the same doses. Start low and work your way up." + }, + { + "name": "Light", + "value": "1000-1500 ug", + "note": " NOTE: Users report wildly varying reactions to the same doses. Start low and work your way up." + }, + { + "name": "Common", + "value": "1500-2000 ug", + "note": " NOTE: Users report wildly varying reactions to the same doses. Start low and work your way up." + }, + { + "name": "Strong", + "value": "2000 ug", + "note": " NOTE: Users report wildly varying reactions to the same doses. Start low and work your way up." + } + ] + } + ] + }, + { + "name": "25h-nbome", + "url": "https://wiki.tripsit.me/wiki/25h-nbome", + "aliases": [ + "25h", + "25-h-nbome" + ], + "aliasesStr": "25h, 25-h-nbome", + "summary": "A rare psychedelic stimulant and bomamine. A derivative of 2C-H, but many times more potent. Likely to have hallucinogenic, stimulant and vasoconstrictive properties which may be dangerous at high doses. A heavy body load is to be expected.", + "reagents": "Marquis: Light Brown > Brown. | Mecke: Yellow > Green/Brown. | Mandelin: Green/Brown > Orange. | Simon's: Orange > Black.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "25i-nbf", + "url": "https://wiki.tripsit.me/wiki/25i-nbf", + "aliases": [], + "aliasesStr": "", + "summary": "Is a derivate of the psychedelic 2C-I. Was sold breifly in a few countries before being banned. Based purely on the pharmacological evidence it'll be between 6-8x less potent than it's parent compound 25I-NBOMe.", + "reagents": "Marquis: Dark Green. | Mecke: Orange > Black. | Mandelin: Orange > Black. | Froehde: Orange > Black. | Liebermann: Orange > Black. | Ehrlich: No colour change. | Gallic Acid: Orange > Black.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "25i-nbmd", + "url": "https://wiki.tripsit.me/wiki/25i-nbmd", + "aliases": [], + "aliasesStr": "", + "summary": "A psychedelic phenethylamine that is related to the 25X-NBOMe series which in turn makes it related to the 2C-X series. Quite potent substance.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Sublingual", + "dosage": [ + { + "name": "Light", + "value": "800-1500 ug" + }, + { + "name": "Common", + "value": "1500-2000 ug" + }, + { + "name": "Strong", + "value": "2000-3000 ug" + } + ] + } + ] + }, + { + "name": "25ip-nbome", + "url": "https://wiki.tripsit.me/wiki/25ip-nbome", + "aliases": [ + "25ip" + ], + "aliasesStr": "25ip", + "summary": "Almost unheard-of bomamine analogue of 2C-iP. Extremely potent psychedelic with stimulating qualities. May cause potentially dangerous vasoconstriction at high doses. May induce uncomfortable body load.", + "reagents": "Marquis: Red. | Mecke: Green. | Mandelin: Red and Green. | Froehde: Green. | Liebermann: Yellow > Brown. | Ehrlich: No colour change.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "250 ug" + }, + { + "name": "Light", + "value": "300-750 ug" + }, + { + "name": "Common", + "value": "750-1000 ug" + }, + { + "name": "Strong", + "value": "1000-1500 ug" + } + ] + } + ] + }, + { + "name": "25p-nbome", + "url": "https://wiki.tripsit.me/wiki/25p-nbome", + "aliases": [], + "aliasesStr": "", + "summary": "A rare potent psychedelic drug with similar effects and risks to others in the NBOMe class. Yet no trip reports... when the substance was first sold in mid-late 2012, and resurfaced in early 2015.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "100-250 ug" + }, + { + "name": "Light", + "value": "250-450 ug" + }, + { + "name": "Common", + "value": "450-700 ug" + }, + { + "name": "Strong", + "value": "700-1500 ug" + } + ], + "duration": [ + { + "name": "Onset", + "value": "25-40 minutes" + }, + { + "name": "Duration", + "value": "7-14 hours" + }, + { + "name": "After Effects", + "value": "1-16 hours" + } + ] + } + ] + }, + { + "name": "25t-2-nbome", + "url": "https://wiki.tripsit.me/wiki/25t-2-nbome", + "aliases": [ + "25t2-nbome" + ], + "aliasesStr": "25t2-nbome", + "summary": "A potent serotonin receptor agonist at the 5-HT2a receptor that is of the NBOMe drug class. It is a hallucinogenic and psychedelic with limited recorded human use.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Sublingual", + "dosage": [ + { + "name": "Light", + "value": "100-300 ug" + }, + { + "name": "Common", + "value": "300-600 ug" + }, + { + "name": "Strong", + "value": "600-1000 ug" + } + ] + } + ] + }, + { + "name": "25t-4-nbome", + "url": "https://wiki.tripsit.me/wiki/25t-4-nbome", + "aliases": [ + "25t4-nbome" + ], + "aliasesStr": "25t4-nbome", + "summary": "A psychedelic RC of the NBOMe class of drugs that is expected to cause hallucinations. Limited human use has been recorded on this drug and caution should be used with dosing.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Sublingual", + "dosage": [ + { + "name": "Light", + "value": "150-300 ug" + }, + { + "name": "Common", + "value": "300-750 ug" + }, + { + "name": "Strong", + "value": "750-1200 ug" + } + ] + } + ] + }, + { + "name": "a-pihp", + "url": "https://wiki.tripsit.me/wiki/a-pihp", + "aliases": [ + "pihp" + ], + "aliasesStr": "pihp", + "summary": "Quite new Pyrrolidine based stimulant of the cathinone class. Not very many reports. Probably has a very fast tolerance raise, and lack of effects over time.", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "1-3 mg" + }, + { + "name": "Light", + "value": "3-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "25-40 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-2 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "3-5 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + }, + { + "name": "After Effects", + "value": "6-12 hours" + } + ] + }, + { + "name": "Vapourized", + "dosage": [ + { + "name": "Threshold", + "value": "1-2 mg" + }, + { + "name": "Light", + "value": "2-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1 minutes" + }, + { + "name": "Duration", + "value": "1-3 hours" + } + ] + } + ] + }, + { + "name": "a-pvt", + "url": "https://wiki.tripsit.me/wiki/a-pvt", + "aliases": [ + "apvt" + ], + "aliasesStr": "apvt", + "summary": "A rare stimulant drug related to a-PVP, very uncommon. Probably less potent than a-PVP, however little data exists on this compound or its effects on humans.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "ab-chminaca", + "url": "https://wiki.tripsit.me/wiki/ab-chminaca", + "aliases": [], + "aliasesStr": "", + "summary": "A synthetic cannabinoid related to AB-FUBINACA which has had some mild popularity. There have been reports of death in overdose, similar to AB-FUBINACA and it has a low threshold dose. Exercise caution.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-100 " + }, + { + "name": "Common", + "value": "100-250 " + }, + { + "name": "Strong", + "value": "250-400 " + }, + { + "name": "Heavy", + "value": "400 " + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-80 minutes" + }, + { + "name": "Duration", + "value": "5-12 hours" + }, + { + "name": "After Effects", + "value": "5-12 hours" + } + ] + } + ] + }, + { + "name": "acetildenafil", + "url": "https://wiki.tripsit.me/wiki/acetildenafil", + "aliases": [], + "aliasesStr": "", + "summary": "An RC analogue of sildenafil (viagra) often missold as a hidden ingredient in many 'natural' sexual potency blends and supplements.", + "classes": { + "psychoactive": [ + "Research Chemical" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-40 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-45 minutes" + }, + { + "name": "Duration", + "value": "3-7 hours" + } + ] + } + ] + }, + { + "name": "acryl-fentanyl", + "url": "https://wiki.tripsit.me/wiki/acryl-fentanyl", + "aliases": [], + "aliasesStr": "", + "summary": "A rare opioid and fentanyl analogue (not to be confused with acetyl-fentanyl), this drug is a powerful and potent analgesic. Little reliable information exists, even for basic usage such as dosage. Exercise extreme caution. Overdose may result in respiratory depression. Do not mix with depressants or stimulants. Potentially neurotoxic and carcinogenic.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-12.5 ug", + "note": " Note: Please exercise extreme caution with this substance." + }, + { + "name": "Common", + "value": "12.5-25 ug", + "note": " Note: Please exercise extreme caution with this substance." + }, + { + "name": "Strong", + "value": "25.47 ", + "note": " Note: Please exercise extreme caution with this substance." + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-45 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "1-16 hours" + } + ] + } + ] + }, + { + "name": "adderall", + "url": "https://wiki.tripsit.me/wiki/adderall", + "aliases": [ + "aderal", + "aderall", + "adderal", + "d-amphetamine", + "d-amph" + ], + "aliasesStr": "aderal, aderall, adderal, d-amphetamine, d-amph", + "summary": "A mixture of 75% dextroamphetamine and 25% levoamphetamine. Commonly used to treat obesity, narcolepsy and ADHD. It is also used widely either as a recreational stimulant or study-aid, particularly in the USA where it is frequently prescribed.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Stimulant" + ], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg", + "note": " NOTE: Adderall XR is extended release. Effects take a while to begin, and last much longer" + }, + { + "name": "Common", + "value": "10-30 mg", + "note": " NOTE: Adderall XR is extended release. Effects take a while to begin, and last much longer" + }, + { + "name": "Strong", + "value": "30-50 mg", + "note": " NOTE: Adderall XR is extended release. Effects take a while to begin, and last much longer" + }, + { + "name": "Heavy", + "value": "50-80 mg", + "note": " NOTE: Adderall XR is extended release. Effects take a while to begin, and last much longer" + } + ], + "duration": [ + { + "name": "Duration", + "value": "2-5 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-15 mg", + "note": " NOTE: Adderall XR is extended release. Effects take a while to begin, and last much longer" + }, + { + "name": "Common", + "value": "15-40 mg", + "note": " NOTE: Adderall XR is extended release. Effects take a while to begin, and last much longer" + }, + { + "name": "Strong", + "value": "40-75 mg", + "note": " NOTE: Adderall XR is extended release. Effects take a while to begin, and last much longer" + }, + { + "name": "Heavy", + "value": "75-125 mg", + "note": " NOTE: Adderall XR is extended release. Effects take a while to begin, and last much longer" + } + ], + "duration": [ + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ] + }, + { + "name": "adinazolam", + "url": "https://wiki.tripsit.me/wiki/adinazolam", + "aliases": [ + "deracyn" + ], + "aliasesStr": "deracyn", + "summary": "Benzodiazepine derivative that has some antidepressant properties. Never FDA approved, yet however has been sold as a research chemical.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-25 minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + }, + { + "name": "After Effects", + "value": "1-16 hours" + } + ] + } + ] + }, + { + "name": "aet", + "url": "https://wiki.tripsit.me/wiki/aet", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_AET.shtml", + "aliases": [ + "alpha-ethyl-tryptamine", + "a-et", + "a-ethyltryptamine" + ], + "aliasesStr": "alpha-ethyl-tryptamine, a-et, a-ethyltryptamine", + "summary": "A quite rare substance of the tryptamine class, was first made by Upjohn as an antidepressant. Please use extreme caution if you get the pleasure of trying this drug.", + "classes": { + "psychoactive": [ + "Empathogen", + "Psychedelic", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "80-100 mg" + }, + { + "name": "Common", + "value": "100-125 mg" + }, + { + "name": "Strong", + "value": "125-150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "60-120 minutes" + }, + { + "name": "Duration", + "value": "5-10 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ] + }, + { + "name": "afloqualone", + "url": "https://wiki.tripsit.me/wiki/afloqualone", + "aliases": [], + "aliasesStr": "", + "summary": "A rare analogue of methaqualone, a sedative, intoxicating drug. Similar effects to benzodiazepines, barbiturates and alcohol. Never widely used due to photosensitivity and skin irritation issues, though it has seem some popularity in Japan.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-75 mg" + }, + { + "name": "Common", + "value": "75-100 mg" + }, + { + "name": "Strong", + "value": "100-200 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "60 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "1-3 hours" + } + ] + } + ] + }, + { + "name": "ah-7921", + "url": "https://wiki.tripsit.me/wiki/ah-7921", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_AH7921.shtml", + "aliases": [ + "ah7921" + ], + "aliasesStr": "ah7921", + "summary": "Opioid analgesic that is selective for the μ-opioid receptor. It has around 80% the potency of Morphine when taken orally.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Research Chemical" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "25 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "6-8 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "aleph", + "url": "https://wiki.tripsit.me/wiki/aleph", + "aliases": [ + "dot", + "para-dot" + ], + "aliasesStr": "dot, para-dot", + "summary": "The first sulphur-containing Phenethylamine to have been evaluated for CNS activity for Stimulant or Psychedelic purposes.", + "classes": { + "psychoactive": [ + "Empathogen", + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-6 mg" + }, + { + "name": "Strong", + "value": "6-12 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "5-10 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ] + }, + { + "name": "aleph-2", + "url": "https://wiki.tripsit.me/wiki/aleph-2", + "aliases": [ + "dot-2", + "dot2", + "aleph2" + ], + "aliasesStr": "dot-2, dot2, aleph2", + "summary": "A very rare Phenethylamine, also known as DOT-2, it is the DOx analogue of 2C-T-2. Very little human use recorded. Described as being quite long and highly visual. Likely to be potent, with a reported threshold dose of 3mg.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "allobarbital", + "url": "https://wiki.tripsit.me/wiki/allobarbital", + "aliases": [], + "aliasesStr": "", + "summary": "Is a barbiturate that was first made in 1912. It was primilary used as an anticonvulsant. Yet it has pretty much been outclassed by a newer generation of safer ones. Still in use in Poland.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Tentative" + ], + "chemical": [ + "Barbiturate" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "500-1000 mg" + }, + { + "name": "Common", + "value": "1000-1500 mg" + }, + { + "name": "Strong", + "value": "1500-2000 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "6-10 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "alpha-php", + "url": "https://wiki.tripsit.me/wiki/alpha-php", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_alphaPHP.shtml", + "aliases": [ + "pv-7", + "a-php", + "aphp", + "α-php", + "αphp" + ], + "aliasesStr": "pv-7, a-php, aphp, α-php, αphp", + "summary": "A powerful stimulant cathinone, analogue of alpha-PVP and related to pyrovalerone. Said to have high addictive potential, compulsive redosing and relatively short duration. Often insufflated or vapourised.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-40 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-10 minutes" + }, + { + "name": "Duration", + "value": "2-8 hours" + }, + { + "name": "After Effects", + "value": "1-48 hours" + } + ] + } + ] + }, + { + "name": "am-2201", + "url": "https://wiki.tripsit.me/wiki/am-2201", + "aliases": [ + "am2201" + ], + "aliasesStr": "am2201", + "summary": "A synthetic cannabanoid that is very potent. Active doses start at around 250ug's. Please be cautious with this substance. It has also been noted that it can cause convulsions.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Vapourized", + "dosage": [ + { + "name": "Light", + "value": "250-500 ug" + }, + { + "name": "Common", + "value": "500-1000 ug" + }, + { + "name": "Strong", + "value": "1000-2000 ug" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-3 minutes" + }, + { + "name": "Duration", + "value": "30-90 minutes" + } + ] + } + ] + }, + { + "name": "amfecloral", + "url": "https://wiki.tripsit.me/wiki/amfecloral", + "aliases": [], + "aliasesStr": "", + "summary": "Is a stimulant drug of the Phenethylamine and Amphetamine class. It was used as an appetite suppressant, yet is no longer marketed. It's also interesting that it acts as a prodrug to both Amphetamine and Chloral Hydrate.", + "classes": { + "psychoactive": [ + "Depressant", + "Stimulant" + ], + "chemical": [] + } + }, + { + "name": "amfonelicacid", + "url": "https://wiki.tripsit.me/wiki/amfonelicacid", + "aliases": [ + "aa", + "afa", + "win25978" + ], + "aliasesStr": "aa, afa, win25978", + "summary": "A dopaminergic stimulant discovered by Sterling-Winthrop accidentally while developing antibiotics. Discontinued due to undesirable stimulant effects, it has had some popularity as a recreational drug.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Nootropic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2-4 mg" + }, + { + "name": "Common", + "value": "4-10 mg" + }, + { + "name": "Strong", + "value": "10 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ] + }, + { + "name": "aminorex", + "url": "https://wiki.tripsit.me/wiki/aminorex", + "aliases": [], + "aliasesStr": "", + "summary": "Is an anorectic stimulant drug that was taken of the market after it was found to cause pulmonary hypertension. Potency wise it has been found to be roughly 2.5 times more potent than dextroamphetamine.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "1-3 mg" + }, + { + "name": "Common", + "value": "3-10 mg" + }, + { + "name": "Strong", + "value": "10-25 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + } + ] + } + ] + }, + { + "name": "aminotadalafil", + "url": "https://wiki.tripsit.me/wiki/aminotadalafil", + "aliases": [], + "aliasesStr": "", + "summary": "An analogue of tadafinil, better known as Cialis (Viagra). Infamous for being missold in the 'Alpha Male' sexual enhancement supplement.", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + } + ], + "duration": [ + { + "name": "Duration", + "value": "4-8 hours" + } + ] + } + ] + }, + { + "name": "amobarbital", + "url": "https://wiki.tripsit.me/wiki/amobarbital", + "aliases": [], + "aliasesStr": "", + "summary": "A sedative and hypnotic barbiturate first discovered in 1923. Formerly widely used recreationally and medically, barbiturates have declined in popularity with the appearance of benzodiazepines and other drugs with less serious consequences in overdose.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Barbiturate" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50 mg" + }, + { + "name": "Common", + "value": "50-75 mg" + }, + { + "name": "Strong", + "value": "75-150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "5-9 hours" + }, + { + "name": "After Effects", + "value": "2-12 hours" + } + ] + } + ] + }, + { + "name": "amt", + "url": "https://wiki.tripsit.me/wiki/amt", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_AMT.shtml", + "aliases": [ + "Alpha-methyltryptamine", + "alpha-methyltryptamine", + "alphamethyltryptamine", + "indopan", + "monase" + ], + "aliasesStr": "Alpha-methyltryptamine, alpha-methyltryptamine, alphamethyltryptamine, indopan, monase", + "summary": "A long-acting psychedelic-empathogen with a broad method of action in the brain. Not suitable for combination with many other substances. Used as an anti-depressant in the Soviet Union, but later found popularity in the RC scene, mainly in the UK.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "15-25 mg" + }, + { + "name": "Common", + "value": "25-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Heavy", + "value": "60 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "10-16 hours" + }, + { + "name": "After Effects", + "value": "6-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Dangerous", + "name": "2c-t-x" + }, + { + "status": "Dangerous", + "name": "2c-x" + }, + { + "status": "Dangerous", + "name": "5-meo-xxt" + }, + { + "status": "Caution", + "name": "alcohol", + "note": "aMT has a broad mechanism of action in the brain and so does alcohol so the combination can be unpredictable" + }, + { + "status": "Dangerous", + "name": "amphetamines" + }, + { + "status": "Low Risk & Decrease", + "name": "benzodiazepines" + }, + { + "status": "Low Risk & Decrease", + "name": "benzos" + }, + { + "status": "Caution", + "name": "caffeine", + "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort." + }, + { + "status": "Caution", + "name": "cannabis", + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics. Small amounts can reduce nausea with aMT but take care." + }, + { + "status": "Dangerous", + "name": "cocaine" + }, + { + "status": "Low Risk & Synergy", + "name": "dmt" + }, + { + "status": "Dangerous", + "name": "dox" + }, + { + "status": "Dangerous", + "name": "dxm" + }, + { + "status": "Low Risk & Decrease", + "name": "ghb/gbl" + }, + { + "status": "Low Risk & Synergy", + "name": "ketamine" + }, + { + "status": "Low Risk & Synergy", + "name": "lsd" + }, + { + "status": "Dangerous", + "name": "maois", + "note": "aMT is an MAOI on its own. Using enzyme inhibitors can greatly reduce predictability of effects." + }, + { + "status": "Dangerous", + "name": "mdma" + }, + { + "status": "Dangerous", + "name": "mescaline" + }, + { + "status": "Low Risk & Synergy", + "name": "mushrooms" + }, + { + "status": "Dangerous", + "name": "mxe" + }, + { + "status": "Dangerous", + "name": "nbomes" + }, + { + "status": "Low Risk & Synergy", + "name": "nitrous" + }, + { + "status": "Low Risk & No Synergy", + "name": "opioids", + "note": "No unexpected interactions" + }, + { + "status": "Dangerous", + "name": "pcp" + }, + { + "status": "Dangerous", + "name": "ssris" + }, + { + "status": "Dangerous", + "name": "tramadol" + } + ] + }, + { + "name": "apap", + "url": "https://wiki.tripsit.me/wiki/apap", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Acetaminophen.shtml", + "aliases": [ + "acetaminophen", + "paracetamol", + "tylenol" + ], + "aliasesStr": "acetaminophen, paracetamol, tylenol", + "summary": "A common, over the counter, fever reducer and painkiller. It is mixed with many common opiates. Can cause liver damage and failure in higher doses. No recreational value.", + "classes": { + "psychoactive": [], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "200-500 mg", + "note": " NOTE: Maximum daily dose is 4g" + } + ], + "duration": [ + { + "name": "Onset", + "value": "60-60 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-2 hours" + } + ] + } + ] + }, + { + "name": "ashwagandha", + "url": "https://wiki.tripsit.me/wiki/ashwagandha", + "aliases": [], + "aliasesStr": "", + "summary": "Is an Adaptogen. It is commonly used for its ability to prevent anxiety. It also is helpful in relieving insomnia. It's name means \"Smell of Horse\" due to its smell and the traditional belief that ingesting the this herb will give you the strength and virility of a horse.", + "classes": { + "psychoactive": [ + "Depressant", + "Supplement" + ], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "300-500 " + }, + { + "name": "Common", + "value": "500-1000 " + }, + { + "name": "Strong", + "value": "1000-2000 " + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ] + }, + { + "name": "aspirin", + "url": "https://wiki.tripsit.me/wiki/aspirin", + "aliases": [ + "acetylsalicylate" + ], + "aliasesStr": "acetylsalicylate", + "summary": "A widely used anti-inflammatory and blood-thinner produced by acetylation of the naturally occurring salicyclic acid. Part of the nonsteroidal antiinflammatory class of drugs, a cyclooxygenase inhibitor. Very common over-the-counter pain reliever and fever reducer. Also used in smaller doses to lower risk of heart attack.", + "classes": { + "psychoactive": [], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50 mg", + "note": " NOTE: Aspirin is known to be dangerous in dosages of 4g and above. The duration is dose dependant: 2-3h (for low doses), 15-30h (for large doses)" + }, + { + "name": "Light", + "value": "75 mg", + "note": " NOTE: Aspirin is known to be dangerous in dosages of 4g and above. The duration is dose dependant: 2-3h (for low doses), 15-30h (for large doses)" + }, + { + "name": "Common", + "value": "325 mg", + "note": " NOTE: Aspirin is known to be dangerous in dosages of 4g and above. The duration is dose dependant: 2-3h (for low doses), 15-30h (for large doses)" + }, + { + "name": "Heavy", + "value": "1.6 g", + "note": " NOTE: Aspirin is known to be dangerous in dosages of 4g and above. The duration is dose dependant: 2-3h (for low doses), 15-30h (for large doses)" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + } + ] + } + ] + }, + { + "name": "atomoxetine", + "url": "https://wiki.tripsit.me/wiki/atomoxetine", + "aliases": [ + "strattera" + ], + "aliasesStr": "strattera", + "summary": "A NRI that is used for ADHD. With a quite odd pharmacological background.", + "classes": { + "psychoactive": [ + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "10-18 mg" + }, + { + "name": "Common", + "value": "18-40 mg" + }, + { + "name": "Strong", + "value": "40-80 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "2-24 hours" + } + ] + } + ] + }, + { + "name": "barbital", + "url": "https://wiki.tripsit.me/wiki/barbital", + "aliases": [], + "aliasesStr": "", + "summary": "The first commercially available barbiturate. Was used commonly as a sleeping aid until the 1950s.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Barbiturate" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "650-970 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + } + ] + } + ] + }, + { + "name": "bentazepam", + "url": "https://wiki.tripsit.me/wiki/bentazepam", + "aliases": [ + "thiadipone", + "tiadipona" + ], + "aliasesStr": "thiadipone, tiadipona", + "summary": "Thienodiazepine that is an effective anxiolyric. Liver damage among other nasty things have been reported.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "15-30 mg", + "note": " NOTE: Liver damage has been reported a fair amount, so get your livers checked out regularly if using this substance over a prolonged amount of time." + }, + { + "name": "Common", + "value": "30-50 mg", + "note": " NOTE: Liver damage has been reported a fair amount, so get your livers checked out regularly if using this substance over a prolonged amount of time." + }, + { + "name": "Strong", + "value": "50-75 mg", + "note": " NOTE: Liver damage has been reported a fair amount, so get your livers checked out regularly if using this substance over a prolonged amount of time." + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ] + }, + { + "name": "benzodioxole-fentanyl", + "url": "https://wiki.tripsit.me/wiki/benzodioxole-fentanyl", + "aliases": [], + "aliasesStr": "", + "summary": "An analogue of Fentanyl that is not found in literature.", + "classes": { + "psychoactive": [ + "Depressant", + "Opioid", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "bk-2c-b", + "url": "https://wiki.tripsit.me/wiki/bk-2c-b", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_BK2CB.shtml", + "aliases": [ + "bk-2cb", + "bk-2-cb", + "b-k-2cb", + "b-k2cb", + "b-k2-cb", + "b-k2-c-b", + "b-k-2-c-b", + "bk2cb" + ], + "aliasesStr": "bk-2cb, bk-2-cb, b-k-2cb, b-k2cb, b-k2-cb, b-k2-c-b, b-k-2-c-b, bk2cb", + "summary": "A long-acting psychedelic and empathogen with unpredictable effectiveness. Roughly double the duration of 2c-b. Inactivated by high pH.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical" + ], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "50-60 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Common", + "value": "80-100 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Strong", + "value": "100-150 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Heavy", + "value": "150 mg", + "note": " NOTE: These doses are tentative and may need further research." + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-70 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "bk-2c-i", + "url": "https://wiki.tripsit.me/wiki/bk-2c-i", + "aliases": [], + "aliasesStr": "", + "summary": "Novel psychedelic that is the Beta-Ketone derivative of 2C-I.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "100-120 mg" + }, + { + "name": "Common", + "value": "120-180 mg" + }, + { + "name": "Strong", + "value": "180-250 mg" + }, + { + "name": "Heavy", + "value": "250 mg" + } + ] + } + ] + }, + { + "name": "bk-ivp", + "url": "https://wiki.tripsit.me/wiki/bk-ivp", + "aliases": [], + "aliasesStr": "", + "summary": "The beta-ketone analogue of IVP, this is a rare RC stimulant in the same family as MDPV. Little is known but effects are probably similar to MDPV or more generally amphetamine or high dose caffeine.", + "classes": { + "psychoactive": [ + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "60-100 mg", + "note": "Rapid onset." + }, + { + "name": "Common", + "value": "100-150 mg", + "note": "Rapid onset." + }, + { + "name": "Strong", + "value": "150-200 mg", + "note": "Rapid onset." + } + ], + "duration": [ + { + "name": "Duration", + "value": "1-3 hours" + } + ] + } + ] + }, + { + "name": "bod", + "url": "https://wiki.tripsit.me/wiki/bod", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_BOD.shtml", + "aliases": [], + "aliasesStr": "", + "summary": "Beta-methoxy analogue of 2C-D, seems to be more \"mild\" than the likes of 2C-X and DOX compounds. Is 50/50 whether the body load is barely there, or overpowering the experience.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "12-15 mg" + }, + { + "name": "Light", + "value": "15-20 mg" + }, + { + "name": "Common", + "value": "20-30 mg" + }, + { + "name": "Heavy", + "value": "30-40 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "60-120 minutes" + }, + { + "name": "Duration", + "value": "8-14 hours" + }, + { + "name": "After Effects", + "value": "3-6 hours" + } + ] + } + ] + }, + { + "name": "bromadol", + "url": "https://wiki.tripsit.me/wiki/bromadol", + "aliases": [ + "bdpc" + ], + "aliasesStr": "bdpc", + "summary": "A very potent opioid that has an arylcyclohexylamine structure. Intial studies estimated that it was ~10,000x Morphine in animal studies. However that value has since decreased to ~504 times the potency of morphine for the trans-isomer.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "brotizolam", + "url": "https://wiki.tripsit.me/wiki/brotizolam", + "aliases": [ + "lendormin" + ], + "aliasesStr": "lendormin", + "summary": "Benzodiazepine analogue which is sedating, hypnotic and anxiolytic. It is available as prescription medicine in much of Europe, and is an extremely potent drug active at only 80ug. May cause amnesia and lowered inhibitions in overdose. Danger of respiratory depression when combined with other depressants. Short half life.", + "classes": { + "psychoactive": [ + "Depressant", + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "80 ug" + }, + { + "name": "Light", + "value": "100 ug" + }, + { + "name": "Common", + "value": "200-400 ug" + }, + { + "name": "Strong", + "value": "400 ug" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + } + ] + }, + { + "name": "buphedrone", + "url": "https://wiki.tripsit.me/wiki/buphedrone", + "aliases": [], + "aliasesStr": "", + "summary": "A cathinone stimulant first discovered in 1928, has gained some modest popularity as a mephedrone replacement. Said to be to be around 2-3x more potent than methcathinone.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "10-30 mg" + }, + { + "name": "Common", + "value": "30-50 mg" + }, + { + "name": "Heavy", + "value": "50-80 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-20 minutes" + }, + { + "name": "Duration", + "value": "2-3 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ] + }, + { + "name": "butyrfentanyl", + "url": "https://wiki.tripsit.me/wiki/butyrfentanyl", + "aliases": [ + "bf", + "b-f" + ], + "aliasesStr": "bf, b-f", + "summary": "Potent short-acting opioid and fentanyl analogue. Often dispensed in a nasal spray. This is an highly potent drug - exercise extreme caution. May cause respiratory depression and death in overdose.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "400-800 ug", + "note": " Note: It's a potent drug, be careful." + }, + { + "name": "Common", + "value": "800-1500 ug", + "note": " Note: It's a potent drug, be careful." + }, + { + "name": "Strong", + "value": "1.5-3 mg", + "note": " Note: It's a potent drug, be careful." + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "3-4 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + } + ] + }, + { + "name": "bzp", + "url": "https://wiki.tripsit.me/wiki/bzp", + "aliases": [], + "aliasesStr": "", + "summary": "A stimulant that was sold as \"legal ecstasy\" in the late 2000s, and was one of the first drugs widely marketed as a \"research chemical.\" It has a much less favourable effect profile and has fallen out of popularity greatly since it was banned in many countries.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "40-70 mg" + }, + { + "name": "Common", + "value": "70-100 mg" + }, + { + "name": "Strong", + "value": "100-130 mg" + }, + { + "name": "Heavy", + "value": "130 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "2-4 hours" + } + ] + } + ] + }, + { + "name": "c30-nbome", + "url": "https://wiki.tripsit.me/wiki/c30-nbome", + "aliases": [], + "aliasesStr": "", + "summary": "Inactive, if you do feel effects from \"C30-NBOMe\" you're either having the placebo effect of the world, or are being sold something else, and I recommend you send it in for testing somewhere.", + "classes": { + "psychoactive": [ + "Inactive", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "name": "camazepam", + "url": "https://wiki.tripsit.me/wiki/camazepam", + "aliases": [ + "albego", + "limpidon", + "paxor" + ], + "aliasesStr": "albego, limpidon, paxor", + "summary": "A benzodiazepine drug that is stronger in terms of anxiety relief than it is in terms of how hypnotic it is. It is a metabolite of diazepam and has limited anticonvulsant properties.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Tentative" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Heavy", + "value": "40 " + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "carphedon", + "url": "https://wiki.tripsit.me/wiki/carphedon", + "aliases": [ + "phenylpiracetam", + "phenotropil" + ], + "aliasesStr": "phenylpiracetam, phenotropil", + "summary": "A nootropic and piracetam analogue also known as fonturacetam, this drug has been shown to have potential memory enhancing, anxiolytic, anti-amnesia and anti-depressive effects, however has little recreational value. Around 45x more potent than Piracetam.", + "classes": { + "psychoactive": [ + "Nootropic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "100-200 mg", + "note": "Rapid onset. Typically taken up to three times a day." + } + ], + "duration": [ + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + } + ] + }, + { + "name": "centrophenoxine", + "url": "https://wiki.tripsit.me/wiki/centrophenoxine", + "aliases": [ + "lucidril", + "meclofenoxate" + ], + "aliasesStr": "lucidril, meclofenoxate", + "summary": "Cholinergic compound with a DMAE compotent. Is thought to help in reversing some signs of aging. Naturally found substance, most notably in fish.", + "classes": { + "psychoactive": [ + "Nootropic", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "250 mg" + } + ], + "duration": [ + { + "name": "Duration", + "value": "4-8 hours" + } + ] + } + ] + }, + { + "name": "chloral-betaine", + "url": "https://wiki.tripsit.me/wiki/chloral-betaine", + "aliases": [], + "aliasesStr": "", + "summary": "Sedative-hypnotic drug that was introduced into the United States in the 60's. Betaine complex with Chloral hydrate, thus makes it act as an extended version of Chloral hydrate then to Trichloroethanol, which is responsible for most of its effects.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "125-250 mg" + }, + { + "name": "Common", + "value": "250-500 mg" + }, + { + "name": "Strong", + "value": "500-1000 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "3-7 hours" + }, + { + "name": "After Effects", + "value": "2-8 hours" + } + ] + } + ] + }, + { + "name": "chloroform", + "url": "https://wiki.tripsit.me/wiki/chloroform", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Chloroform.shtml", + "aliases": [], + "aliasesStr": "", + "summary": "A naturally occurring organic compound once used as an anaesthetic. Has practically disappeared in this usage due to numerous harmful effects including danger of sudden death through cardiac arrhythmia. Has been implicated in numerous murders. Highly unsafe.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "cialis", + "url": "https://wiki.tripsit.me/wiki/cialis", + "aliases": [], + "aliasesStr": "", + "summary": "Tadalafil, a PDE5 inhibitor used to combat erectile disfunction. Dangerous in combination with other drugs which lower blood pressure.", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "2.5-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Duration", + "value": "4-6 hours" + } + ] + } + ] + }, + { + "name": "citalopram", + "url": "https://wiki.tripsit.me/wiki/citalopram", + "aliases": [ + "celexa", + "cipramil" + ], + "aliasesStr": "celexa, cipramil", + "summary": "Citalopram is an SSRI that is used to treat depression. It does not lead to a high and causes a wide range of negative psychological and physical effects when people attempt to abuse it and can lead to serotonin syndrome and cause suicidal ideation. Those with bipolar disorder tend to go into a mixed state or manic states when trying SSRI's.", + "classes": { + "psychoactive": [ + "SSRI" + ], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "20-40 mg" + } + ] + } + ] + }, + { + "name": "clobazam", + "url": "https://wiki.tripsit.me/wiki/clobazam", + "aliases": [ + "frisium" + ], + "aliasesStr": "frisium", + "summary": "A long acting benzodiazepine which focuses primarily on anxiolytic and anticonvulsant properties. It is used medically to treat epilepsy, and this along with its relatively many negative side-effects and contraindications in comparison with other benzodiazepines means it isn't frequently used recreationally.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg", + "note": " NOTE: 20mg of Clobazam is approximately equal to 10mg of Diazepam" + }, + { + "name": "Common", + "value": "10-15 mg", + "note": " NOTE: 20mg of Clobazam is approximately equal to 10mg of Diazepam" + }, + { + "name": "Heavy", + "value": "15-30 mg", + "note": " NOTE: 20mg of Clobazam is approximately equal to 10mg of Diazepam" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "clomethiazole", + "url": "https://wiki.tripsit.me/wiki/clomethiazole", + "aliases": [], + "aliasesStr": "", + "summary": "Structurally related to Thiamine (vitamin B1), but with binding potential at the GABAa site, which causes it to produce effects most like those of a barbiturate: an effective sedative and hypnotic. Originally developed by Hoffman-LaRoche in the 1930s, it has seen use as a treatment for acute alcohol withdrawal.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "100 mg" + }, + { + "name": "Light", + "value": "100-150 mg" + }, + { + "name": "Common", + "value": "150-200 mg" + }, + { + "name": "Heavy", + "value": "200 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-40 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "1-16 hours" + } + ] + } + ] + }, + { + "name": "cloniprazepam", + "url": "https://wiki.tripsit.me/wiki/cloniprazepam", + "aliases": [], + "aliasesStr": "", + "summary": "Prodrug for Clonazepam.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Tentative" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Strong", + "value": "2-4 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "6-9 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ] + }, + { + "name": "clonitazene", + "url": "https://wiki.tripsit.me/wiki/clonitazene", + "aliases": [], + "aliasesStr": "", + "summary": "An opioid that is roughly three times as potent as Morphine. Is related to Etonitazene, which is about 1000-1500x the potency of Morphine.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Research Chemical" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "2.5-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-15 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ] + }, + { + "name": "clorazepate", + "url": "https://wiki.tripsit.me/wiki/clorazepate", + "aliases": [ + "tranxene", + "novo-clopate", + "tranzene" + ], + "aliasesStr": "tranxene, novo-clopate, tranzene", + "summary": "Is a prodrug for Desmethyldiazepam which is responsible for most of the therapeutic effects. Has a long half life, with the addition of Desmethyldiazepam as the main metabolite, which makes it much longer.", + "classes": { + "psychoactive": [ + "Depressant", + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-40 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-80 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ] + }, + { + "name": "clotiazepam", + "url": "https://wiki.tripsit.me/wiki/clotiazepam", + "aliases": [ + "clozan", + "distensan", + "trecalmo", + "rize", + "rizen", + "veratran" + ], + "aliasesStr": "clozan, distensan, trecalmo, rize, rizen, veratran", + "summary": "Is a thienodiazepine substance. It differs from most other benzodiazepines in which the benzene ring has been replaced by a thiophene ring.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Tentative" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "2.5-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-15 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "4-8 hours" + } + ] + } + ] + }, + { + "name": "cloxazolam", + "url": "https://wiki.tripsit.me/wiki/cloxazolam", + "aliases": [], + "aliasesStr": "", + "summary": "Benzodiazepine derivate that is metabolised into Delorazepam. Which is where most of its effects come from.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "1.5-3 mg" + }, + { + "name": "Common", + "value": "3-6 mg" + }, + { + "name": "Strong", + "value": "6-12 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "7-12 hours" + }, + { + "name": "After Effects", + "value": "4-12 hours" + } + ] + } + ] + }, + { + "name": "coronaridine", + "url": "https://wiki.tripsit.me/wiki/coronaridine", + "aliases": [], + "aliasesStr": "", + "summary": "Alkaloid found in Tabernanthe iboga and related species. Persistently reduces the self-administration of Cocaine and Morphine in rats.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "crl-40-940", + "url": "https://wiki.tripsit.me/wiki/crl-40-940", + "aliases": [ + "flmodafinil", + "lauflumide", + "bisfluoromodafinil" + ], + "aliasesStr": "flmodafinil, lauflumide, bisfluoromodafinil", + "summary": "Bisfluoro analogue Modafinil. Has been sold online as a research chemical. Was patented in 2013. Is slightly more potent than Armodafinil.", + "classes": { + "psychoactive": [ + "Nootropic", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "20-40 mg" + }, + { + "name": "Common", + "value": "40-75 mg" + }, + { + "name": "Strong", + "value": "75-150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ] + }, + { + "name": "crl-40-941", + "url": "https://wiki.tripsit.me/wiki/crl-40-941", + "aliases": [ + "fladrafinil", + "fluoromodafinil" + ], + "aliasesStr": "fladrafinil, fluoromodafinil", + "summary": "A substance closely related to Adrafinil and Modafinil. It is the bis(p-fluoro) ring derivative of Adrafinil.", + "classes": { + "psychoactive": [ + "Nootropic", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-250 mg" + }, + { + "name": "Strong", + "value": "250-350 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "6-14 hours" + }, + { + "name": "After Effects", + "value": "1-10 hours" + } + ] + } + ] + }, + { + "name": "cyclizine", + "url": "https://wiki.tripsit.me/wiki/cyclizine", + "aliases": [], + "aliasesStr": "", + "summary": "First generation antihistamine and anticholinergic drug used to combat nausea and vomiting. Causes drowsiness. Like most antihistamines in high doses it induces delirium and vivid realistic hallucinations. Probably uncomfortable and not enjoyable.", + "classes": { + "psychoactive": [ + "Depressant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "25-50 mg", + "note": " NOTE: The provided dosages are intended for therapeutic use." + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours. hours" + }, + { + "name": "After Effects", + "value": "14 hours" + } + ] + } + ] + }, + { + "name": "cyclo-methiodrone", + "url": "https://wiki.tripsit.me/wiki/cyclo-methiodrone", + "aliases": [], + "aliasesStr": "", + "summary": "Empathogen with strong stimulant effects, very loosely related to benzylpiperidine.", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "30-45 mg" + }, + { + "name": "Common", + "value": "45-65 mg" + }, + { + "name": "Strong", + "value": "65-90 mg" + }, + { + "name": "Heavy", + "value": "90 " + } + ], + "duration": [ + { + "name": "Onset", + "value": "25-45 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + } + ] + } + ] + }, + { + "name": "cyclobenzaprine", + "url": "https://wiki.tripsit.me/wiki/cyclobenzaprine", + "aliases": [ + "flexeril", + "apo-cyclobenzaprin", + "fexmid", + "novo-cycloprine" + ], + "aliasesStr": "flexeril, apo-cyclobenzaprin, fexmid, novo-cycloprine", + "summary": "Muscle relaxant and CNS depressant used to relieve skeletal muscle spasms and associated pain in acute musculoskeletal conditions. Sometimes prescribed off-label for treatment of fibromyalgia or as a sleep aid. Has little recreational value alone, but may potentiate some opioids. May cause drowsiness, dry mouth and dizziness.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-15 mg" + }, + { + "name": "Heavy", + "value": "15 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "cyclopentyl-fentanyl", + "url": "https://wiki.tripsit.me/wiki/cyclopentyl-fentanyl", + "aliases": [ + "cp-f", + "cpf" + ], + "aliasesStr": "cp-f, cpf", + "summary": "An analogue of fentanyl that is unknown in literature, seems to be less potent than its former being Acetyl-Fentanyl. Yet reports have yet to surface. Be careful.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "cyclopropylmescaline", + "url": "https://wiki.tripsit.me/wiki/cyclopropylmescaline", + "aliases": [ + "cpm", + "4-cyclopropylmethoxy-3" + ], + "aliasesStr": "cpm, 4-cyclopropylmethoxy-3", + "summary": "Cyclopropylmescaline, AKA CPM, is a psychedelic/hallucinogenic that was produced by Alexander Shulgin. It causes visual and auditory hallucinations and lasts quite a long time. Little is known about it so caution must be used when trying out this substance.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-60 mg" + }, + { + "name": "Common", + "value": "60-70 mg" + }, + { + "name": "Strong", + "value": "70-80 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "12-18 hours" + }, + { + "name": "After Effects", + "value": "6-8 hours" + } + ] + } + ] + }, + { + "name": "d2pm", + "url": "https://wiki.tripsit.me/wiki/d2pm", + "aliases": [ + "diphenylprolinol" + ], + "aliasesStr": "diphenylprolinol", + "summary": "An NDRI, which is reported as being rather lackluster.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "15-20 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Common", + "value": "20-35 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Strong", + "value": "35-50 mg", + "note": " NOTE: These doses are tentative and may need further research." + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-30 minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "dalt", + "url": "https://wiki.tripsit.me/wiki/dalt", + "aliases": [ + "n,n-diallyltryptamine", + "diallyltryptamine" + ], + "aliasesStr": "n,n-diallyltryptamine, diallyltryptamine", + "summary": "Psychedelic drug of the tryptamine class.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "20-40 mg" + }, + { + "name": "Common", + "value": "40-60 mg" + }, + { + "name": "Strong", + "value": "60 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + } + ] + }, + { + "name": "db-mdbp", + "url": "https://wiki.tripsit.me/wiki/db-mdbp", + "aliases": [], + "aliasesStr": "", + "summary": "Inactive.", + "classes": { + "psychoactive": [ + "Inactive" + ], + "chemical": [] + } + }, + { + "name": "dehydroxyfluorafinil", + "url": "https://wiki.tripsit.me/wiki/dehydroxyfluorafinil", + "aliases": [ + "modafiendz" + ], + "aliasesStr": "modafiendz", + "summary": "Nootropic of the benzhydryl class. Closely related to Adrafinil and Modafinil. Was branded as \"Modafiendz\" through some research chemical vendors.", + "classes": { + "psychoactive": [ + "Nootropic", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "150-200 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "2-24 hours" + } + ] + } + ] + }, + { + "name": "delorazepam", + "url": "https://wiki.tripsit.me/wiki/delorazepam", + "aliases": [ + "nordiclazepam" + ], + "aliasesStr": "nordiclazepam", + "summary": "Also known as chlordesmethyldiazepam, this uncommon benzodiazepine compound is primarily used for treatment of anxiety and alcohol withdrawal, due to its long half-life (60-140 hours). It is also the active metabolite of diclazepam and cloxazolam.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "0.25-0.5 mg", + "note": " NOTE: Higher doses increase the chances of blacking out. 1mg Delorazepam is approximately equal to 10mg Diazepam." + }, + { + "name": "Common", + "value": "0.5-1.5 mg", + "note": " NOTE: Higher doses increase the chances of blacking out. 1mg Delorazepam is approximately equal to 10mg Diazepam." + }, + { + "name": "Strong", + "value": "1.5-2 mg", + "note": " NOTE: Higher doses increase the chances of blacking out. 1mg Delorazepam is approximately equal to 10mg Diazepam." + }, + { + "name": "Heavy", + "value": "2-3 mg", + "note": " NOTE: Higher doses increase the chances of blacking out. 1mg Delorazepam is approximately equal to 10mg Diazepam." + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "12-16 hours" + }, + { + "name": "After Effects", + "value": "72 hours" + } + ] + } + ] + }, + { + "name": "demerol", + "url": "https://wiki.tripsit.me/wiki/demerol", + "aliases": [ + "pethidine", + "meperidine" + ], + "aliasesStr": "pethidine, meperidine", + "summary": "A phenylpiperidine opioid first synthesised by Otto Eisleb in 1939, better known by the names meperidine and pethidine. An analgesic, once widely prescribed it has since declined in usage due to the discovery of a toxic metabolite - norpethidine. Also reacts dangerously with many drugs.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-200 mg" + }, + { + "name": "Strong", + "value": "200-400 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "2-10 hours" + } + ] + } + ] + }, + { + "name": "desmethylflunitrazepam", + "url": "https://wiki.tripsit.me/wiki/desmethylflunitrazepam", + "aliases": [ + "fonazepam", + "ro05-4435", + "norflunitrazepam" + ], + "aliasesStr": "fonazepam, ro05-4435, norflunitrazepam", + "summary": "Benzodiazepine that is a metabolite of Flunitrazepam, and has been sold as a research chemical.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Research Chemical" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Strong", + "value": "2-4 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "5-10 hours" + }, + { + "name": "After Effects", + "value": "2-12 hours" + } + ] + } + ] + }, + { + "name": "dexedrine", + "url": "https://wiki.tripsit.me/wiki/dexedrine", + "aliases": [ + "dextroamphetamine", + "dexamfetamine" + ], + "aliasesStr": "dextroamphetamine, dexamfetamine", + "summary": "A highly abusable stimulant. It is rarely prescribed in the US to treat ADHD, and is very similar in effects to Adderall, as its main ingredient is 75% of what adderall is.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Stimulant" + ], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-30 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "2-24 hours" + } + ] + } + ] + }, + { + "name": "dibutylone", + "url": "https://wiki.tripsit.me/wiki/dibutylone", + "aliases": [], + "aliasesStr": "", + "summary": "Inactive.", + "classes": { + "psychoactive": [ + "Inactive" + ], + "chemical": [] + } + }, + { + "name": "diclofensine", + "url": "https://wiki.tripsit.me/wiki/diclofensine", + "aliases": [ + "ro8-4650" + ], + "aliasesStr": "ro8-4650", + "summary": "A triple monoamine reuptake inhibitor developed by Hoffman-LaRoche in the 1970s as an antidepressant but discontinued, probably due to high abuse potential. Has not become popular as a recreational drug at this time. Acts as an SNDRI, mostly inhibits dopamine and noradrenaline.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "12-15 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Light", + "value": "30-40 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Common", + "value": "40-60 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Heavy", + "value": "60-80 mg", + "note": " NOTE: These doses are tentative and may need further research." + } + ], + "duration": [ + { + "name": "Duration", + "value": "4-6 hours" + } + ] + } + ] + }, + { + "name": "diethyl-ether", + "url": "https://wiki.tripsit.me/wiki/diethyl-ether", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Ether.shtml", + "aliases": [ + "ether" + ], + "aliasesStr": "ether", + "summary": "An industrial solvent which is sometimes used recreationally as a dissociative anaesthetic, with a short length of action. Effects are similar to alcohol. Leaves one's breath tasting and smelling strongly of ether for much longer than the experience lasts.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "dimemebfe", + "url": "https://wiki.tripsit.me/wiki/dimemebfe", + "aliases": [ + "5-meo-bfe" + ], + "aliasesStr": "5-meo-bfe", + "summary": "Related in structure to 5-MeO-DMT, yet much less potent. Described as feeling somewhat similar to mushrooms, with some empathogenic effects.", + "classes": { + "psychoactive": [ + "Empathogen", + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "25-50 mg" + }, + { + "name": "Common", + "value": "50-75 mg" + }, + { + "name": "Strong", + "value": "75-125 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-40 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + } + ] + } + ] + }, + { + "name": "dimethylone", + "url": "https://wiki.tripsit.me/wiki/dimethylone", + "aliases": [], + "aliasesStr": "", + "summary": "Inactive.", + "classes": { + "psychoactive": [ + "Inactive" + ], + "chemical": [] + } + }, + { + "name": "dipipanone", + "url": "https://wiki.tripsit.me/wiki/dipipanone", + "aliases": [ + "diconal" + ], + "aliasesStr": "diconal", + "summary": "A powerful opioid of equivalent strength to morphine, rarely seen outside of medical environments. Often used to treat severe pain where morphine is contraindicated. Usually found in combination with the antihistamine Cyclizine, which potentiates it.", + "classes": { + "psychoactive": [ + "Depressant", + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "3-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "dmaa", + "url": "https://wiki.tripsit.me/wiki/dmaa", + "aliases": [], + "aliasesStr": "", + "summary": "Also known as methylhexanamine, this sympathetomimetic drug was developed as a nasal decongestant by Eli Lilly in the 1940s. It has been used as a weight loss aid and missold as a dietary supplement and component of some energy drinks. Carries a risk of heart attack, stroke and other life-threatening cardiovascular issues.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Nootropic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5-10 mg", + "note": "Rapid onset." + }, + { + "name": "Light", + "value": "10-20 mg", + "note": "Rapid onset." + }, + { + "name": "Common", + "value": "20-50 mg", + "note": "Rapid onset." + }, + { + "name": "Strong", + "value": "50-100 mg", + "note": "Rapid onset." + } + ], + "duration": [ + { + "name": "Duration", + "value": "2-4 hours" + } + ] + } + ] + }, + { + "name": "dmt", + "url": "https://wiki.tripsit.me/wiki/dmt", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DMT.shtml", + "aliases": [ + "n,n-dmt", + "dimethyltryptamine" + ], + "aliasesStr": "n,n-dmt, dimethyltryptamine", + "summary": "A popular and powerful psychedelic, typically used in two ways; either it is vapourised for a short 'breakthrough' experience, or it is taken in combination with an enzyme inhibitor for a long, intense trip (this is also known as ayahuasca or pharmahuasca).", + "classes": { + "psychoactive": [ + "Psychedelic" + ], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "10-25 mg", + "note": " NOTE: These figures are for 100% effective vaporization methods. Most methods are not 100% effective. Likelyhood of having a \"breakthrough\" experience increases with dose." + }, + { + "name": "Common", + "value": "25-50 mg", + "note": " NOTE: These figures are for 100% effective vaporization methods. Most methods are not 100% effective. Likelyhood of having a \"breakthrough\" experience increases with dose." + }, + { + "name": "Strong", + "value": "50-125 mg", + "note": " NOTE: These figures are for 100% effective vaporization methods. Most methods are not 100% effective. Likelyhood of having a \"breakthrough\" experience increases with dose." + } + ], + "duration": [ + { + "name": "Onset", + "value": "3-5 minutes" + }, + { + "name": "Duration", + "value": "45-60 minutes" + } + ] + }, + { + "name": "Intravenous", + "dosage": [ + { + "name": "Light", + "value": "10-15 mg", + "note": " NOTE: These figures are for 100% effective vaporization methods. Most methods are not 100% effective. Likelyhood of having a \"breakthrough\" experience increases with dose." + }, + { + "name": "Common", + "value": "15-25 mg", + "note": " NOTE: These figures are for 100% effective vaporization methods. Most methods are not 100% effective. Likelyhood of having a \"breakthrough\" experience increases with dose." + }, + { + "name": "Strong", + "value": "25-40 mg", + "note": " NOTE: These figures are for 100% effective vaporization methods. Most methods are not 100% effective. Likelyhood of having a \"breakthrough\" experience increases with dose." + } + ] + }, + { + "name": "Vapourized", + "dosage": [ + { + "name": "Threshold", + "value": "5-10 mg", + "note": " NOTE: These figures are for 100% effective vaporization methods. Most methods are not 100% effective. Likelyhood of having a \"breakthrough\" experience increases with dose." + }, + { + "name": "Light", + "value": "10-15 mg", + "note": " NOTE: These figures are for 100% effective vaporization methods. Most methods are not 100% effective. Likelyhood of having a \"breakthrough\" experience increases with dose." + }, + { + "name": "Common", + "value": "15-25 mg", + "note": " NOTE: These figures are for 100% effective vaporization methods. Most methods are not 100% effective. Likelyhood of having a \"breakthrough\" experience increases with dose." + }, + { + "name": "Strong", + "value": "25-35 mg", + "note": " NOTE: These figures are for 100% effective vaporization methods. Most methods are not 100% effective. Likelyhood of having a \"breakthrough\" experience increases with dose." + }, + { + "name": "Heavy", + "value": "35 mg", + "note": " NOTE: These figures are for 100% effective vaporization methods. Most methods are not 100% effective. Likelyhood of having a \"breakthrough\" experience increases with dose." + } + ], + "duration": [ + { + "name": "Onset", + "value": "0-2 minutes" + }, + { + "name": "Duration", + "value": "3-10 minutes" + } + ] + } + ], + "interactions": [ + { + "status": "Low Risk & Synergy", + "name": "2c-t-x" + }, + { + "status": "Low Risk & Synergy", + "name": "2c-x" + }, + { + "status": "Low Risk & Synergy", + "name": "5-meo-xxt" + }, + { + "status": "Low Risk & Decrease", + "name": "alcohol" + }, + { + "status": "Caution", + "name": "amphetamines", + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences" + }, + { + "status": "Low Risk & Synergy", + "name": "amt" + }, + { + "status": "Low Risk & Decrease", + "name": "benzodiazepines" + }, + { + "status": "Low Risk & Decrease", + "name": "benzos" + }, + { + "status": "Low Risk & No Synergy", + "name": "caffeine" + }, + { + "status": "Caution", + "name": "cannabis", + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics." + }, + { + "status": "Caution", + "name": "cocaine", + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences" + }, + { + "status": "Low Risk & Synergy", + "name": "dox" + }, + { + "status": "Low Risk & Synergy", + "name": "dxm" + }, + { + "status": "Low Risk & Decrease", + "name": "ghb/gbl" + }, + { + "status": "Low Risk & Synergy", + "name": "ketamine" + }, + { + "status": "Low Risk & Synergy", + "name": "lsd" + }, + { + "status": "Low Risk & Synergy", + "name": "maois" + }, + { + "status": "Low Risk & Synergy", + "name": "mdma" + }, + { + "status": "Low Risk & Synergy", + "name": "mescaline" + }, + { + "status": "Low Risk & Synergy", + "name": "mushrooms" + }, + { + "status": "Low Risk & Synergy", + "name": "mxe" + }, + { + "status": "Low Risk & Synergy", + "name": "nbomes" + }, + { + "status": "Low Risk & Synergy", + "name": "nitrous" + }, + { + "status": "Low Risk & No Synergy", + "name": "opioids" + }, + { + "status": "Low Risk & Synergy", + "name": "pcp" + }, + { + "status": "Low Risk & Decrease", + "name": "ssris" + }, + { + "status": "Unsafe", + "name": "tramadol", + "note": "Tramadol is well known to lower seizure threshold and psychedelics also cause occasional seizures." + } + ] + }, + { + "name": "doet", + "url": "https://wiki.tripsit.me/wiki/doet", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DOET.shtml", + "aliases": [ + "doe" + ], + "aliasesStr": "doe", + "summary": "A potent and long acting psychedelic stimulant and substituted amphetamine, similar in effects to other DOx compounds. First synthesised by Alexander Shulgin.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Light", + "value": "2-4 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Common", + "value": "4-6 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Strong", + "value": "6-10 mg", + "note": " NOTE: These doses are tentative and may need further research." + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-3 hours" + }, + { + "name": "Duration", + "value": "12-30 hours" + }, + { + "name": "After Effects", + "value": "12-72 hours" + } + ] + } + ] + }, + { + "name": "doip", + "url": "https://wiki.tripsit.me/wiki/doip", + "aliases": [], + "aliasesStr": "", + "summary": "A rare psychedelic ampthetamine of the same class as the likes of DOM. Is a quite powerful and potent psychedelic that has very strong amphetamine effects. Not for the faint of heart.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "800 ug", + "note": " Note: This is based on personal experience as no trip reports have surfaced in the three years it's been on the market, so take with caution." + }, + { + "name": "Light", + "value": "800-1500 ug", + "note": " Note: This is based on personal experience as no trip reports have surfaced in the three years it's been on the market, so take with caution." + }, + { + "name": "Common", + "value": "1.5-3 mg", + "note": " Note: This is based on personal experience as no trip reports have surfaced in the three years it's been on the market, so take with caution." + }, + { + "name": "Strong", + "value": "3 mg", + "note": " Note: This is based on personal experience as no trip reports have surfaced in the three years it's been on the market, so take with caution." + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-120 minutes" + }, + { + "name": "Duration", + "value": "18-30 hours" + }, + { + "name": "After Effects", + "value": "1-48 hours" + } + ] + } + ] + }, + { + "name": "don", + "url": "https://wiki.tripsit.me/wiki/don", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DON.shtml", + "aliases": [], + "aliasesStr": "", + "summary": "A very rare psychedelic Amphetamine. That is more rough on the body then other DOx compounds. Making it physically painful in some cases.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Light", + "value": "3 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Common", + "value": "3-5 mg", + "note": " NOTE: These doses are tentative and may need further research." + }, + { + "name": "Heavy", + "value": "5 mg", + "note": " NOTE: These doses are tentative and may need further research." + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-120 minutes" + }, + { + "name": "Duration", + "value": "14-22 hours" + }, + { + "name": "After Effects", + "value": "12-24 hours" + } + ] + } + ] + }, + { + "name": "dopr", + "url": "https://wiki.tripsit.me/wiki/dopr", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DOPR.shtml", + "aliases": [], + "aliasesStr": "", + "summary": "A rare psychedelic amphetamine of the same class as DOM. This is a powerful and potent psychedelic with all the effects you would expect from an amphetamine. Described by Shulgin as a 'heavy duty psychedelic'. Analogue of 2C-P.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "1.25 mg" + }, + { + "name": "Light", + "value": "2.5 mg" + }, + { + "name": "Common", + "value": "2.5-3.5 mg" + }, + { + "name": "Heavy", + "value": "3.5-5 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "90-240 minutes" + }, + { + "name": "Duration", + "value": "18-30 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ] + }, + { + "name": "doxylamine", + "url": "https://wiki.tripsit.me/wiki/doxylamine", + "aliases": [], + "aliasesStr": "", + "summary": "A first generation antihistamine and anticholinergic, originally used to treat nausea and itching, and later as a sleep aid. Causes drowsiness, and delirium in overdose. Sometimes used with opioids to combat nausea and potentiate effects.", + "classes": { + "psychoactive": [ + "Deliriant", + "Depressant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "75-200 mg" + }, + { + "name": "Common", + "value": "200-350 mg" + }, + { + "name": "Heavy", + "value": "350 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-30 minutes" + }, + { + "name": "Duration", + "value": "6-8 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "dph", + "url": "https://wiki.tripsit.me/wiki/dph", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Diphenhydramine.shtml", + "aliases": [ + "diphenhydramine", + "benadryl" + ], + "aliasesStr": "diphenhydramine, benadryl", + "summary": "An antihistamine which, when taken in smaller doses relieves allergies and insomnia. In larger doses works as a deliriant and can actually keep the user awake. Generally the 'high' of this drug is reported as dysphoric, potentially causing hallucinations indistinguishable from reality.", + "classes": { + "psychoactive": [ + "Deliriant", + "Depressant" + ], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "100-250 mg", + "note": " NOTE: The doses provided are for recreational usage. For use as a sleep aid the dose ranges from 25-100mg, or as specified on the product packaging." + }, + { + "name": "Common", + "value": "200-500 mg", + "note": " NOTE: The doses provided are for recreational usage. For use as a sleep aid the dose ranges from 25-100mg, or as specified on the product packaging." + }, + { + "name": "Strong", + "value": "450-700 mg", + "note": " NOTE: The doses provided are for recreational usage. For use as a sleep aid the dose ranges from 25-100mg, or as specified on the product packaging." + } + ], + "duration": [ + { + "name": "Onset", + "value": "60-120 minutes" + }, + { + "name": "Duration", + "value": "6-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "dramamine", + "url": "https://wiki.tripsit.me/wiki/dramamine", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Dimenhydrinate.shtml", + "aliases": [ + "dimenhydrinate", + "gravol" + ], + "aliasesStr": "dimenhydrinate, gravol", + "summary": "A combination of diphenhydramine and a mild stimulant to counteract the drowsiness accompanied by typical medical use of diphenhydramine. Roughly half the potency of DPH. Small doses can relieve motion sickness, reduce body load from opioids or DXM. Becomes a deliriant in high doses, keeping the user awake and often causing dysphoric, realistic hallucinations.", + "classes": { + "psychoactive": [ + "Deliriant", + "Depressant" + ], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "100-250 mg", + "note": " NOTE: since this is a delirant, we advise against taking it, yet we can't stop you from ingesting it." + }, + { + "name": "Common", + "value": "250 mg", + "note": " NOTE: since this is a delirant, we advise against taking it, yet we can't stop you from ingesting it." + }, + { + "name": "Strong", + "value": "400 mg", + "note": " NOTE: since this is a delirant, we advise against taking it, yet we can't stop you from ingesting it." + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + } + ] + } + ] + }, + { + "name": "dxm", + "url": "https://wiki.tripsit.me/wiki/dxm", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DXM.shtml", + "aliases": [ + "dextromethorphan", + "robo", + "syrup", + "robotussin", + "dex", + "robitussin" + ], + "aliasesStr": "dextromethorphan, robo, syrup, robotussin, dex, robitussin", + "summary": "Commonly found in certain over the counter cough medicines. Has dissociative effects similar to ketamine or MXE, though also shares properties with opioids and alcohol. Make sure DXM is the only active ingredient in the preparation.", + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming" + ], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "1.5-2.5 mg", + "note": " NOTE: See http://dxm.tripsit.me for mg/lb doses, among other things. Deaths have been reported at 25mg/kg" + }, + { + "name": "Common", + "value": "2.5-7.5 mg", + "note": " NOTE: See http://dxm.tripsit.me for mg/lb doses, among other things. Deaths have been reported at 25mg/kg" + }, + { + "name": "Strong", + "value": "7.5-15 mg", + "note": " NOTE: See http://dxm.tripsit.me for mg/lb doses, among other things. Deaths have been reported at 25mg/kg" + }, + { + "name": "Heavy", + "value": "15-20 mg", + "note": " NOTE: See http://dxm.tripsit.me for mg/lb doses, among other things. Deaths have been reported at 25mg/kg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Duration", + "value": "6-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Unsafe", + "name": "2c-t-x" + }, + { + "status": "Low Risk & Synergy", + "name": "2c-x" + }, + { + "status": "Unsafe", + "name": "5-meo-xxt", + "note": "Little information exists about this combination." + }, + { + "status": "Dangerous", + "name": "alcohol", + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place affected patients in the recovery position to prevent vomit aspiration from excess. Additionally CNS depression can lead to difficulty breathing. Avoid on anything higher than 1st plateau." + }, + { + "status": "Unsafe", + "name": "amphetamines", + "note": "Both substances raise heart rate, in extreme cases, panic attacks caused by these drugs have led to more serious heart issues." + }, + { + "status": "Dangerous", + "name": "amt" + }, + { + "status": "Caution", + "name": "benzodiazepines", + "note": "Small doses of benzos can end a bad trip, but both substances potentiate the ataxia and sedation caused by the other and this can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position." + }, + { + "status": "Caution", + "name": "benzos", + "note": "Small doses of benzos can end a bad trip, but both substances potentiate the ataxia and sedation caused by the other and this can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position." + }, + { + "status": "Low Risk & No Synergy", + "name": "caffeine", + "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort." + }, + { + "status": "Low Risk & Synergy", + "name": "cannabis" + }, + { + "status": "Unsafe", + "name": "cocaine", + "note": "Both substances raise heart rate, in extreme cases, panic attacks caused by these drugs have led to more serious heart issues" + }, + { + "status": "Low Risk & Synergy", + "name": "dmt" + }, + { + "status": "Unsafe", + "name": "dox", + "note": "The DOx class as psychedelic stimulants have the potential to mask the effects of DXM and could lead to redosing to an unsafe level. DXM can also potentiate DOx resulting in an unpleasantly intense experience." + }, + { + "status": "Dangerous", + "name": "ghb/gbl", + "note": "Both substances cause ataxia and bring a risk of vomiting and unconsciousness. If the patient falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position. This combination is hard to predict" + }, + { + "status": "Low Risk & No Synergy", + "name": "ketamine" + }, + { + "status": "Low Risk & Synergy", + "name": "lsd" + }, + { + "status": "Dangerous", + "name": "maois", + "note": "High risk of serotonin syndrome" + }, + { + "status": "Dangerous", + "name": "mdma" + }, + { + "status": "Low Risk & Synergy", + "name": "mescaline" + }, + { + "status": "Low Risk & Synergy", + "name": "mushrooms" + }, + { + "status": "Low Risk & No Synergy", + "name": "mxe" + }, + { + "status": "Unsafe", + "name": "nbomes" + }, + { + "status": "Low Risk & Synergy", + "name": "nitrous" + }, + { + "status": "Dangerous", + "name": "opioids", + "note": "CNS depression, difficult breathing, heart issues, hepatoxic, just very unsafe combination all around. Additionally if one takes dxm, their tolerance of opiates goes down slightly, thus causing additional synergistic effects." + }, + { + "status": "Dangerous", + "name": "pcp" + }, + { + "status": "Dangerous", + "name": "ssris", + "note": "High risk of serotonin syndrome." + }, + { + "status": "Dangerous", + "name": "tramadol" + } + ] + }, + { + "name": "eflea", + "url": "https://wiki.tripsit.me/wiki/eflea", + "aliases": [], + "aliasesStr": "", + "summary": "Prodrug for EDMA. May be inactive.", + "classes": { + "psychoactive": [ + "Inactive", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "escitalopram", + "url": "https://wiki.tripsit.me/wiki/escitalopram", + "aliases": [ + "lexapro", + "cipralex" + ], + "aliasesStr": "lexapro, cipralex", + "classes": { + "psychoactive": [ + "SSRI" + ], + "chemical": [] + } + }, + { + "name": "estazolam", + "url": "https://wiki.tripsit.me/wiki/estazolam", + "aliases": [ + "prosom", + "eurodin", + "elprazolam" + ], + "aliasesStr": "prosom, eurodin, elprazolam", + "summary": "A rarely prescribed medium-duration prescription benzodiazepine. Mainly used as a hypnotic, it can cause amnesia and lowered inhibitions in excess.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Strong", + "value": "2-4 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "7-12 hours" + }, + { + "name": "After Effects", + "value": "2-24 hours" + } + ] + } + ] + }, + { + "name": "ethaqualone", + "url": "https://wiki.tripsit.me/wiki/ethaqualone", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Etaqualone.shtml", + "aliases": [ + "etaqualone" + ], + "aliasesStr": "etaqualone", + "summary": "Analogue of Methaqualone that was mostly marketed in France. Slightly weaker and shorter acting than the prior.", + "classes": { + "psychoactive": [ + "Depressant", + "Depressant", + "Habit Forming", + "Research Chemical" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "100-175 mg" + }, + { + "name": "Common", + "value": "175-300 mg" + }, + { + "name": "Strong", + "value": "300-450 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "2-6 hours" + } + ] + } + ] + }, + { + "name": "ethketamine", + "url": "https://wiki.tripsit.me/wiki/ethketamine", + "aliases": [ + "n-ethyl-norketamine", + "nek", + "n-ethylnorketamine" + ], + "aliasesStr": "n-ethyl-norketamine, nek, n-ethylnorketamine", + "summary": "Ethketamine is a research chemical with properties similar to ketamine. While ketamine is a dissociative anesthetic producing hallucinogenic and sedative effects, recreational users have reported euphoria and dissociation when using NENK.", + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming", + "Research Chemical" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "15-40 mg" + }, + { + "name": "Common", + "value": "40-90 mg" + }, + { + "name": "Strong", + "value": "90-160 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "1-3 hours" + } + ] + } + ] + }, + { + "name": "ethyl-pentedrone", + "url": "https://wiki.tripsit.me/wiki/ethyl-pentedrone", + "aliases": [ + "nep", + "n-ethylpentedrone" + ], + "aliasesStr": "nep, n-ethylpentedrone", + "summary": "A stimulant that came out around the same time as Ethyl-Hexedrone, not much information on it. Is in the cathinone family of substances. Related to Pentedrone.", + "classes": { + "psychoactive": [ + "Empathogen", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 " + }, + { + "name": "Strong", + "value": "40-60 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + } + ] + } + ] + }, + { + "name": "ethylcathinone", + "url": "https://wiki.tripsit.me/wiki/ethylcathinone", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Ethylcathinone.shtml", + "aliases": [ + "ethcathinone", + "e-cat", + "eth-cat" + ], + "aliasesStr": "ethcathinone, e-cat, eth-cat", + "summary": "Ethylcathinone is a synthetic stimulant. It is similar to ecstasy in the sense that it provides euphoria, feelings of empathy and openness, and a desire to talk with others. It also carries over to some of the negative effects of ecstasy, such as insomnia, tightened jaw muscles, and grinding of the teeth.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5-20 mg" + }, + { + "name": "Light", + "value": "15-30 mg" + }, + { + "name": "Common", + "value": "35-70 mg" + }, + { + "name": "Strong", + "value": "75-100 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Duration", + "value": "1-2 hours" + }, + { + "name": "After Effects", + "value": "30-90 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "30-50 mg" + }, + { + "name": "Light", + "value": "50-80 mg" + }, + { + "name": "Common", + "value": "80-150 mg" + }, + { + "name": "Strong", + "value": "150-300 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + }, + { + "name": "After Effects", + "value": "2-3 hours" + } + ] + } + ] + }, + { + "name": "etodesnitazene", + "url": "https://wiki.tripsit.me/wiki/etodesnitazene", + "aliases": [ + "etazene" + ], + "aliasesStr": "etazene" + }, + { + "name": "fasoracetam", + "url": "https://wiki.tripsit.me/wiki/fasoracetam", + "aliases": [], + "aliasesStr": "", + "summary": "A substance in the racetam family. Appears to be a GABA(B) agonist, and has shown to block memory disruptions caused by Baclofen, another GABA(B) Agonist. Similar to another compound in the racetam family Coluracetam, it enhances High affinity choline reuptake (HACU). Also research is conducted if it helps with ADHD and Congitive impairment.", + "classes": { + "psychoactive": [ + "Nootropic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "2.5-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-25 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-45 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "fluclotizolam", + "url": "https://wiki.tripsit.me/wiki/fluclotizolam", + "aliases": [], + "aliasesStr": "", + "summary": "A derivative of Etizolam. There are conflicting reports on its dosage, though claims have been made that it is approximately 3x the potency of Etizolam, with a shorter half-life.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "250 ug", + "note": " Note: These doses are extremely tentative and will vary from user to user depending on many factors including but not limited to tolerance." + }, + { + "name": "Common", + "value": "250-500 ug", + "note": " Note: These doses are extremely tentative and will vary from user to user depending on many factors including but not limited to tolerance." + }, + { + "name": "Strong", + "value": "500-750 ug", + "note": " Note: These doses are extremely tentative and will vary from user to user depending on many factors including but not limited to tolerance." + }, + { + "name": "Heavy", + "value": "750 ug", + "note": " Note: These doses are extremely tentative and will vary from user to user depending on many factors including but not limited to tolerance." + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-14 hours" + } + ] + } + ] + }, + { + "name": "fluorolintane", + "url": "https://wiki.tripsit.me/wiki/fluorolintane", + "aliases": [], + "aliasesStr": "", + "summary": "A dissociative anaesthetic also known as 2-FPPP, very little is known about this obscure and rare drug. Reported by some to be stimulating, having effects similar to other dissociative drugs such as PCP and ketamine.", + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "75-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "150-250 mg" + }, + { + "name": "Heavy", + "value": "250 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "2-6 hours" + } + ] + } + ] + }, + { + "name": "fluorophenibut", + "url": "https://wiki.tripsit.me/wiki/fluorophenibut", + "aliases": [], + "aliasesStr": "", + "summary": "An anxiolytic analogue of GABA and Phenibut, with similar activity to the latter. Expected to be 5-10 times as potent as phenibut, some preliminary reports suggest tolerance builds more slowly.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "200-250 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "60-120 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ] + }, + { + "name": "fluoxetine", + "url": "https://wiki.tripsit.me/wiki/fluoxetine", + "aliases": [ + "prozac", + "sarafem" + ], + "aliasesStr": "prozac, sarafem", + "classes": { + "psychoactive": [ + "SSRI" + ], + "chemical": [] + } + }, + { + "name": "flurazepam", + "url": "https://wiki.tripsit.me/wiki/flurazepam", + "aliases": [ + "dalmane" + ], + "aliasesStr": "dalmane", + "summary": "Benzodiazepine with an extremely long half life, between 40 and 250 hours. Mainly used for general anxiety disorder. Sedating, hypnotic, anxiolytic. Potential for amnesia and reduced inhibitions in overdose.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-60 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Duration", + "value": "12-16 hours" + }, + { + "name": "After Effects", + "value": "2-48 hours" + } + ] + } + ] + }, + { + "name": "flutazolam", + "url": "https://wiki.tripsit.me/wiki/flutazolam", + "aliases": [], + "aliasesStr": "", + "summary": "A benzodiazepine derivative. It was invented in Japan, and has mainly stayed in that area. Similar potency to Diazepam, yet produces a more marked sedation and impaired coordination. Usually used as a treatment for Insomnia. A hypnotic and sedative which may cause amnesia and lowered inhibitions in high doses.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "2.5-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-15 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "3-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "flutoprazepam", + "url": "https://wiki.tripsit.me/wiki/flutoprazepam", + "aliases": [ + "restas" + ], + "aliasesStr": "restas", + "summary": "A potent benzodiazepine that is roughly 4-5x the potency of Diazepam and has a longer duration, rarely seen outside of Japan. Sedative, hypnotic and anxiolytic. May cause amnesia and loss of inhibitions in excess. Do not mix with other depressants.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1.5-3 mg" + }, + { + "name": "Strong", + "value": "3-5 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "12-16 hours" + }, + { + "name": "After Effects", + "value": "24-36 hours" + } + ] + } + ] + }, + { + "name": "fluvoxamine", + "url": "https://wiki.tripsit.me/wiki/fluvoxamine", + "aliases": [ + "luvox", + "faverin" + ], + "aliasesStr": "luvox, faverin", + "classes": { + "psychoactive": [ + "SSRI" + ], + "chemical": [] + } + }, + { + "name": "focalin", + "url": "https://wiki.tripsit.me/wiki/focalin", + "aliases": [ + "dexmethylphenidate", + "dextromethylphenidate" + ], + "aliasesStr": "dexmethylphenidate, dextromethylphenidate", + "summary": "The psychoactive isomer of methylphenidate, mostly used to treat ADHD. Twice as potent as methylphenidate, and is said to have cleaner psychostimulant effects with fewer side effects.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Stimulant" + ], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-30 mg" + }, + { + "name": "Strong", + "value": "30-40 mg" + }, + { + "name": "Heavy", + "value": "40-50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Duration", + "value": "9-12 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "furanylfentanyl", + "url": "https://wiki.tripsit.me/wiki/furanylfentanyl", + "aliases": [ + "fu-f", + "furanyl-fentanyl" + ], + "aliasesStr": "fu-f, furanyl-fentanyl", + "summary": "An extremely potent opioid analgesic and analogue of fentanyl. Concrete information is difficult to obtain about even basic properties like active dose, though it is believed to be slightly less potent and shorter in duration than butyrfentanyl. Exercise extreme caution. Will cause respiratory depression in overdose.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "200-400 ug", + "note": " NOTE: Very potent opioid, be very careful while dosing." + }, + { + "name": "Common", + "value": "400-800 ug", + "note": " NOTE: Very potent opioid, be very careful while dosing." + }, + { + "name": "Strong", + "value": "800-1600 ug", + "note": " NOTE: Very potent opioid, be very careful while dosing." + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "300-500 ug", + "note": " NOTE: Very potent opioid, be very careful while dosing." + }, + { + "name": "Common", + "value": "500-900 ug", + "note": " NOTE: Very potent opioid, be very careful while dosing." + }, + { + "name": "Strong", + "value": "900-1600 ug", + "note": " NOTE: Very potent opioid, be very careful while dosing." + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-10 minutes" + }, + { + "name": "Duration", + "value": "1-3 hours" + }, + { + "name": "After Effects", + "value": "1-3 hours" + } + ] + } + ] + }, + { + "name": "g-130", + "url": "https://wiki.tripsit.me/wiki/g-130", + "aliases": [], + "aliasesStr": "", + "summary": "Stimulant that is related to Phenmetrazine. Nearly no information on dose or effects.", + "classes": { + "psychoactive": [ + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "gaba", + "url": "https://wiki.tripsit.me/wiki/gaba", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_GABA.shtml", + "aliases": [], + "aliasesStr": "", + "summary": "Gamma-Aminobutyric Acid. Supplement used in calming some down. Does not pass the brain blood barrier.", + "classes": { + "psychoactive": [ + "Depressant", + "Supplement" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "200-400 mg" + }, + { + "name": "Common", + "value": "400-800 mg" + }, + { + "name": "Strong", + "value": "800-1600 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-60 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "1-2 hours" + } + ] + } + ] + }, + { + "name": "glutethimide", + "url": "https://wiki.tripsit.me/wiki/glutethimide", + "aliases": [ + "doriden", + "elrodorm", + "noxyron", + "glimid" + ], + "aliasesStr": "doriden, elrodorm, noxyron, glimid", + "summary": "Is a hypnotic sedative that was introduced in 1954, as a \"safe\" alternative to barbiturates to treat insomnia. Anecdotally long term use has had effects similar to withdrawal, while still on a stable dose of the drug.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "250 mg" + }, + { + "name": "Common", + "value": "500 mg" + }, + { + "name": "Strong", + "value": "750 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "2-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "halazepam", + "url": "https://wiki.tripsit.me/wiki/halazepam", + "aliases": [ + "paxipam" + ], + "aliasesStr": "paxipam", + "summary": "A less common prescription benzodiazepine and derivative of Nordazepam. Also known as Paxipam, it is no longer prescribed in the USA. Sedating, hypnotic and anxiolytic. High doses may induce amnesia and lowered inhibitions.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-80 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "8-14 hours" + }, + { + "name": "After Effects", + "value": "12-40 hours" + } + ] + } + ] + }, + { + "name": "halothane", + "url": "https://wiki.tripsit.me/wiki/halothane", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Halothane.shtml", + "aliases": [], + "aliasesStr": "", + "summary": "A powerful inhalant anaesthetic generally used in a medical setting to induce unconsciousness, as a supplement with ketamine or fentanyl.", + "classes": { + "psychoactive": [ + "Depressant", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "hdep-28", + "url": "https://wiki.tripsit.me/wiki/hdep-28", + "aliases": [ + "ethylnaphthidate" + ], + "aliasesStr": "ethylnaphthidate", + "summary": "Most likely a TRI, such as HDMP-28, short history of human use.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-35 mg" + }, + { + "name": "Strong", + "value": "35-60 mg" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "15-30 mg" + }, + { + "name": "Common", + "value": "30-50 mg" + }, + { + "name": "Strong", + "value": "50-100 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-15 minutes" + }, + { + "name": "Duration", + "value": "2-5 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ] + }, + { + "name": "hdmp-28", + "url": "https://wiki.tripsit.me/wiki/hdmp-28", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_HDMP28.shtml", + "aliases": [ + "methylnaphtidate" + ], + "aliasesStr": "methylnaphtidate", + "summary": "Also commonly known as methylnapthidate. A functional stimulant similar to methylphenidate but with a longer duration. Not especially recreational.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "8-10 mg" + }, + { + "name": "Light", + "value": "10-15 " + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-10 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ] + }, + { + "name": "hexen", + "url": "https://wiki.tripsit.me/wiki/hexen", + "aliases": [ + "ethyl-hexedrone", + "n-ethylhexedrone", + "hex-en", + "n-ethyl-hexedrone" + ], + "aliasesStr": "ethyl-hexedrone, n-ethylhexedrone, hex-en, n-ethyl-hexedrone", + "summary": "A cathinone based stimulant. Hexen (aka Ethyl-Hexedrone) acts as an NDRI to produce it's effects, and as with most cathinones has a fast onset and short duration. This drug has very little history of human consumption and next to no research/data, and therefor should be treated with caution as a research chemical.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5-15 mg" + }, + { + "name": "Light", + "value": "15-25 mg" + }, + { + "name": "Common", + "value": "25-40 mg" + }, + { + "name": "Strong", + "value": "40-50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "1-4 hours" + }, + { + "name": "After Effects", + "value": "2-6 hours" + } + ] + } + ] + }, + { + "name": "hexobarbital", + "url": "https://wiki.tripsit.me/wiki/hexobarbital", + "aliases": [], + "aliasesStr": "", + "summary": "Is a barbiturate that was once used for inducing anesthesia for surgery. It has a very rapid onset, and a short duration of effects.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Tentative" + ], + "chemical": [ + "Barbiturate" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "10-15 mg", + "note": " Note: Take this with a grain of salt maybe." + }, + { + "name": "Common", + "value": "15-20 mg", + "note": " Note: Take this with a grain of salt maybe." + }, + { + "name": "Strong", + "value": "20-30 mg", + "note": " Note: Take this with a grain of salt maybe." + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-2 minutes" + }, + { + "name": "Duration", + "value": "30-45 minutes" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + } + ] + }, + { + "name": "homomazindol", + "url": "https://wiki.tripsit.me/wiki/homomazindol", + "aliases": [], + "aliasesStr": "", + "summary": "A potent analogue of mazindol, a rare, atypical stimulant drug and appetite suppressant occasionally prescribed in cases of severe obesity.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "homosildenafil", + "url": "https://wiki.tripsit.me/wiki/homosildenafil", + "aliases": [], + "aliasesStr": "", + "summary": "An analogue of sildenafil (viagra) with similar effects. Has been missold in certain 'herbal' blends and dietary supplements for sexual potency. Little is known about the pharmacology or safety profile of this drug in humans, potentially less potent than sildenafil.", + "classes": { + "psychoactive": [ + "Research Chemical" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "10-25 mg" + }, + { + "name": "Common", + "value": "25-50 mg" + }, + { + "name": "Strong", + "value": "50-100 mg" + } + ], + "duration": [ + { + "name": "Duration", + "value": "5-9 hours" + } + ] + } + ] + }, + { + "name": "hot-2", + "url": "https://wiki.tripsit.me/wiki/hot-2", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_HOT2.shtml", + "aliases": [ + "hot2" + ], + "aliasesStr": "hot2", + "summary": "A rather rare psychedelic phenylethylamine that is the hydroxylated version and prodrug for 2C-T-2.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "8 mg" + }, + { + "name": "Light", + "value": "10-12 mg" + }, + { + "name": "Common", + "value": "12-15 mg" + }, + { + "name": "Strong", + "value": "15-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "5-12 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "hot-7", + "url": "https://wiki.tripsit.me/wiki/hot-7", + "aliases": [ + "hot7" + ], + "aliasesStr": "hot7", + "summary": "A rather rare psychedelic phenylethylamine that is the hydroxylated version and prodrug for 2C-T-7.", + "classes": { + "psychoactive": [ + "Empathogen", + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "15 mg", + "note": " NOTE: Start low as there is a weird dose curve with this substance, and there also could be possible MAOI effect just like with 2C-T-7." + }, + { + "name": "Light", + "value": "15-20 mg", + "note": " NOTE: Start low as there is a weird dose curve with this substance, and there also could be possible MAOI effect just like with 2C-T-7." + }, + { + "name": "Common", + "value": "20-30 mg", + "note": " NOTE: Start low as there is a weird dose curve with this substance, and there also could be possible MAOI effect just like with 2C-T-7." + }, + { + "name": "Strong", + "value": "30-40 mg", + "note": " NOTE: Start low as there is a weird dose curve with this substance, and there also could be possible MAOI effect just like with 2C-T-7." + } + ], + "duration": [ + { + "name": "Onset", + "value": "60-180 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "huperzine-a", + "url": "https://wiki.tripsit.me/wiki/huperzine-a", + "aliases": [ + "h-a" + ], + "aliasesStr": "h-a", + "summary": "A compound that is extracted from the herbs of Huperziceae family. Is known as an acetylcholinesterase inhibitor, which stops an enzyme from breaking down acetylcholine which results in increases in acetylcholine. Is currently in preliminary trials for Alzheimer's.", + "classes": { + "psychoactive": [ + "Nootropic", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "50-75 ug", + "note": " Note: This substance is usually taken once a day, and is usually \"cycled\" off after 2-4 weeks. The optimal amount of time to break for in unknown as of yet. The doses are the same as for Oral." + }, + { + "name": "Common", + "value": "75-150 ug", + "note": " Note: This substance is usually taken once a day, and is usually \"cycled\" off after 2-4 weeks. The optimal amount of time to break for in unknown as of yet. The doses are the same as for Oral." + }, + { + "name": "Strong", + "value": "150 ug", + "note": " Note: This substance is usually taken once a day, and is usually \"cycled\" off after 2-4 weeks. The optimal amount of time to break for in unknown as of yet. The doses are the same as for Oral." + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-2 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + } + ] + } + ] + }, + { + "name": "hydroxyzine", + "url": "https://wiki.tripsit.me/wiki/hydroxyzine", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Hydroxyzine.shtml", + "aliases": [ + "vistaril", + "atarax" + ], + "aliasesStr": "vistaril, atarax", + "summary": "An antihistamine drug commonly prescribed for anxiety, itchiness, nausea, and insomnia. Hydroxyzine has also been used to potentiate the analgesia of opioids as well as diminishing the negative effects of opioids, such as itchiness.", + "classes": { + "psychoactive": [ + "Deliriant", + "Depressant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "25-100 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ] + }, + { + "name": "ibuprofen", + "url": "https://wiki.tripsit.me/wiki/ibuprofen", + "aliases": [], + "aliasesStr": "", + "summary": "A ubiquitously available pain reliever/fever reducer. Ibuprofen is a nonsteroidal anti-inflammatory drug, available in many forms. It is sometimes used to reduce the body-load caused by certain drugs, such as stimulants.", + "classes": { + "psychoactive": [], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "400-800 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1 hours" + }, + { + "name": "Duration", + "value": "4-6 hours" + } + ] + } + ] + }, + { + "name": "indapex", + "url": "https://wiki.tripsit.me/wiki/indapex", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5MeOTMT.shtml", + "aliases": [ + "5-meo-tmt" + ], + "aliasesStr": "5-meo-tmt", + "summary": "5-MEO-TMT, one of Shulgin's lesser known creations. A psychedelic tryptamine little heard of outside of TiHKaL with very little known information about its effects on humans. May be particularly given to causing nausea.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "60-75 mg", + "note": " Note: Very odd dosing curve. So be careful." + }, + { + "name": "Common", + "value": "75-100 mg", + "note": " Note: Very odd dosing curve. So be careful." + }, + { + "name": "Strong", + "value": "100-150 mg", + "note": " Note: Very odd dosing curve. So be careful." + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-50 minutes" + }, + { + "name": "Duration", + "value": "5-10 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ] + }, + { + "name": "indapyrophenidone", + "url": "https://wiki.tripsit.me/wiki/indapyrophenidone", + "aliases": [], + "aliasesStr": "", + "summary": "Indane analogue of Pyrophenidone, a NDRI stimulant with a short duration.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "20-40 mg" + }, + { + "name": "Common", + "value": "40-60 mg" + }, + { + "name": "Strong", + "value": "60-90 mg" + }, + { + "name": "Heavy", + "value": "90 mg" + } + ], + "duration": [ + { + "name": "Duration", + "value": "1-3 hours" + } + ] + }, + { + "name": "Vapourized", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "25-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + } + ], + "duration": [ + { + "name": "Duration", + "value": "1-1.5 hours" + } + ] + } + ] + }, + { + "name": "isomethadone", + "url": "https://wiki.tripsit.me/wiki/isomethadone", + "aliases": [], + "aliasesStr": "", + "summary": "Once a pharmaceutical drug also known as isoamidone, this opioid analgesic and methadone analogue was withdrawn from the market and is seldom seen today. Rarely abused, though reports state it is around twice as potent as methadone, and more euphoric.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "1.5-2.5 mg" + }, + { + "name": "Common", + "value": "2.5-7.5 mg" + }, + { + "name": "Strong", + "value": "7.5-15 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "30-40 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ] + }, + { + "name": "isophenmetrazine", + "url": "https://wiki.tripsit.me/wiki/isophenmetrazine", + "aliases": [], + "aliasesStr": "", + "summary": "Rare and little known analogue of phenmetrazine, which is slightly more potent than other analogues. Probably a stimulating, appetite supressing drug with high addiction potential. Potentially a dopamine and/or norepinephrine releasing agent.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-15 mg" + }, + { + "name": "Strong", + "value": "20-40 mg" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "isoproscaline", + "url": "https://wiki.tripsit.me/wiki/isoproscaline", + "aliases": [ + "ip" + ], + "aliasesStr": "ip", + "summary": "A analogue of mescaline, and more closely related to proscaline.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "30 mg" + }, + { + "name": "Light", + "value": "40-50 mg" + }, + { + "name": "Common", + "value": "50-60 mg" + }, + { + "name": "Strong", + "value": "60-80 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "60-180 minutes" + }, + { + "name": "Duration", + "value": "10-20 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "jenkem", + "url": "https://wiki.tripsit.me/wiki/jenkem", + "aliases": [], + "aliasesStr": "", + "summary": "A hoax which began in online communities of a non-existent drug which was claimed to result from a process involving human waste. http://www.snopes.com/crime/warnings/jenkem.asp", + "classes": { + "psychoactive": [ + "Deliriant", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "kanna", + "url": "https://wiki.tripsit.me/wiki/kanna", + "aliases": [], + "aliasesStr": "", + "summary": "A South African plant containing numerous psychoactive alkaloids, including mesembrine and mesembrenone. The first written account of the substance was in 1662. The pharmacology of these compounds is poorly understood, but they are suspected to be serotonin uptake inhibitors and potentially monoamine releasers. Said to suppress appetite, produce mild euphoria and reduce anxiety.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "10-20 mg", + "note": " Note: We recommend against insufflating this substance, it is extremely painful and damaging to the nasal cavity." + }, + { + "name": "Common", + "value": "20-50 mg", + "note": " Note: We recommend against insufflating this substance, it is extremely painful and damaging to the nasal cavity." + }, + { + "name": "Strong", + "value": "50-150 mg", + "note": " Note: We recommend against insufflating this substance, it is extremely painful and damaging to the nasal cavity." + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "60-150 minutes" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "250-500 mg", + "note": " Note: We recommend against insufflating this substance, it is extremely painful and damaging to the nasal cavity." + }, + { + "name": "Common", + "value": "500-1000 mg", + "note": " Note: We recommend against insufflating this substance, it is extremely painful and damaging to the nasal cavity." + }, + { + "name": "Strong", + "value": "1000-2000 mg", + "note": " Note: We recommend against insufflating this substance, it is extremely painful and damaging to the nasal cavity." + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "180-360 minutes" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + }, + { + "name": "Vapourized", + "dosage": [ + { + "name": "Light", + "value": "30-50 mg", + "note": " Note: We recommend against insufflating this substance, it is extremely painful and damaging to the nasal cavity." + }, + { + "name": "Common", + "value": "50-100 mg", + "note": " Note: We recommend against insufflating this substance, it is extremely painful and damaging to the nasal cavity." + }, + { + "name": "Strong", + "value": "100-250 mg", + "note": " Note: We recommend against insufflating this substance, it is extremely painful and damaging to the nasal cavity." + } + ], + "duration": [ + { + "name": "Duration", + "value": "90-150 minutes" + } + ] + } + ] + }, + { + "name": "ketazolam", + "url": "https://wiki.tripsit.me/wiki/ketazolam", + "aliases": [], + "aliasesStr": "", + "summary": "Benzodiazepine derivative that has most of the common benzodiazepine effects. Has been seen to have similar effectiveness when compared to Diazepam, with milder side-effects. Is marketed in few countries.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-60 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "8-12 hours" + }, + { + "name": "After Effects", + "value": "2-12 hours" + } + ] + } + ] + }, + { + "name": "ketobemidone", + "url": "https://wiki.tripsit.me/wiki/ketobemidone", + "aliases": [ + "kbd" + ], + "aliasesStr": "kbd", + "summary": "An opioid analgesic drug that also acts as an NDMA antagonist. Found to be as potent as morphine in physical side effects, and has high potential for addiction like all opioids do. Overdose may lead to respiratory depression/death. Do not mix with CNS depressants or stimulants. Caution should be used for asthmatic users.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-15 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-60 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ] + }, + { + "name": "khat", + "url": "https://wiki.tripsit.me/wiki/khat", + "aliases": [], + "aliasesStr": "", + "summary": "A shrub whose leaves contain Cathinone and Cathine, they are mostly chewed for the stimulant effect they provide. Very long history of human use.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Stimulant" + ], + "chemical": [] + } + }, + { + "name": "l-theanine", + "url": "https://wiki.tripsit.me/wiki/l-theanine", + "aliases": [ + "theanine" + ], + "aliasesStr": "theanine", + "summary": "An Amino acid that is structural similar to Glutamine. Most report it as a relaxing agent without much sedation. Most commonly found tea. Usually mixed with Caffeine.", + "classes": { + "psychoactive": [ + "Supplement" + ], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "100-200 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-2 hours" + } + ] + } + ] + }, + { + "name": "librium", + "url": "https://wiki.tripsit.me/wiki/librium", + "aliases": [ + "chlordiazepoxide" + ], + "aliasesStr": "chlordiazepoxide", + "summary": "Chlordiazepoxide, a medium-acting benzodiazepine drug prescribed mostly for sleep purposes. Sedative and hypnotic, it may cause lowered inhibitions and amnesia in high doses.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg", + "note": " NOTE: 25mg of Librium is approximately equal to 10mg of Diazepam" + }, + { + "name": "Common", + "value": "10-20 mg", + "note": " NOTE: 25mg of Librium is approximately equal to 10mg of Diazepam" + }, + { + "name": "Heavy", + "value": "20-40 mg", + "note": " NOTE: 25mg of Librium is approximately equal to 10mg of Diazepam" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "6-10 hours" + }, + { + "name": "After Effects", + "value": "1-14 hours" + } + ] + } + ] + }, + { + "name": "loprazolam", + "url": "https://wiki.tripsit.me/wiki/loprazolam", + "aliases": [ + "dormonoct" + ], + "aliasesStr": "dormonoct", + "summary": "Is an Imidazolobenzidazepine derivative that has all the classic benzodiazepine effects. Is usually only prescribed for a short amount of time for insomnia.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "0.25-0.5 mg" + }, + { + "name": "Common", + "value": "0.5-1.5 mg" + }, + { + "name": "Strong", + "value": "1.5-3 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-50 minutes" + }, + { + "name": "Duration", + "value": "6-10 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ] + }, + { + "name": "lormetazepam", + "url": "https://wiki.tripsit.me/wiki/lormetazepam", + "aliases": [ + "noctamid" + ], + "aliasesStr": "noctamid", + "summary": "Relatively rare prescription benzodiazepine. Short acting with a short half life. Generally only seen in the Netherlands. Sedative, hypnotic and anxiolytic.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Strong", + "value": "2-4 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ] + }, + { + "name": "marinol", + "url": "https://wiki.tripsit.me/wiki/marinol", + "aliases": [ + "dronabinol", + "syndros", + "cesamet", + "δ9-thc", + "δ9--tetrahydrocannabinol", + "delta9-tetrahydrocannabinol", + "delta9-thc" + ], + "aliasesStr": "dronabinol, syndros, cesamet, δ9-thc, δ9--tetrahydrocannabinol, delta9-tetrahydrocannabinol, delta9-thc", + "summary": "Synthetically created Δ9-THC, the main psychoactive ingredient in cannabis.", + "classes": { + "psychoactive": [ + "Depressant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-30 mg" + }, + { + "name": "Strong", + "value": "30-50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "Oral hours" + }, + { + "name": "Duration", + "value": "4-12 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + } + ] + }, + { + "name": "mbdb", + "url": "https://wiki.tripsit.me/wiki/mbdb", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_MBDB.shtml", + "aliases": [ + "eden", + "methyl-j" + ], + "aliasesStr": "eden, methyl-j", + "summary": "A rare entactogenic drug and analogue of MDMA possibly first synthesised by David Nichols. Potentially less potent than related drugs of its type. Sometimes referred to as a 'watered down MDMA.'", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "150-180 mg" + }, + { + "name": "Common", + "value": "180-210 mg" + }, + { + "name": "Strong", + "value": "210-250 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-120 minutes" + }, + { + "name": "Duration", + "value": "3-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "mbzp", + "url": "https://wiki.tripsit.me/wiki/mbzp", + "aliases": [ + "methylbenylpiperazine" + ], + "aliasesStr": "methylbenylpiperazine", + "summary": "A stimulant drug which is a derivative of BZP.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-80 mg" + }, + { + "name": "Common", + "value": "80-120 mg" + }, + { + "name": "Strong", + "value": "120-160 mg" + }, + { + "name": "Heavy", + "value": "160-200 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "2-4 hours" + } + ] + } + ] + }, + { + "name": "mdoh", + "url": "https://wiki.tripsit.me/wiki/mdoh", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_MDOH.shtml", + "aliases": [], + "aliasesStr": "", + "summary": "An entactogen, stimulant and psychedelic first synthesised by Alexander Shulgin, MDOH is an analogue of MDA. Described as highly psychedelic, it is likely a serotonin releasing agent. It has not seen widespread use, perhaps due to a number of reported negative side effects such as urinary retention and a heavy comedown.", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Psychedelic", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "80 mg" + }, + { + "name": "Light", + "value": "100-120 mg" + }, + { + "name": "Common", + "value": "120-150 mg" + }, + { + "name": "Heavy", + "value": "150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "mdpa", + "url": "https://wiki.tripsit.me/wiki/mdpa", + "aliases": [ + "methylenedioxyphenylacetamide" + ], + "aliasesStr": "methylenedioxyphenylacetamide", + "summary": "An obscure substituted methylenedioxyphenethylamine with practically no history of human use. Its pharmacological profile is largely unknown, but potentially exhibits similar properties to other MDxx compounds. May be a monoamine releaser, reuptake inhibitor or both.", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "75-125 mg" + }, + { + "name": "Common", + "value": "125-175 mg" + }, + { + "name": "Strong", + "value": "175-250 mg" + }, + { + "name": "Heavy", + "value": "250 " + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + } + ] + } + ] + }, + { + "name": "mdphp", + "url": "https://wiki.tripsit.me/wiki/mdphp", + "aliases": [ + "monkey-dust" + ], + "aliasesStr": "monkey-dust", + "summary": "MDPHP aka 'Monkey-Dust' is a substituted cathinone and pyrovalerone which has been sold as an alternative to a-PHP and MDPV. Said to be less intense than MDPV with similar effects. MDPHP potency is said to vary widely, and there are reports of mixed composition batches containing other drugs. Very little is known about MDPHP in terms of toxicity, pharmacology and metabolism.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg", + "note": "NOTE: Dose data is tentative; There is a large variance in potency and composition of batches, and as such caution should be used when taking MDPHP. See ~mdphp summary " + }, + { + "name": "Common", + "value": "10-20 mg", + "note": "NOTE: Dose data is tentative; There is a large variance in potency and composition of batches, and as such caution should be used when taking MDPHP. See ~mdphp summary " + }, + { + "name": "Strong", + "value": "20 ", + "note": "NOTE: Dose data is tentative; There is a large variance in potency and composition of batches, and as such caution should be used when taking MDPHP. See ~mdphp summary " + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "2-36 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "10-20 mg", + "note": "NOTE: Dose data is tentative; There is a large variance in potency and composition of batches, and as such caution should be used when taking MDPHP. See ~mdphp summary " + }, + { + "name": "Common", + "value": "20-35 mg", + "note": "NOTE: Dose data is tentative; There is a large variance in potency and composition of batches, and as such caution should be used when taking MDPHP. See ~mdphp summary " + }, + { + "name": "Strong", + "value": "35 ", + "note": "NOTE: Dose data is tentative; There is a large variance in potency and composition of batches, and as such caution should be used when taking MDPHP. See ~mdphp summary " + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "2-16 hours" + } + ] + } + ] + }, + { + "name": "meclonazepam", + "url": "https://wiki.tripsit.me/wiki/meclonazepam", + "aliases": [], + "aliasesStr": "", + "summary": "A benzodiazepine related to clonazepam discovered by Hoffman-LaRoche in the 1960s. Potentially useful in treating schistosomiasis. Has been sold on the grey market as a recreational drug but has not seen widespread popularity.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Tentative" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "3-6 mg" + }, + { + "name": "Heavy", + "value": "6-12 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Duration", + "value": "9-15 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "medazepam", + "url": "https://wiki.tripsit.me/wiki/medazepam", + "aliases": [ + "nobrium", + "azepamid", + "rudotel", + "raporan", + "mezapam", + "talis" + ], + "aliasesStr": "nobrium, azepamid, rudotel, raporan, mezapam, talis", + "summary": "Benzodiazepine derivative that has all of the classic benzodiazepine effects. Is a long-acting benzodiazepine drug (Half life of 36-200 hours) Is rarely prescribed in most countries. Is also a prodrug for Diazepam. Think of it as Desoxy-Diazepam if you'd like to.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-40 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-120 minutes" + }, + { + "name": "Duration", + "value": "8-16 hours" + }, + { + "name": "After Effects", + "value": "1-172 hours" + } + ] + } + ] + }, + { + "name": "mem", + "url": "https://wiki.tripsit.me/wiki/mem", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_MEM.shtml", + "aliases": [], + "aliasesStr": "", + "summary": "A rare stimulant, psychedelic and amphetamine discovered by Alexander Shulgin. Related to the DOx class of drugs, little is known about this obscure compound's pharmacology, however it is likely to be potent and have a long duration.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "15 mg" + }, + { + "name": "Light", + "value": "15-25 mg" + }, + { + "name": "Common", + "value": "25-35 mg" + }, + { + "name": "Strong", + "value": "35-45 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "Within minutes" + }, + { + "name": "Duration", + "value": "8-16 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "mephenmetrazine", + "url": "https://wiki.tripsit.me/wiki/mephenmetrazine", + "aliases": [ + "4-mpm", + "4-methylphenmetrazine" + ], + "aliasesStr": "4-mpm, 4-methylphenmetrazine", + "summary": "4-Methylphenmetrazine is an empathogen of the phenylmorpholine class that seems to have a very rapid tolerance build up.", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-25 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "2-3 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-40 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ] + }, + { + "name": "mephtetramine", + "url": "https://wiki.tripsit.me/wiki/mephtetramine", + "aliases": [ + "mtta" + ], + "aliasesStr": "mtta", + "summary": "Has a Phenpropylamine backbone like Methylphenidate. Seems barely active past negative physical effects. Only reports that include activity past the prior were mixing it with another substance.", + "classes": { + "psychoactive": [ + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "metaclazepam", + "url": "https://wiki.tripsit.me/wiki/metaclazepam", + "aliases": [], + "aliasesStr": "", + "summary": "A benzodiazepine derivative. Which is mostly an anxiolytic substance, without strong hypnotic properties that most benzodiazepines have. Its active metabolite is N-desmethylmetaclazepam, which is the main metabolite. Slightly more effective as an anxiolytic than Bromazepam.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "9.5 mg" + }, + { + "name": "Common", + "value": "18.75 mg" + }, + { + "name": "Strong", + "value": "35-50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "duration hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ] + }, + { + "name": "metaxalone", + "url": "https://wiki.tripsit.me/wiki/metaxalone", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Metaxalone.shtml", + "aliases": [ + "skelaxin" + ], + "aliasesStr": "skelaxin", + "summary": "Muscle relaxant, that is used to relieve pain from general pain, and other musculoskeletal conditions.", + "classes": { + "psychoactive": [ + "Depressant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "400-800 mg" + }, + { + "name": "Common", + "value": "800-1600 mg" + }, + { + "name": "Strong", + "value": "1600-2400 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ] + }, + { + "name": "methamnetamine", + "url": "https://wiki.tripsit.me/wiki/methamnetamine", + "aliases": [ + "methylnaphetamine", + "mnt", + "n-methyl-pal-287" + ], + "aliasesStr": "methylnaphetamine, mnt, n-methyl-pal-287", + "summary": "A selective serotonin releaser, which also shows some light psychedelic activity. Almost always taken with a stimulant, to cause euphoric effects.", + "classes": { + "psychoactive": [ + "Empathogen", + "Habit Forming", + "Psychedelic", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "60-80 mg" + }, + { + "name": "Common", + "value": "80-120 mg" + }, + { + "name": "Strong", + "value": "120-150 mg" + }, + { + "name": "Heavy", + "value": "150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "methedrone", + "url": "https://wiki.tripsit.me/wiki/methedrone", + "aliases": [ + "bk-pmma" + ], + "aliasesStr": "bk-pmma", + "summary": "BK-PMMA Closely related to PMMA and others. Stimulant.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + } + }, + { + "name": "methoxyacetyl-fentanyl", + "url": "https://wiki.tripsit.me/wiki/methoxyacetyl-fentanyl", + "aliases": [ + "maf", + "desfluoroocfentanil" + ], + "aliasesStr": "maf, desfluoroocfentanil", + "summary": "A quite potent fentanyl analogue.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Research Chemical" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "0.25-0.5 mg" + }, + { + "name": "Common", + "value": "0.5-1.5 mg" + }, + { + "name": "Strong", + "value": "1.5 mg" + } + ], + "duration": [ + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + } + ] + }, + { + "name": "methoxyketamine", + "url": "https://wiki.tripsit.me/wiki/methoxyketamine", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Methoxyketamine.shtml", + "aliases": [ + "2-meo-ketamine" + ], + "aliasesStr": "2-meo-ketamine", + "summary": "An arylcyclohexylamine drug and analogue of ketamine, though slightly less potent. Produces similar dissociative and anaesthetic effects. Very rare.", + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming", + "Research Chemical" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5-15 mg" + }, + { + "name": "Light", + "value": "15-60 mg" + }, + { + "name": "Common", + "value": "60-130 mg" + }, + { + "name": "Strong", + "value": "130-200 mg" + } + ] + } + ] + }, + { + "name": "methoxypiperamide", + "url": "https://wiki.tripsit.me/wiki/methoxypiperamide", + "aliases": [], + "aliasesStr": "", + "summary": "Drug of the Piperazine class. The 4-Methoxy-α-keto analogue of Methylbenzylpiperazine. Seemingly inactive on its own. Was sold in tandem with Mephtetramine.", + "classes": { + "psychoactive": [ + "Inactive", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "name": "methylmethaqualone", + "url": "https://wiki.tripsit.me/wiki/methylmethaqualone", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Methylmethaqualone.shtml", + "aliases": [ + "mmq" + ], + "aliasesStr": "mmq", + "summary": "A more potent analogue of methaqualone with a short duration. Thought to be potentially neurotoxic. Has pro-convulsive effects.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Research Chemical" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "2-3 mg", + "note": " NOTE: Remember this substance is known to cause seizures, take much caution with this." + }, + { + "name": "Light", + "value": "3-5 mg", + "note": " NOTE: Remember this substance is known to cause seizures, take much caution with this." + }, + { + "name": "Common", + "value": "5-10 mg", + "note": " NOTE: Remember this substance is known to cause seizures, take much caution with this." + }, + { + "name": "Strong", + "value": "10-20 mg", + "note": " NOTE: Remember this substance is known to cause seizures, take much caution with this." + } + ], + "duration": [ + { + "name": "Onset", + "value": "10 minutes" + } + ] + }, + { + "name": "Vapourized", + "dosage": [ + { + "name": "Threshold", + "value": "2-3 mg", + "note": " NOTE: Remember this substance is known to cause seizures, take much caution with this." + }, + { + "name": "Light", + "value": "3-5 mg", + "note": " NOTE: Remember this substance is known to cause seizures, take much caution with this." + }, + { + "name": "Common", + "value": "5-10 mg", + "note": " NOTE: Remember this substance is known to cause seizures, take much caution with this." + }, + { + "name": "Strong", + "value": "10-20 mg", + "note": " NOTE: Remember this substance is known to cause seizures, take much caution with this." + } + ], + "duration": [ + { + "name": "Onset", + "value": "0-1 minutes" + } + ] + } + ] + }, + { + "name": "methylmorphenate", + "url": "https://wiki.tripsit.me/wiki/methylmorphenate", + "aliases": [], + "aliasesStr": "", + "summary": "Stimulant of the phenylmorpholine class, an analogue of Methylphenidate where the piperidine ring has been replaced by a morpholine one, with ~1/10 potency.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "methyprylon", + "url": "https://wiki.tripsit.me/wiki/methyprylon", + "aliases": [ + "noludar" + ], + "aliasesStr": "noludar", + "summary": "Sedative of the pipeidinedone family. Was used for treating insomnia, yet is rarely used today due to substances with fewer side effects, such as benzodiazepines.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "150-200 mg" + }, + { + "name": "Common", + "value": "200-300 mg" + }, + { + "name": "Strong", + "value": "300 mg" + } + ], + "duration": [ + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "1-16 hours" + } + ] + } + ] + }, + { + "name": "mexamine", + "url": "https://wiki.tripsit.me/wiki/mexamine", + "aliases": [], + "aliasesStr": "", + "summary": "5-Methoxytryptamine, a tryptamine derivative that naturally occurs in the body at low levels. No evidence of recreational use. Apparently enhances dreams.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "mexazolam", + "url": "https://wiki.tripsit.me/wiki/mexazolam", + "aliases": [ + "melex", + "sedoxil" + ], + "aliasesStr": "melex, sedoxil", + "summary": "Benzodiazepine derivative that has been trialed for anxiety and was found to be effective for anxiety at one week week follow-ups yet after three weeks it had lost its therapeutic anxiolytic properties and becoming no more effective than placebo.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "0.25-0.5 mg" + }, + { + "name": "Common", + "value": "0.5-1.5 mg" + }, + { + "name": "Strong", + "value": "1.5-2 mg" + }, + { + "name": "Heavy", + "value": "2-3 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-45 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "mk-801", + "url": "https://wiki.tripsit.me/wiki/mk-801", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Dizocilpine.shtml", + "aliases": [ + "dizocilpine", + "mk801" + ], + "aliasesStr": "dizocilpine, mk801", + "summary": "Dissociative research chemical similar to PCP, and Ketamine. Dizocilpine, also known as MK-801, is a non-competitive antagonist of the NMDA receptor.", + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "50-100 ug" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "20-36 hours" + }, + { + "name": "After Effects", + "value": "1-72 hours" + } + ] + } + ] + }, + { + "name": "moclobemide", + "url": "https://wiki.tripsit.me/wiki/moclobemide", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Moclobemide.shtml", + "aliases": [], + "aliasesStr": "", + "summary": "A reversible MAOI which is prescribed to treat depression and anxiety. Its reversibility and short-acting length of effects often means it is used in \"pharmahuasca\" preparations.", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "150 mg" + }, + { + "name": "Common", + "value": "300 mg" + }, + { + "name": "Strong", + "value": "600 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "2-6 hours" + } + ] + } + ] + }, + { + "name": "morpheridine", + "url": "https://wiki.tripsit.me/wiki/morpheridine", + "aliases": [], + "aliasesStr": "", + "summary": "Is a 4-Phenylpiperidine derivative that is related to Pehidine. It is roughly 4x as potent as the parent compound, does not cause convulsions such as Pethidine.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-35 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "Oral minutes" + }, + { + "name": "Duration", + "value": "Oral hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "mpa", + "url": "https://wiki.tripsit.me/wiki/mpa", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Methiopropamine.shtml", + "aliases": [ + "methiopropamine" + ], + "aliasesStr": "methiopropamine", + "summary": "An analogue of methamphetamine with effects close to amphetamine. Some users report negative side effects including stomach discomfort and sweating. Acts as a selective NDRI.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5 mg" + }, + { + "name": "Light", + "value": "5-15 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "3-5 hours" + } + ] + } + ] + }, + { + "name": "mt-45", + "url": "https://wiki.tripsit.me/wiki/mt-45", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_MT45.shtml", + "aliases": [ + "ic-6", + "mt45" + ], + "aliasesStr": "ic-6, mt45", + "summary": "A synthetic opioid drug that was rumoured to be roughly 80% the potency of Morphine orally. Was created by Dainippon Pharmaceutical in the 1970's. It has been used as a lead compound for the design of related substances. It has been associated with hearing loss and hair loss. Structurally unrelated to most other opioid drugs. Treat with caution, especially long term use.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Research Chemical" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "30 mg" + }, + { + "name": "Light", + "value": "30-45 mg" + }, + { + "name": "Common", + "value": "45-60 mg" + }, + { + "name": "Strong", + "value": "60 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-45 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "2-3 hours" + } + ] + } + ] + }, + { + "name": "mushrooms", + "url": "https://wiki.tripsit.me/wiki/mushrooms", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Psilocybin.shtml", + "aliases": [ + "psilocybin", + "shrooms", + "mushroom", + "psylocybin" + ], + "aliasesStr": "psilocybin, shrooms, mushroom, psylocybin", + "summary": "Fungi containing psilocybin, a prototypical psychedelic with similar effects to LSD, but with a shorter duration; also considered as being more confusing, introspective and entheogenic. Usually refers to psilocybe mushrooms rather than Amanitas, which have different effects. Are considered physically safe if properly identified, which should always be done by an expert.", + "classes": { + "psychoactive": [ + "Psychedelic" + ], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "0.5-1.5 g", + "note": " NOTE: Dosage ranges will vary between fungus strains. The doses given are for *dried* mushrooms, which are many times more potent by weight than those consumed when wet. Onset varies depending on dosage, common doses are normally felt within one hour." + }, + { + "name": "Common", + "value": "1.5-3.5 g", + "note": " NOTE: Dosage ranges will vary between fungus strains. The doses given are for *dried* mushrooms, which are many times more potent by weight than those consumed when wet. Onset varies depending on dosage, common doses are normally felt within one hour." + }, + { + "name": "Strong", + "value": "3.5 g", + "note": " NOTE: Dosage ranges will vary between fungus strains. The doses given are for *dried* mushrooms, which are many times more potent by weight than those consumed when wet. Onset varies depending on dosage, common doses are normally felt within one hour." + } + ], + "duration": [ + { + "name": "Onset", + "value": "1 hours" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ], + "interactions": [ + { + "status": "Low Risk & Synergy", + "name": "2c-t-x" + }, + { + "status": "Low Risk & Synergy", + "name": "2c-x" + }, + { + "status": "Low Risk & Synergy", + "name": "5-meo-xxt" + }, + { + "status": "Low Risk & Decrease", + "name": "alcohol" + }, + { + "status": "Caution", + "name": "amphetamines", + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences" + }, + { + "status": "Low Risk & Synergy", + "name": "amt" + }, + { + "status": "Low Risk & Decrease", + "name": "benzodiazepines" + }, + { + "status": "Low Risk & Decrease", + "name": "benzos" + }, + { + "status": "Low Risk & No Synergy", + "name": "caffeine" + }, + { + "status": "Caution", + "name": "cannabis", + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics." + }, + { + "status": "Caution", + "name": "cocaine", + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences" + }, + { + "status": "Low Risk & Synergy", + "name": "dmt" + }, + { + "status": "Low Risk & Synergy", + "name": "dox" + }, + { + "status": "Low Risk & Synergy", + "name": "dxm" + }, + { + "status": "Low Risk & Decrease", + "name": "ghb/gbl" + }, + { + "status": "Low Risk & Synergy", + "name": "ketamine" + }, + { + "status": "Low Risk & Synergy", + "name": "lsd" + }, + { + "status": "Low Risk & Synergy", + "name": "maois" + }, + { + "status": "Low Risk & Synergy", + "name": "mdma" + }, + { + "status": "Low Risk & Synergy", + "name": "mescaline" + }, + { + "status": "Low Risk & Synergy", + "name": "mxe" + }, + { + "status": "Low Risk & Synergy", + "name": "nbomes" + }, + { + "status": "Low Risk & Synergy", + "name": "nitrous" + }, + { + "status": "Low Risk & No Synergy", + "name": "opioids" + }, + { + "status": "Low Risk & Synergy", + "name": "pcp" + }, + { + "status": "Low Risk & Decrease", + "name": "ssris" + }, + { + "status": "Unsafe", + "name": "tramadol", + "note": "Tramadol is well known to lower seizure threshold and psychedelics also cause occasional seizures." + } + ] + }, + { + "name": "mxe", + "url": "https://wiki.tripsit.me/wiki/mxe", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Methoxetamine_.shtml", + "aliases": [ + "methoxetamine", + "3-meo-2'oxo-pce" + ], + "aliasesStr": "methoxetamine, 3-meo-2'oxo-pce", + "summary": "A popular dissociative drug which is an analogue of ketamine, though less sedating and more potent by weight, with a subjectively more 'complicated' set of effects.", + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming", + "Research Chemical" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "5-10 mg", + "note": " NOTE: Bodyweight plays a slight factor in MXE dosing, these are values for a 175lb (80kg) male" + }, + { + "name": "Light", + "value": "10-20 mg", + "note": " NOTE: Bodyweight plays a slight factor in MXE dosing, these are values for a 175lb (80kg) male" + }, + { + "name": "Common", + "value": "20-35 mg", + "note": " NOTE: Bodyweight plays a slight factor in MXE dosing, these are values for a 175lb (80kg) male" + }, + { + "name": "Strong", + "value": "35-60 mg", + "note": " NOTE: Bodyweight plays a slight factor in MXE dosing, these are values for a 175lb (80kg) male" + }, + { + "name": "Heavy", + "value": "60 mg", + "note": " NOTE: Bodyweight plays a slight factor in MXE dosing, these are values for a 175lb (80kg) male" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-20 minutes" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10-15 mg", + "note": " NOTE: Bodyweight plays a slight factor in MXE dosing, these are values for a 175lb (80kg) male" + }, + { + "name": "Light", + "value": "15-25 mg", + "note": " NOTE: Bodyweight plays a slight factor in MXE dosing, these are values for a 175lb (80kg) male" + }, + { + "name": "Common", + "value": "25-35 ", + "note": " NOTE: Bodyweight plays a slight factor in MXE dosing, these are values for a 175lb (80kg) male" + }, + { + "name": "Strong", + "value": "40-65 mg", + "note": " NOTE: Bodyweight plays a slight factor in MXE dosing, these are values for a 175lb (80kg) male" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "2-48 hours" + } + ] + }, + { + "name": "Sublingual", + "dosage": [ + { + "name": "Threshold", + "value": "5-10 mg", + "note": " NOTE: Bodyweight plays a slight factor in MXE dosing, these are values for a 175lb (80kg) male" + }, + { + "name": "Light", + "value": "10-20 mg", + "note": " NOTE: Bodyweight plays a slight factor in MXE dosing, these are values for a 175lb (80kg) male" + }, + { + "name": "Common", + "value": "40-60 mg", + "note": " NOTE: Bodyweight plays a slight factor in MXE dosing, these are values for a 175lb (80kg) male" + }, + { + "name": "Strong", + "value": "60-75 mg", + "note": " NOTE: Bodyweight plays a slight factor in MXE dosing, these are values for a 175lb (80kg) male" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + } + ] + } + ], + "interactions": [ + { + "status": "Caution", + "name": "2c-t-x" + }, + { + "status": "Low Risk & Synergy", + "name": "2c-x" + }, + { + "status": "Low Risk & Synergy", + "name": "5-meo-xxt", + "note": "Little information exists about this combination." + }, + { + "status": "Dangerous", + "name": "alcohol", + "note": "There is a high risk of memory loss, vomiting and severe ataxia from this combination." + }, + { + "status": "Caution", + "name": "amphetamines", + "note": "Risk of tachycardia, hypertension, and manic states" + }, + { + "status": "Dangerous", + "name": "amt" + }, + { + "status": "Caution", + "name": "benzodiazepines", + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place affected patients in the recovery position to prevent vomit aspiration from excess." + }, + { + "status": "Caution", + "name": "benzos", + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place affected patients in the recovery position to prevent vomit aspiration from excess." + }, + { + "status": "Low Risk & No Synergy", + "name": "caffeine", + "note": "No likely interactions" + }, + { + "status": "Low Risk & Synergy", + "name": "cannabis" + }, + { + "status": "Caution", + "name": "cocaine", + "note": "Stimulants taken with MXE can lead to hypermanic states much more easily, especially if sleep is avoided." + }, + { + "status": "Low Risk & Synergy", + "name": "dmt" + }, + { + "status": "Caution", + "name": "dox", + "note": "As an NMDA antagonist MXE potentiates DOx which can be unpleasantly intense" + }, + { + "status": "Low Risk & No Synergy", + "name": "dxm" + }, + { + "status": "Dangerous", + "name": "ghb/gbl", + "note": "Both substances cause ataxia and bring a risk of vomiting and unconsciousness. If the patient falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position." + }, + { + "status": "Low Risk & Synergy", + "name": "ketamine" + }, + { + "status": "Low Risk & Synergy", + "name": "lsd" + }, + { + "status": "Unsafe", + "name": "maois", + "note": "MAO-B inhibitors appear to increase the potency of MXE. MAO-A inhbitors have some negative reports associated with the combination but there isn't much information available" + }, + { + "status": "Caution", + "name": "mdma", + "note": "There have been reports of risky serotonergic interactions when the two are taken at the same time, but MXE taken to the end of an MDMA experience does not appear to cause the same issues." + }, + { + "status": "Low Risk & Synergy", + "name": "mescaline" + }, + { + "status": "Low Risk & Synergy", + "name": "mushrooms" + }, + { + "status": "Caution", + "name": "nbomes", + "note": "As an NMDA antagonist MXE potentiates NBOMes which can be unpleasantly intense" + }, + { + "status": "Low Risk & Synergy", + "name": "nitrous" + }, + { + "status": "Dangerous", + "name": "opioids", + "note": "This combination can potentiate the effects of the opioid" + }, + { + "status": "Caution", + "name": "pcp", + "note": "There are no reports available about this combination" + }, + { + "status": "Caution", + "name": "ssris", + "note": "Depending on the SSRI this combination can be unpredictable" + }, + { + "status": "Dangerous", + "name": "tramadol" + } + ] + }, + { + "name": "mxm", + "url": "https://wiki.tripsit.me/wiki/mxm", + "aliases": [ + "methoxmetamine" + ], + "aliasesStr": "methoxmetamine", + "summary": "An arylcyclohexamine, dissociative and anaesthetic closely related to methoxetamine, ketamine and PCP. It has seen some popularity among RC users, being advertised as an MXE replacement after its illegalisation in many parts of the world - however, users report a more stimulating experience closer to those caused by PCP and its analogues.", + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming", + "Research Chemical" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "10-20 mg", + "note": " NOTE: (Once again, do not take this as a catch all.)" + }, + { + "name": "Light", + "value": "20-40 mg", + "note": " NOTE: (Once again, do not take this as a catch all.)" + }, + { + "name": "Common", + "value": "40-60 mg", + "note": " NOTE: (Once again, do not take this as a catch all.)" + }, + { + "name": "Strong", + "value": "60-100 mg", + "note": " NOTE: (Once again, do not take this as a catch all.)" + } + ], + "duration": [ + { + "name": "Onset", + "value": "Varying hours" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "2-4 hours" + } + ] + } + ] + }, + { + "name": "naphyrone", + "url": "https://wiki.tripsit.me/wiki/naphyrone", + "aliases": [], + "aliasesStr": "", + "summary": "A drug derived from pyrovalerone which acts as a TRI, producing stimulating effects. Had been sold in a blend called \"NRG-1\" Little information exists about the safety profile of this drug.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "20-35 mg" + }, + { + "name": "Strong", + "value": "35-50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "Within minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + } + ] + } + ] + }, + { + "name": "naproxen", + "url": "https://wiki.tripsit.me/wiki/naproxen", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Naproxen.shtml", + "aliases": [], + "aliasesStr": "", + "summary": "A very common pain reliever/fever reducer also known as Aleve. Naproxen is in the same category as Ibuprofen, which is also a nonsteroidal anti-inflammatory. This drug is available in most places over the counter. Is sometimes used to reduce the body-load of certain drugs.", + "classes": { + "psychoactive": [], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "250-500 mg", + "note": " Note: Maximum recommended daily dose is 1500mg." + } + ], + "duration": [ + { + "name": "Onset", + "value": "1 hours" + }, + { + "name": "Duration", + "value": "4-6 hours" + } + ] + } + ] + }, + { + "name": "neb", + "url": "https://wiki.tripsit.me/wiki/neb", + "aliases": [ + "n-ethylbuphedrone" + ], + "aliasesStr": "n-ethylbuphedrone", + "summary": "N-Ethylbuphedrone, an uncommon substituted cathinone. First appeared around 2011 but has not become popular. Effects should somewhat resemble other cathinones generally. Short-acting stimulating with more dopamine action than serotonin.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-30 mg" + }, + { + "name": "Strong", + "value": "30-45 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "90-120 minutes" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "30 mg" + }, + { + "name": "Light", + "value": "30-50 mg" + }, + { + "name": "Common", + "value": "50-80 mg" + }, + { + "name": "Strong", + "value": "80-100 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-30 minutes" + }, + { + "name": "Duration", + "value": "90-180 minutes" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "nefiracetam", + "url": "https://wiki.tripsit.me/wiki/nefiracetam", + "aliases": [ + "nerfiracetam" + ], + "aliasesStr": "nerfiracetam", + "summary": "Nootropic compound of the racetam family. Seems to enhance both GABAergic and cholinergic signalling. Long term use appears to be neuroprotective. Fat soluble.", + "classes": { + "psychoactive": [ + "Nootropic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "150-450 mg", + "note": " NOTE: Usually divided into three doses. Roughly around 0.5mg-1.6mg/kg." + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ] + }, + { + "name": "nicomorphine", + "url": "https://wiki.tripsit.me/wiki/nicomorphine", + "aliases": [], + "aliasesStr": "", + "summary": "Opioid agonist that is 2-3x the potency of Morphine. Is used in few countries. Rapid onset of effects, due to the increased lipid solubility.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "2.5-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "nimetazepam", + "url": "https://wiki.tripsit.me/wiki/nimetazepam", + "aliases": [ + "erimin" + ], + "aliasesStr": "erimin", + "summary": "A pharmaceutical benzodiazepine with hypnotic and sedative effects. Rarely seen in the West but reportedly very frequently abused in Malaysia.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "2.5-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "12-24 hours" + } + ] + } + ] + }, + { + "name": "nitemazepam", + "url": "https://wiki.tripsit.me/wiki/nitemazepam", + "aliases": [ + "3-hydroxynimetazepam" + ], + "aliasesStr": "3-hydroxynimetazepam", + "summary": "A new RC benzodiazepine based off the chemical structure of Nimetazepam. It is relatively new and not many experience reports exist on it. It is expected to feel similar to temazepam.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Tentative" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "1-1.5 mg" + }, + { + "name": "Common", + "value": "1.5-3 mg" + }, + { + "name": "Strong", + "value": "3-5 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "nitracaine", + "url": "https://wiki.tripsit.me/wiki/nitracaine", + "aliases": [], + "aliasesStr": "", + "summary": "An analogue of dimethocaine with local anaesthetic and stimulant properties, marketed in the RC scene as a Cocaine replacement. Has not seen widespread popularity.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "20-30 mg" + }, + { + "name": "Common", + "value": "30-40 mg" + }, + { + "name": "Strong", + "value": "50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "100 mg" + }, + { + "name": "Common", + "value": "100-150 mg" + }, + { + "name": "Strong", + "value": "150-175 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + } + ] + } + ] + }, + { + "name": "nitrazepam", + "url": "https://wiki.tripsit.me/wiki/nitrazepam", + "aliases": [ + "mogadon", + "baronite", + "dormin", + "dreem", + "enzed", + "gentravit", + "hypnonex", + "hypnoril", + "hypnotex", + "konit", + "nicare", + "nigap", + "nipam", + "nirosun", + "nitavan", + "nithra" + ], + "aliasesStr": "mogadon, baronite, dormin, dreem, enzed, gentravit, hypnonex, hypnoril, hypnotex, konit, nicare, nigap, nipam, nirosun, nitavan, nithra", + "summary": "Hypnotic Benzodiazepine, that is used for short term relief of anxiety and insomnia. It has a pronouced affect on respritory action.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-15 mg" + }, + { + "name": "Strong", + "value": "15-20 mg" + }, + { + "name": "Heavy", + "value": "20-30 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-40 minutes" + }, + { + "name": "Duration", + "value": "5-8 hours" + }, + { + "name": "After Effects", + "value": "6-12 hours" + } + ] + } + ] + }, + { + "name": "nitrazolam", + "url": "https://wiki.tripsit.me/wiki/nitrazolam", + "aliases": [], + "aliasesStr": "", + "summary": "Hypnotic benzodiazepine that is the triazolo analogue of Nitrazepam and about 4x more potent compared to the parent compound. Also the dechlorinated derivative of Clonazolam with roughly 1/10 potency.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Tentative" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Strong", + "value": "2-3 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "5-10 hours" + }, + { + "name": "After Effects", + "value": "2-24 hours" + } + ] + } + ] + }, + { + "name": "noctec", + "url": "https://wiki.tripsit.me/wiki/noctec", + "aliases": [ + "chloral-hydrate", + "aquachloral", + "somnos" + ], + "aliasesStr": "chloral-hydrate, aquachloral, somnos", + "summary": "Chloral Hydrate, a sedative drug discovered in 1832 with a history of recreational use going back to the 19th century. Sometimes prescribed for extreme insomnia. For such an old drug, relatively little is known about its long-term term effects on the body. Produces intoxication comparable to alcohol or benzodiazepines.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "200 mg" + }, + { + "name": "Common", + "value": "200-500 mg" + }, + { + "name": "Strong", + "value": "500-1000 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-60 minutes" + }, + { + "name": "Duration", + "value": "5-10 hours" + }, + { + "name": "After Effects", + "value": "2-6 hours" + } + ] + } + ] + }, + { + "name": "noopept", + "url": "https://wiki.tripsit.me/wiki/noopept", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Noopept_.shtml", + "aliases": [], + "aliasesStr": "", + "summary": "A common nootropic often attributed with temporarily increasing intelligence, concentration, focus and memory recall. Daily use can lead to dependency with withdrawals which make the user feel 'stupid.' Often taken daily in a 'stack' with other nootropics.", + "classes": { + "psychoactive": [ + "Nootropic", + "Research Chemical" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "0-5 minutes" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5 mg" + }, + { + "name": "Common", + "value": "10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + }, + { + "name": "Sublingual", + "dosage": [ + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-10 minutes" + } + ] + } + ] + }, + { + "name": "nordazepam", + "url": "https://wiki.tripsit.me/wiki/nordazepam", + "aliases": [ + "nordaz", + "nordiazepam", + "desmethyldiazepam" + ], + "aliasesStr": "nordaz, nordiazepam, desmethyldiazepam", + "summary": "Has all the normal benzodiazepine effects. Such as being an anti-convulsant, muscle relaxant, sedative effects, and anxiolytic. Active metabolite of Diazepam, Chlordiazepoxide, Clorazepate, among many others, which is where most of its effects come from. Has one of the longest lasting half-lifes in the class.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "2.5-5 mg" + }, + { + "name": "Common", + "value": "5-15 mg" + }, + { + "name": "Strong", + "value": "15-30 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-120 minutes" + }, + { + "name": "Duration", + "value": "10-20 hours" + }, + { + "name": "After Effects", + "value": "1-120 hours" + } + ] + } + ] + }, + { + "name": "norflurazepam", + "url": "https://wiki.tripsit.me/wiki/norflurazepam", + "aliases": [ + "n-desalkylflurazepam" + ], + "aliasesStr": "n-desalkylflurazepam", + "summary": "Benzodiazepine analogue that is an active metabolite to many other benzodiazepines, such as Flurazepam, Flutoprazepam, and Midazolam.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Tentative" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-120 minutes" + }, + { + "name": "Duration", + "value": "10-16 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "opium", + "url": "https://wiki.tripsit.me/wiki/opium", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Opium.shtml", + "aliases": [ + "O" + ], + "aliasesStr": "O", + "summary": "Opium is a naturally occurring analgesic harvested as a latex from ripe Papaver somniferum (opium poppy) pods. The sap of the poppy plant primarily contains codeine and morphine with the amounts varying by plant, which can be made into a tea and consumed raw, or further processed.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "333-500 mg", + "note": "As a tea." + }, + { + "name": "Fatal", + "value": "2000 mg", + "note": "As a tea." + } + ], + "duration": [ + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + }, + { + "name": "Smoked", + "dosage": [ + { + "name": "Common", + "value": "100 mg" + } + ] + } + ] + }, + { + "name": "oxazolam", + "url": "https://wiki.tripsit.me/wiki/oxazolam", + "aliases": [], + "aliasesStr": "", + "summary": "A benzodiazepine derivative that is a prodrug for desmethyldiazepam.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-30 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-90 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "6-12 hours" + } + ] + } + ] + }, + { + "name": "pagoclone", + "url": "https://wiki.tripsit.me/wiki/pagoclone", + "aliases": [], + "aliasesStr": "", + "summary": "An anxiolytic drug related to zopiclone with no sedative or hypnotic qualities. Has been investigated as a possible alcohol replacement. Related in structure and effect to Zopiclone and Zolpidem.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "palfium", + "url": "https://wiki.tripsit.me/wiki/palfium", + "aliases": [ + "dextromoramide" + ], + "aliasesStr": "dextromoramide", + "summary": "Dextromoramide, a rare and powerful opioid analgesic approximately three times as potent as morphine with a shorter duration. Generally only seen in the Netherlands. Reported as having strange and rapid tolerance behaviour.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "2.5-5 mg", + "note": " NOTE: Read ~summary before you take this drug. It's very unpredictable." + }, + { + "name": "Common", + "value": "5-7.5 mg", + "note": " NOTE: Read ~summary before you take this drug. It's very unpredictable." + }, + { + "name": "Strong", + "value": "7.5-10 mg", + "note": " NOTE: Read ~summary before you take this drug. It's very unpredictable." + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "parafluorobutyrfentanyl", + "url": "https://wiki.tripsit.me/wiki/parafluorobutyrfentanyl", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4Fluorobutyrfentanyl.shtml", + "aliases": [ + "pfbf", + "4-fluorobutyrfentanyl", + "4-fbf" + ], + "aliasesStr": "pfbf, 4-fluorobutyrfentanyl, 4-fbf", + "summary": "Rare, little known and extremely potent RC analogue of Fentanyl. This powerful opioid is generally only dispensed as a nasal spray. Handle with extreme caution and never mix with other depressants.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Research Chemical" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "300 ug" + }, + { + "name": "Common", + "value": "600-900 ug" + }, + { + "name": "Strong", + "value": "900-1200 ug" + } + ], + "duration": [ + { + "name": "Onset", + "value": "Insufflated minutes" + }, + { + "name": "Duration", + "value": "30-60 minutes" + } + ] + } + ] + }, + { + "name": "parafluorofentanyl", + "url": "https://wiki.tripsit.me/wiki/parafluorofentanyl", + "aliases": [ + "pff", + "4-fluorofentanyl" + ], + "aliasesStr": "pff, 4-fluorofentanyl", + "summary": "Rare, little known and extremely potent analogue of Fentanyl developed by Janssen Pharmaceutica in the 1960s. Use with extreme caution and never mix with other depressants.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "10-25 ug" + }, + { + "name": "Common", + "value": "25-40 ug" + }, + { + "name": "Strong", + "value": "40-65 ug" + } + ], + "duration": [ + { + "name": "Onset", + "value": "0-1 minutes" + }, + { + "name": "Duration", + "value": "2-3 hours" + }, + { + "name": "After Effects", + "value": "1-2 hours" + } + ] + } + ] + }, + { + "name": "paroxetine", + "url": "https://wiki.tripsit.me/wiki/paroxetine", + "aliases": [ + "paxil", + "seroxat" + ], + "aliasesStr": "paxil, seroxat", + "classes": { + "psychoactive": [ + "SSRI" + ], + "chemical": [] + } + }, + { + "name": "pemoline", + "url": "https://wiki.tripsit.me/wiki/pemoline", + "aliases": [], + "aliasesStr": "", + "summary": "A stimulant of the 4-oxazolidinone class. Was used as a medication for ADHD and Narcolepsy, yet was pulled from most markets due to liver failures among children.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-80 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "pentazocine", + "url": "https://wiki.tripsit.me/wiki/pentazocine", + "aliases": [ + "talwin" + ], + "aliasesStr": "talwin", + "summary": "A synthetic opioid used as an analgesic. It is only used IM and IV in the medical field and has respiratory depressant effects. It is pregnancy category C and schedule IV in the US.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Intramuscular", + "dosage": [ + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20 mg" + }, + { + "name": "Strong", + "value": "30-60 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-20 minutes" + }, + { + "name": "Duration", + "value": "2-3 hours" + } + ] + }, + { + "name": "Intravenous", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "30 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "2-3 minutes" + }, + { + "name": "Duration", + "value": "2-3 hours" + } + ] + } + ] + }, + { + "name": "pentylone", + "url": "https://wiki.tripsit.me/wiki/pentylone", + "aliases": [ + "4-meppp", + "bk-mbdp", + "bk-methyl-k" + ], + "aliasesStr": "4-meppp, bk-mbdp, bk-methyl-k", + "summary": "A stimulant, empathogen and substituted cathinone. It was first synthesised in the 1960s, and re-appeared on the research chemical scene in 2010. Still, very little is known about the pharmacology or effects of this compound.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Psychedelic", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-80 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "3-4 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "peyote", + "url": "https://wiki.tripsit.me/wiki/peyote", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Peyote.shtml", + "aliases": [], + "aliasesStr": "", + "summary": "Peyote is a small, spineless cactus that contains mescaline as its primary active chemical. It has a long history of use among the natives of northern Mexico and SW United States.", + "classes": { + "psychoactive": [ + "Psychedelic" + ], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Dried", + "dosage": [ + { + "name": "Light", + "value": "10-20 g" + }, + { + "name": "Common", + "value": "20-30 g" + }, + { + "name": "Strong", + "value": "30-40 g" + }, + { + "name": "Heavy", + "value": "40 g" + } + ] + }, + { + "name": "Fresh", + "dosage": [ + { + "name": "Light", + "value": "50-100 g" + }, + { + "name": "Common", + "value": "100-150 g" + }, + { + "name": "Heavy", + "value": "200 g" + } + ] + } + ] + }, + { + "name": "pfbt", + "url": "https://wiki.tripsit.me/wiki/pfbt", + "aliases": [ + "4-fluorotropacocaine" + ], + "aliasesStr": "4-fluorotropacocaine", + "summary": "Tropane derivative substance that supposedly has around ~30% the potency of Cocaine as a stimulant. While also having properties of a local anasthetic.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Threshold", + "value": "10-20 mg" + }, + { + "name": "Light", + "value": "20-50 mg" + }, + { + "name": "Common", + "value": "50-70 mg" + }, + { + "name": "Strong", + "value": "70-110 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-10 minutes" + }, + { + "name": "Duration", + "value": "1-2 hours" + } + ] + } + ] + }, + { + "name": "phenethylamine", + "url": "https://wiki.tripsit.me/wiki/phenethylamine", + "aliases": [ + "pea" + ], + "aliasesStr": "pea", + "summary": "Organic compound, which is a name of a class of chemicals that are quite well known for psychoactive and/or stimulant effects. Normally not used as a supplement as it is rapidly broken down into inactive compounds. Is found in many foods.", + "classes": { + "psychoactive": [ + "Nootropic", + "Supplement" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "300-500 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "1-4 hours" + }, + { + "name": "After Effects", + "value": "10-60 minutes" + } + ] + } + ] + }, + { + "name": "phenetrazine", + "url": "https://wiki.tripsit.me/wiki/phenetrazine", + "aliases": [], + "aliasesStr": "", + "summary": "A rare phenethylamine stimulant related to 3-FPM. Virtually nothing is known about the pharmacology or effects of this compound but it is likely to have similar properties to other stimulants of its type. Not to be confused with phenmetrazine.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-35 mg" + }, + { + "name": "Strong", + "value": "35-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "5-10 mg" + }, + { + "name": "Light", + "value": "10-25 mg" + }, + { + "name": "Common", + "value": "25-50 mg" + }, + { + "name": "Strong", + "value": "50-70 mg" + }, + { + "name": "Heavy", + "value": "70 mg" + } + ] + } + ] + }, + { + "name": "phenmetrazine", + "url": "https://wiki.tripsit.me/wiki/phenmetrazine", + "aliases": [ + "preludin" + ], + "aliasesStr": "preludin", + "summary": "Stimulant drug that was previously used as an appetite suppresant, has been withdrawn from the market, due to concerns of abuse and addiction. Usually produces less nervousness, euphoria, and insomnia than drugs of the amphetamine family. Also as a study concluded, it is slightly more effective than dextroamphetamine as a weight loss agent.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "25-50 mg" + }, + { + "name": "Dangerous", + "value": "80 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "4-8 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "phentermine", + "url": "https://wiki.tripsit.me/wiki/phentermine", + "aliases": [], + "aliasesStr": "", + "summary": "Psychostimulant of the substituted amphetamine class. Used in medicine as an appetite suppressant.", + "classes": { + "psychoactive": [ + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "15-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-70 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-10 hours" + } + ] + } + ] + }, + { + "name": "picamilon", + "url": "https://wiki.tripsit.me/wiki/picamilon", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Picamilon.shtml", + "aliases": [], + "aliasesStr": "", + "summary": "An analogue of GABA that does pass the brain blood barrier, which is then hydrolyzed into GABA and Niacin. In which the GABA could produce an anxiolytic effect. The Niacin as a vasodilator. And is usually used as part of a nootropic stack.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Nootropic" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "40-80 mg" + }, + { + "name": "Common", + "value": "80-140 mg" + }, + { + "name": "Strong", + "value": "140-250 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-45 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "pinazepam", + "url": "https://wiki.tripsit.me/wiki/pinazepam", + "aliases": [ + "domar" + ], + "aliasesStr": "domar", + "summary": "Benzodiazepine that is solely an anxiolytic drug that lacks the hypnotic and motor impairment that most benzodiazepines do. The main metabolite of this is Nordazepam and to a lesser effect Oxazepam, which is where it gets most of its effects", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "2.5-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-90 minutes" + }, + { + "name": "Duration", + "value": "6-16 hours" + }, + { + "name": "After Effects", + "value": "2-10 hours" + } + ] + } + ] + }, + { + "name": "pipt", + "url": "https://wiki.tripsit.me/wiki/pipt", + "aliases": [], + "aliasesStr": "", + "summary": "A rare psychedelic tryptamine related to DPT. Little is known about the effects or safety profile of this compound.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Vapourized", + "dosage": [ + { + "name": "Threshold", + "value": "10 mg" + }, + { + "name": "Light", + "value": "15 mg" + }, + { + "name": "Common", + "value": "15-20 mg" + }, + { + "name": "Heavy", + "value": "20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5 minutes" + }, + { + "name": "Duration", + "value": "2 hours" + } + ] + } + ] + }, + { + "name": "placdyl", + "url": "https://wiki.tripsit.me/wiki/placdyl", + "aliases": [ + "placidyl", + "ethchlorvnol" + ], + "aliasesStr": "placidyl, ethchlorvnol", + "summary": "Sedative Hypnotic medication made in the 50's. It was used for short term help for insomnia (No longer than two weeks)", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "100-200 mg" + }, + { + "name": "Common", + "value": "200-500 mg" + }, + { + "name": "Strong", + "value": "500-750 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "6-9 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "prazepam", + "url": "https://wiki.tripsit.me/wiki/prazepam", + "aliases": [ + "centrac", + "centrax", + "demetrin", + "lysanxia", + "pozapam", + "prasepine", + "prazene", + "reapam", + "trepidan" + ], + "aliasesStr": "centrac, centrax, demetrin, lysanxia, pozapam, prasepine, prazene, reapam, trepidan", + "summary": "Benzodiazepine dervative. Has all the normal benzodiazepine-like quality (Anxiolytic/anticonvulsant/sedative/Skeletal muscle relaxant) It is also a prodrug for Desmethyldiazepam which is responsible for most if not all of the effects of Prazepam.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-20 mg" + }, + { + "name": "Strong", + "value": "20-40 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-120 minutes" + }, + { + "name": "Duration", + "value": "8-20 hours" + }, + { + "name": "After Effects", + "value": "8-24 hours" + } + ] + } + ] + }, + { + "name": "pre-084", + "url": "https://wiki.tripsit.me/wiki/pre-084", + "aliases": [], + "aliasesStr": "", + "summary": "A sigma-1 receptor agonist derived structurally from PCP. It has cognitive enhancing effects as well as antidepressant effects, and shows promise in treating many nervous system diseases such as ALS and parkinsons.", + "classes": { + "psychoactive": [ + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "prl-8-53", + "url": "https://wiki.tripsit.me/wiki/prl-8-53", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_PRL853.shtml", + "aliases": [ + "prl853" + ], + "aliasesStr": "prl853", + "summary": "A nootropic research chemical first synthesized in the 70s. One study shows a drastic improvement in mid-term memory among users, but otherwise it is severely lacking in information surrounding it. It has no recreational potential.", + "classes": { + "psychoactive": [ + "Nootropic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Threshold", + "value": "2-3 mg", + "note": " NOTE: start low and work your way up." + }, + { + "name": "Light", + "value": "3-5 mg", + "note": " NOTE: start low and work your way up." + }, + { + "name": "Common", + "value": "5-10 mg", + "note": " NOTE: start low and work your way up." + }, + { + "name": "Strong", + "value": "10-20 mg", + "note": " NOTE: start low and work your way up." + } + ], + "duration": [ + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "propofol", + "url": "https://wiki.tripsit.me/wiki/propofol", + "aliases": [ + "milk-of-amnesia", + "diprivan" + ], + "aliasesStr": "milk-of-amnesia, diprivan", + "summary": "A very short acting sedative that is usually given at the start of general anesthesia, and for maintenance of the prior. It should never be used outside of a medical setting. With that in mind, if you do plan to use this drug recreational, please have a very experienced friend with you that has the skills to insert a cannula, and monitor you very closely.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Intravenous", + "dosage": [ + { + "name": "Light", + "value": "10-30 mg", + "note": " Note: Do not take this as gospel. Please read ~experiences if you use this substance outside of a hospital setting." + }, + { + "name": "Common", + "value": "30-60 mg", + "note": " Note: Do not take this as gospel. Please read ~experiences if you use this substance outside of a hospital setting." + }, + { + "name": "Strong", + "value": "60-100 mg", + "note": " Note: Do not take this as gospel. Please read ~experiences if you use this substance outside of a hospital setting." + } + ], + "duration": [ + { + "name": "Onset", + "value": "0-2 minutes" + }, + { + "name": "Duration", + "value": "10-20 minutes" + }, + { + "name": "After Effects", + "value": "1-3 hours" + } + ] + } + ] + }, + { + "name": "propoxyphene", + "url": "https://wiki.tripsit.me/wiki/propoxyphene", + "aliases": [], + "aliasesStr": "", + "summary": "Is an analgesic in the opioid family. It is intended for mild pain and for its antitussive effects. Has been taken off the market in Europe and the US due to concerns of fatal overdoses and heart arrhythmias.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "30-65 mg" + }, + { + "name": "Common", + "value": "65-100 " + }, + { + "name": "Strong", + "value": "100-200 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-30 minutes" + }, + { + "name": "Duration", + "value": "1-3 hours" + }, + { + "name": "After Effects", + "value": "2-6 hours" + } + ] + } + ] + }, + { + "name": "propranolol", + "url": "https://wiki.tripsit.me/wiki/propranolol", + "aliases": [ + "inderal", + "hemangeol", + "innopran" + ], + "aliasesStr": "inderal, hemangeol, innopran", + "summary": "Is a nonselective beta blocker. It is used in medication for high blood pressure, anxiety, and tremors. Also fun fact, it was the first successful beta-blocker developed.", + "classes": { + "psychoactive": [ + "Depressant" + ], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "10-30 mg" + }, + { + "name": "Common", + "value": "40-80 mg" + }, + { + "name": "Strong", + "value": "80-140 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-45 minutes" + }, + { + "name": "Duration", + "value": "3-7 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ] + }, + { + "name": "propylphenidate", + "url": "https://wiki.tripsit.me/wiki/propylphenidate", + "aliases": [ + "pph" + ], + "aliasesStr": "pph", + "summary": "Propylphenidate is a short acting stimulant.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "15-25 mg" + }, + { + "name": "Common", + "value": "25-60 mg" + }, + { + "name": "Strong", + "value": "60-100 mg" + }, + { + "name": "Heavy", + "value": "100 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-25 minutes" + }, + { + "name": "Duration", + "value": "1.5-3 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ] + }, + { + "name": "pseudoephedrine", + "url": "https://wiki.tripsit.me/wiki/pseudoephedrine", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Pseudoephedrine.shtml", + "aliases": [], + "aliasesStr": "", + "summary": "Widely sold as a decongestant, and one isomer of Ephedrine. It is not generally considered to have any recreational value. Is also used in the synthesis of Methcathinone and Methamphetamine.", + "classes": { + "psychoactive": [ + "Stimulant" + ], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "30-60 mg" + }, + { + "name": "Common", + "value": "60-90 mg" + }, + { + "name": "Strong", + "value": "90-120 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-90 minutes" + }, + { + "name": "Duration", + "value": "2-12 hours" + } + ] + } + ] + }, + { + "name": "pst", + "url": "https://wiki.tripsit.me/wiki/pst", + "aliases": [ + "poppy-seed-tea", + "poppy-tea" + ], + "aliasesStr": "poppy-seed-tea, poppy-tea", + "summary": "Poppy Tea can be made from poppy pods, stalks and seeds, and contains various opium alkaloids including primarily Morphine, as well as Codeine and others. There is great variation in Poppy Tea potency and therefor doses are indicated for opioid naive users.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [] + } + }, + { + "name": "pv-8", + "url": "https://wiki.tripsit.me/wiki/pv-8", + "aliases": [ + "a-phpp" + ], + "aliasesStr": "a-phpp", + "summary": "Stimulant of the pyrrolidinophenone class that is a higher homologue of α-PHP and generally less potent and less effective.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "10-20 mg" + }, + { + "name": "Common", + "value": "20-40 mg" + }, + { + "name": "Strong", + "value": "40-60 mg" + }, + { + "name": "Heavy", + "value": "60 " + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "6-12 hours" + } + ] + } + ] + }, + { + "name": "pv-9", + "url": "https://wiki.tripsit.me/wiki/pv-9", + "aliases": [], + "aliasesStr": "", + "summary": "Inactive.", + "classes": { + "psychoactive": [ + "Inactive" + ], + "chemical": [] + } + }, + { + "name": "pv-10", + "url": "https://wiki.tripsit.me/wiki/pv-10", + "aliases": [], + "aliasesStr": "", + "summary": "Inactive.", + "classes": { + "psychoactive": [ + "Inactive" + ], + "chemical": [] + } + }, + { + "name": "pyrophenidone", + "url": "https://wiki.tripsit.me/wiki/pyrophenidone", + "aliases": [], + "aliasesStr": "", + "summary": "An NDRI pyrovalerone derivative reported to have very similar subjective effects. Virtually no information exists about this drug's effects in humans.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "20-40 mg" + }, + { + "name": "Common", + "value": "40-60 mg" + }, + { + "name": "Strong", + "value": "60-90 mg" + }, + { + "name": "Heavy", + "value": "90 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Duration", + "value": "1-3 hours" + } + ] + }, + { + "name": "Vapourized", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg" + }, + { + "name": "Common", + "value": "10-25 mg" + }, + { + "name": "Strong", + "value": "25-50 mg" + }, + { + "name": "Heavy", + "value": "50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-30 minutes" + }, + { + "name": "Duration", + "value": "1-1.5 hours" + } + ] + } + ] + }, + { + "name": "quazepam", + "url": "https://wiki.tripsit.me/wiki/quazepam", + "aliases": [ + "doral" + ], + "aliasesStr": "doral", + "summary": "Benzodiazepine derivate drug, noral is prescribed for short term treatment of insomnia, and sleep maintenance. its MOA is very similar to Ambien and Sonata and substitutes for those in animal studies.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "7.5-10 mg" + }, + { + "name": "Common", + "value": "10-15 mg" + }, + { + "name": "Strong", + "value": "15-30 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ] + }, + { + "name": "rilmazafone", + "url": "https://wiki.tripsit.me/wiki/rilmazafone", + "aliases": [ + "rhythmy" + ], + "aliasesStr": "rhythmy", + "summary": "Unique to Japan, this drug, also known as Rhythmy, is a benzodiazepine pro-drug which while inactive itself, is metabolised into the active compound in-vivo. Soluble in water.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Strong", + "value": "2-4 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-60 minutes" + }, + { + "name": "Duration", + "value": "6-8 hours" + }, + { + "name": "After Effects", + "value": "6-12 hours" + } + ] + } + ] + }, + { + "name": "ronlax", + "url": "https://wiki.tripsit.me/wiki/ronlax", + "aliases": [ + "ethyl-loflazepate", + "meilax", + "victan" + ], + "aliasesStr": "ethyl-loflazepate, meilax, victan", + "summary": "A benzodiazepine derivative that posses the standard benzodiazepine effects. It has a very long half life (51-103 hours) it metabolizes into an active compound. (Descarboxyloflazepate) Is sold in Mexico.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "0.5-1 mg" + }, + { + "name": "Common", + "value": "1-2 mg" + }, + { + "name": "Strong", + "value": "2-4 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "45-90 minutes" + }, + { + "name": "Duration", + "value": "8-16 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ] + }, + { + "name": "rti-111", + "url": "https://wiki.tripsit.me/wiki/rti-111", + "aliases": [ + "dichloropane" + ], + "aliasesStr": "dichloropane", + "summary": "Stimulant of the Phenyltropane class that acts as a SNDRI. Presumably it will have a slightly slower onset and bit longer duration than its parent compound Cocaine. Yet being the Tropane analogue of 3,4-CTMP.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "5-10 mg", + "note": " Note, this is not nice on the nose, and the duration between Oral and Insufflated are roughly around the same length." + }, + { + "name": "Common", + "value": "10-20 mg", + "note": " Note, this is not nice on the nose, and the duration between Oral and Insufflated are roughly around the same length." + }, + { + "name": "Strong", + "value": "20-40 mg", + "note": " Note, this is not nice on the nose, and the duration between Oral and Insufflated are roughly around the same length." + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "10-15 mg", + "note": " Note, this is not nice on the nose, and the duration between Oral and Insufflated are roughly around the same length." + }, + { + "name": "Common", + "value": "15-30 mg", + "note": " Note, this is not nice on the nose, and the duration between Oral and Insufflated are roughly around the same length." + }, + { + "name": "Strong", + "value": "30-50 mg", + "note": " Note, this is not nice on the nose, and the duration between Oral and Insufflated are roughly around the same length." + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "salvia", + "url": "https://wiki.tripsit.me/wiki/salvia", + "aliases": [], + "aliasesStr": "", + "summary": "A plant which, when smoked, causes short but very intense psychedelic experiences. It is considered physically safe, though users of high dosages often experience bizarre other-worldly scenarios which may be confusing or terrifying.", + "classes": { + "psychoactive": [ + "Deliriant", + "Depressant", + "Dissociative" + ], + "chemical": [ + "Common" + ] + } + }, + { + "name": "scopolamine", + "url": "https://wiki.tripsit.me/wiki/scopolamine", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Scopolamine.shtml", + "aliases": [], + "aliasesStr": "", + "summary": "The main active compound in datura, medium and high doses have serious side effects and cause extremely unpleasant deleriant hallucinations. Avoid it.", + "classes": { + "psychoactive": [ + "Deliriant", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "sertraline", + "url": "https://wiki.tripsit.me/wiki/sertraline", + "aliases": [ + "zoloft", + "lustral" + ], + "aliasesStr": "zoloft, lustral", + "classes": { + "psychoactive": [ + "SSRI" + ], + "chemical": [] + } + }, + { + "name": "sinicuichi", + "url": "https://wiki.tripsit.me/wiki/sinicuichi", + "aliases": [ + "sini", + "shrubby-yellowcrest", + "sun-opener", + "heimia-salicifolia", + "willow-leaf-heimia" + ], + "aliasesStr": "sini, shrubby-yellowcrest, sun-opener, heimia-salicifolia, willow-leaf-heimia", + "summary": "A perennial shrub with small narrow leaves and yellow flowers growing up to ~1.5 meters. Known under many different names. Has been used for Shamanic purposes by natives in Central America and Mexico. Mostly auditory based.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "sonata", + "url": "https://wiki.tripsit.me/wiki/sonata", + "aliases": [ + "zaleplon" + ], + "aliasesStr": "zaleplon", + "summary": "Sedative-Hypnotic of the nonbenzodiazepine from the Pyrazolopyramide class. It is used mostly for short term insomnia.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "2.5-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "sulbutiamine", + "url": "https://wiki.tripsit.me/wiki/sulbutiamine", + "aliases": [ + "sulbut", + "arcalion", + "enerion", + "bisibuthiamine", + "youvitan" + ], + "aliasesStr": "sulbut, arcalion, enerion, bisibuthiamine, youvitan", + "summary": "A thiamine derivative nootropic and stimulant drug. Caution should be used as sulbutiamine reduces dopamine output over time with consistant usage.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Stimulant", + "Supplement", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "200-400 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "6-10 hours" + } + ] + } + ] + }, + { + "name": "tetrahydrofuran-fentanyl", + "url": "https://wiki.tripsit.me/wiki/tetrahydrofuran-fentanyl", + "aliases": [ + "thf-f", + "thff" + ], + "aliasesStr": "thf-f, thff", + "summary": "An analogue of fentanyl that is unknown in literature. Is most likely less potent than most other analogues. Yet very few reports are around. Be careful.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Research Chemical" + ], + "chemical": [] + } + }, + { + "name": "tetrazepam", + "url": "https://wiki.tripsit.me/wiki/tetrazepam", + "aliases": [], + "aliasesStr": "", + "summary": "A benzodiazepine that has most of the properties of more common benzodiazepines. Yet was taken off the market in 2013. Has been noted to be more euphoric than most others.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "25-50 mg" + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-200 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-35 minutes" + }, + { + "name": "Duration", + "value": "6-10 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "th-pvp", + "url": "https://wiki.tripsit.me/wiki/th-pvp", + "aliases": [], + "aliasesStr": "", + "summary": "A pyrovalerone stimulant related to a-PVP and naphyrone. Very little information about effects or safety profile, virtually no evidence of human use.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-35 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-15 minutes" + }, + { + "name": "Duration", + "value": "2-3 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "20-30 mg" + }, + { + "name": "Common", + "value": "30-50 mg" + }, + { + "name": "Strong", + "value": "50-70 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-30 minutes" + }, + { + "name": "Duration", + "value": "3-5 hours" + } + ] + }, + { + "name": "Vapourized", + "dosage": [ + { + "name": "Light", + "value": "10-15 mg" + }, + { + "name": "Common", + "value": "15-25 mg" + }, + { + "name": "Strong", + "value": "25-35 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-2 minutes" + }, + { + "name": "Duration", + "value": "1 hours" + } + ] + } + ] + }, + { + "name": "theobromine", + "url": "https://wiki.tripsit.me/wiki/theobromine", + "aliases": [], + "aliasesStr": "", + "summary": "Theobromine is the principal bitter alkaloid of the cacao bean. It has been used in various pharmaceutical products as vasodilator, diuretic and as heart stimulant. Theobromine is consumed in cocoa, chocolate and in various forms of chocolate-based foods. It is also present in small amounts in green coffee beans, tea, mate and the kola nut.", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "100-200 mg" + }, + { + "name": "Common", + "value": "200-300 mg" + }, + { + "name": "Strong", + "value": "300-600 mg" + }, + { + "name": "Heavy", + "value": "600 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "2-3 hours" + }, + { + "name": "Duration", + "value": "30-40 hours" + } + ] + } + ] + }, + { + "name": "thiopental", + "url": "https://wiki.tripsit.me/wiki/thiopental", + "aliases": [], + "aliasesStr": "", + "summary": "Barbiturate that kicks in very quickly, that is used to Anesthesia, Medical induced comas among other things.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Barbiturate" + ] + } + }, + { + "name": "thiopropamine", + "url": "https://wiki.tripsit.me/wiki/thiopropamine", + "aliases": [ + "tpa", + "normethiopropamine", + "a-methyl-2-thipheneethanamine" + ], + "aliasesStr": "tpa, normethiopropamine, a-methyl-2-thipheneethanamine", + "summary": "A substance that is closely related to Methiopopramine (MPA). Is roughly about 1/3rd the potency of amphetamine, differs from amphetmine from the phenyl ring is switched with a thiophene ring.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "20-50 mg" + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-125 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "1-4 hours" + }, + { + "name": "After Effects", + "value": "1-3 hours" + } + ] + } + ] + }, + { + "name": "tiletamine", + "url": "https://wiki.tripsit.me/wiki/tiletamine", + "aliases": [ + "telazol" + ], + "aliasesStr": "telazol", + "summary": "A relatively rare dissociative anesthetic, pharmacologically classified as an NMDA receptor antagonist. It is related to other anesthetics in this family such as Ketamine and phencyclidine. Has been used to cut Ketamine, in which case it may cause additional nausea. In Veterinary practice it is mixed with Zolazolam, a potent anaesthetic at a 1:1 ratio.", + "classes": { + "psychoactive": [ + "Dissociative", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Intramuscular", + "dosage": [ + { + "name": "Light", + "value": "2.5-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-5 minutes" + }, + { + "name": "Duration", + "value": "1-4 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "10-25 mg" + }, + { + "name": "Common", + "value": "25-50 mg" + }, + { + "name": "Strong", + "value": "50-100 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-45 minutes" + }, + { + "name": "Duration", + "value": "6-12 hours" + }, + { + "name": "After Effects", + "value": "1-72 hours" + } + ] + } + ] + }, + { + "name": "tilidine", + "url": "https://wiki.tripsit.me/wiki/tilidine", + "aliases": [ + "tilidate", + "tilidin", + "valoron", + "valtran" + ], + "aliasesStr": "tilidate, tilidin, valoron, valtran", + "summary": "Synthetic opioid, used mainly for treatment of moderate to severe pain. In some countries it's mixed with Naloxone to lower the abuse liability. Though in some only Tilidine. Roughly 0.2 - 1 on the potency scale to Morphine. (So 20mg's of Morphine to 100mg's Tilidine)", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "25-50 mg" + }, + { + "name": "Common", + "value": "50-100 mg" + }, + { + "name": "Strong", + "value": "100-200 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-20 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + }, + { + "name": "tolibut", + "url": "https://wiki.tripsit.me/wiki/tolibut", + "aliases": [], + "aliasesStr": "", + "summary": "Analogue of GABA, and the 4-methyl analogue of Phenibut. Has similar effects, acts on GABA(B).", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "trazodone", + "url": "https://wiki.tripsit.me/wiki/trazodone", + "aliases": [], + "aliasesStr": "", + "summary": "A novel antidepressant of the SARI class, a serotonin antagonist and reuptake inhibitor. Often used to treat depression and anxiety. It has anxiolytic and hypnotic effects.", + "classes": { + "psychoactive": [ + "Depressant" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "25-50 mg", + "note": " Note: Please do not take this drug unless prescribed." + }, + { + "name": "Common", + "value": "50-100 mg", + "note": " Note: Please do not take this drug unless prescribed." + }, + { + "name": "Strong", + "value": "100-150 ", + "note": " Note: Please do not take this drug unless prescribed." + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-40 minutes" + }, + { + "name": "Duration", + "value": "6-10 hours" + } + ] + } + ] + }, + { + "name": "troparil", + "url": "https://wiki.tripsit.me/wiki/troparil", + "aliases": [], + "aliasesStr": "", + "summary": "A stimulant and dopamine reuptake inhibitor developed in the 1970s, it is frequently used in scientific research but has seen little usage outside of the lab. Similar effects to cocaine, though much longer and without any local anaesthetic action. Probably hard on the nose.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "15-20 mg" + }, + { + "name": "Common", + "value": "20-30 mg" + }, + { + "name": "Strong", + "value": "30-60 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10 minutes" + }, + { + "name": "Duration", + "value": "45-70 minutes" + }, + { + "name": "After Effects", + "value": "1-2 hours" + } + ] + } + ] + }, + { + "name": "truffles", + "url": "https://wiki.tripsit.me/wiki/truffles", + "aliases": [], + "aliasesStr": "", + "summary": "Truffles (magic truffles, sclerotium) are the thickened root sections of magic mushrooms. Like magic mushrooms, Truffles contain the psycho-active chemicals psilocybin and psilocin. See mushrooms for more information.", + "classes": { + "psychoactive": [ + "Psychedelic" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Dry", + "dosage": [ + { + "name": "Light", + "value": "0.5-1.5 g", + "note": " NOTE: Dry truffles will be several times more potent" + }, + { + "name": "Common", + "value": "1.5-4 g", + "note": " NOTE: Dry truffles will be several times more potent" + }, + { + "name": "Heavy", + "value": "4 g", + "note": " NOTE: Dry truffles will be several times more potent" + } + ] + }, + { + "name": "Wet", + "dosage": [ + { + "name": "Light", + "value": "5 g", + "note": " NOTE: Dry truffles will be several times more potent" + }, + { + "name": "Common", + "value": "10 g", + "note": " NOTE: Dry truffles will be several times more potent" + }, + { + "name": "Heavy", + "value": "15 g", + "note": " NOTE: Dry truffles will be several times more potent" + } + ] + } + ] + }, + { + "name": "tuinal", + "url": "https://wiki.tripsit.me/wiki/tuinal", + "aliases": [ + "tuinol", + "chirstmas-trees", + "rainbows", + "beans", + "nawls", + "jeebs" + ], + "aliasesStr": "tuinol, chirstmas-trees, rainbows, beans, nawls, jeebs", + "summary": "Brand name of a combination drug of two barbiturate salts (Secobarbital/Amobarbital) in equal amounts. It was introduced in the late 1940's.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Barbiturate" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "25-75 mg" + }, + { + "name": "Common", + "value": "75-150 mg" + }, + { + "name": "Strong", + "value": "150-300 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-45 minutes" + }, + { + "name": "Duration", + "value": "5-12 hours" + }, + { + "name": "After Effects", + "value": "1-8 hours" + } + ] + } + ] + }, + { + "name": "u-49900", + "url": "https://wiki.tripsit.me/wiki/u-49900", + "aliases": [], + "aliasesStr": "", + "summary": "A substance that is an analogue of U-47700, yet doesn't share much with it. If you are interested in trying it, I recommend reading this. https://www.reddit.com/r/researchchemicals/comments/5gbo3e/u49900_experiment_and_warning/", + "classes": { + "psychoactive": [ + "Dissociative", + "Opioid", + "Research Chemical", + "Tentative" + ], + "chemical": [] + } + }, + { + "name": "u-51754", + "url": "https://wiki.tripsit.me/wiki/u-51754", + "aliases": [ + "methene-u47700", + "methene-u-47700" + ], + "aliasesStr": "methene-u47700, methene-u-47700", + "summary": "A very potent opioid, that seems to have a fair bit of κ-opioid action. So Dyshopria, Auditory hallucinations can be an effect. Is an analogue of U-47700.", + "classes": { + "psychoactive": [ + "Depressant", + "Dissociative", + "Opioid", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Rectal", + "dosage": [ + { + "name": "Light", + "value": "1-3 mg" + }, + { + "name": "Common", + "value": "3-5 mg" + }, + { + "name": "Strong", + "value": "5-10 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "1-2 hours" + } + ] + } + ] + }, + { + "name": "valerylfentanyl", + "url": "https://wiki.tripsit.me/wiki/valerylfentanyl", + "aliases": [ + "vf" + ], + "aliasesStr": "vf", + "summary": "Opioid that is a higher homologue of Butyrfentanyl with greatly reduced potency.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50 " + } + ] + } + ] + }, + { + "name": "viagra", + "url": "https://wiki.tripsit.me/wiki/viagra", + "aliases": [], + "aliasesStr": "", + "summary": "A medication originally developed to lower blood pressure, and now widely used to treat erectile dysfunction in men. Do not mix with anything that lowers blood pressure. Contact EMS if erection lasts longer than 4 hours.", + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "25-30 mg" + }, + { + "name": "Common", + "value": "30-50 mg" + }, + { + "name": "Strong", + "value": "50-100 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-60 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + } + ] + } + ] + }, + { + "name": "viloxazine", + "url": "https://wiki.tripsit.me/wiki/viloxazine", + "aliases": [], + "aliasesStr": "", + "summary": "NRI that was used as an antidepressant in some European countries, and had a pronouced stimulant effect similar to amphetamines without any signs of dependence. Withdrawn in the early 2000s.", + "classes": { + "psychoactive": [ + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "50-75 mg" + }, + { + "name": "Common", + "value": "75-150 mg" + }, + { + "name": "Strong", + "value": "150 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-30 minutes" + }, + { + "name": "Duration", + "value": "3-6 hours" + } + ] + } + ] + }, + { + "name": "vyvanse", + "url": "https://wiki.tripsit.me/wiki/vyvanse", + "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Lisdexamfetamine.shtml", + "aliases": [ + "lisdextroamfetamine", + "lisdextroamphetamine", + "lisdexamphetamine", + "lisdexamfetamine" + ], + "aliasesStr": "lisdextroamfetamine, lisdextroamphetamine, lisdexamphetamine, lisdexamfetamine", + "summary": "Also known as lisdexamphetamine, this drug is a CNS stimulant often prescribed for ADHD, narcolepsy and obesity. It is also a pro-drug for dextroamphetamine, and functions as a method for providing extended-release stimulation. It is sometimes prescribed alongside an SSRI for depression.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Stimulant" + ], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "20-30 mg", + "note": " Note: Vyvanse is the same orally and insufflated - it is pointless to insufflate." + }, + { + "name": "Common", + "value": "30-50 mg", + "note": " Note: Vyvanse is the same orally and insufflated - it is pointless to insufflate." + }, + { + "name": "Strong", + "value": "50-100 mg", + "note": " Note: Vyvanse is the same orally and insufflated - it is pointless to insufflate." + } + ], + "duration": [ + { + "name": "Onset", + "value": "60-90 minutes" + }, + { + "name": "Duration", + "value": "6-14 hours" + }, + { + "name": "After Effects", + "value": "1-16 hours" + } + ] + } + ] + }, + { + "name": "w-15", + "url": "https://wiki.tripsit.me/wiki/w-15", + "aliases": [], + "aliasesStr": "", + "summary": "A potent opioid that is 5.4x more potent than Morphine. Has a distinct structure unrelated to nearly all other opioid compounds.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming", + "Opioid", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "2-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-15 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "15-40 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "2-4 hours" + } + ] + } + ] + }, + { + "name": "yerba-mate", + "url": "https://wiki.tripsit.me/wiki/yerba-mate", + "aliases": [], + "aliasesStr": "", + "summary": "Is marketed for its ability to suppress appetite and burn fat. Yet only with high doses. It has a quite high ratio of caffeine. It has anti-inflammatory properties.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Nootropic", + "Stimulant" + ], + "chemical": [ + "Common" + ] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Common", + "value": "1000-1500 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + } + ] + }, + { + "name": "yopo", + "url": "https://wiki.tripsit.me/wiki/yopo", + "aliases": [ + "anadenanthera", + "\"anadenanthera" + ], + "aliasesStr": "anadenanthera, \"anadenanthera", + "summary": "Anadenanthera peregrina, also known as yopo, is a perennial tree native to the Caribbean and South America. It is an entheogen containing 5-MeO-DMT and DMT, and is used in healing ceremonies and rituals. It is also a source of dietary calcium.", + "classes": { + "psychoactive": [ + "Empathogen", + "Psychedelic" + ], + "chemical": [] + } + }, + { + "name": "zolazepam", + "url": "https://wiki.tripsit.me/wiki/zolazepam", + "aliases": [], + "aliasesStr": "", + "summary": "A substance that is structurally related to benzodiazepines. Is only used in Veterinary medicine. It is usually used in tandem with either the potent NMDA antagonist Tiletamine (at a 1:1 ratio) or with the α2 adrenergic receptor agonist Xylazine. Is roughly around four times the potency of Diazepam. Yet is water soluable.", + "classes": { + "psychoactive": [ + "Depressant", + "Habit Forming" + ], + "chemical": [ + "Benzodiazepine" + ] + }, + "roas": [ + { + "name": "Insufflated", + "dosage": [ + { + "name": "Light", + "value": "1-3 mg" + }, + { + "name": "Common", + "value": "3-6 mg" + }, + { + "name": "Strong", + "value": "6-12 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "5-10 minutes" + }, + { + "name": "Duration", + "value": "2-3 hours" + }, + { + "name": "After Effects", + "value": "1-4 hours" + } + ] + }, + { + "name": "Intramuscular", + "dosage": [ + { + "name": "Light", + "value": "1-3 mg" + }, + { + "name": "Common", + "value": "3-5 mg" + }, + { + "name": "Strong", + "value": "5-10 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "1-5 minutes" + }, + { + "name": "Duration", + "value": "2-4 hours" + }, + { + "name": "After Effects", + "value": "1-3 hours" + } + ] + }, + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "2.5-5 mg" + }, + { + "name": "Common", + "value": "5-10 mg" + }, + { + "name": "Strong", + "value": "10-20 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "10-30 minutes" + }, + { + "name": "Duration", + "value": "4-6 hours" + }, + { + "name": "After Effects", + "value": "1-6 hours" + } + ] + } + ] + }, + { + "name": "α-pbp", + "url": "https://wiki.tripsit.me/wiki/α-pbp", + "aliases": [ + "a-pbp", + "alpha-pbp" + ], + "aliasesStr": "a-pbp, alpha-pbp", + "summary": "Stimulant that is the homologue between α-PPP and α-PVP.", + "classes": { + "psychoactive": [ + "Habit Forming", + "Research Chemical", + "Stimulant", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "10-25 mg" + }, + { + "name": "Common", + "value": "25-50 mg" + }, + { + "name": "Strong", + "value": "50 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "20-35 minutes" + }, + { + "name": "Duration", + "value": "3-4 hours" + }, + { + "name": "After Effects", + "value": "1-24 hours" + } + ] + } + ] + }, + { + "name": "βh-2c-b", + "url": "https://wiki.tripsit.me/wiki/βh-2c-b", + "aliases": [ + "beta-hydroxy-2c-b", + "bh-2c-b", + "bh-2cb", + "bohb", + "boh-2c-b", + "boh-2cb" + ], + "aliasesStr": "beta-hydroxy-2c-b, bh-2c-b, bh-2cb, bohb, boh-2c-b, boh-2cb", + "summary": "β-Hydroxy-2C-B is a novel analogue of 2C-B that is a bit less potent and has a longer duration. It's thought to be the active metabolite of βk-2C-B.", + "classes": { + "psychoactive": [ + "Psychedelic", + "Research Chemical", + "Tentative" + ], + "chemical": [] + }, + "roas": [ + { + "name": "Oral", + "dosage": [ + { + "name": "Light", + "value": "25-40 mg" + }, + { + "name": "Common", + "value": "40-60 mg" + }, + { + "name": "Strong", + "value": "60-75 mg" + }, + { + "name": "Heavy", + "value": "75 mg" + } + ], + "duration": [ + { + "name": "Onset", + "value": "30-50 minutes" + }, + { + "name": "Duration", + "value": "7-10 hours" + }, + { + "name": "After Effects", + "value": "1-12 hours" + } + ] + } + ] + } +] \ No newline at end of file diff --git a/src/global/assets/data/drug_db_combined.json b/src/global/assets/data/drug_db_combined.json deleted file mode 100644 index d9e62645f..000000000 --- a/src/global/assets/data/drug_db_combined.json +++ /dev/null @@ -1,45744 +0,0 @@ -[ - { - "url": "https://psychonautwiki.org/wiki/1,4-Butanediol", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_14Butanediol.shtml", - "name": "1,4-Butanediol", - "aliases": [ - "1,4-b", - "1,4-bd", - "14bd", - "bd", - "bdo", - "butylene glycol", - "one comma four", - "one four bee", - "or one four b-d-o" - ], - "aliasesStr": "1,4-b,1,4-bd,14bd,bd,bdo,butylene glycol,one comma four,one four bee,or one four b-d-o", - "summary": "1,4-BD is a clear liquid with intoxicating effects. It is a pro-drug for GHB, and has similar though reportedly inferior effects. It also carries the potential for more health risks than GHB, such as liver toxicity.", - "reagents": "Marquis: Faint Brown. | Mandelin: Brown.", - "classes": { - "chemical": [ - "Diol", - "Alkanediol" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately physically and psychologically addictive", - "tolerance": { - "full": "within several weeks of continuous use", - "half": null, - "zero": "7 - 14 days" - }, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "< 0.5 mL" - }, - { - "name": "Light", - "value": "0.5 - 1 mL" - }, - { - "name": "Common", - "value": "1 - 2.5 mL" - }, - { - "name": "Strong", - "value": "2.5 - 4 mL" - }, - { - "name": "Heavy", - "value": "4 mL +", - "note": "Warning: Doses above 4 mL can induce heavy sleep and doses above 6 mL can lead to poisoning" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 5 hours" - }, - { - "name": "Onset", - "value": "20 minutes - 60 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "1.5 - 2 hours" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/1B-LSD", - "experiencesUrl": null, - "name": "1B-LSD", - "aliases": [ - "1b" - ], - "aliasesStr": "1b", - "summary": "1B-LSD (1-butanoyl-lysergic acid diethylamide) is an LSD analogue which appears to be about as potent as 1P-LSD (slightly more potent than LSD) and has a slightly shorter duration than that of LSD, again thought to be about the same as 1P-LSD. Released in late 2018, and marketed agressively as a replacement for 1P-LSD. 1B-LSD does not yet have a clearly established safety profile,", - "reagents": null, - "classes": { - "chemical": [ - "Lysergamides" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "extremely low toxicity relative to dose" - ], - "addictionPotential": "non-addictive with a low abuse potential", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "5-7 days", - "zero": "14 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "15 \u00b5g" - }, - { - "name": "Light", - "value": "25 - 75 \u00b5g" - }, - { - "name": "Common", - "value": "75 - 150 \u00b5g" - }, - { - "name": "Strong", - "value": "150 - 300 \u00b5g" - }, - { - "name": "Heavy", - "value": "300 \u00b5g +" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 12 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "45 - 120 minutes" - }, - { - "name": "Peak", - "value": "3 - 5 hours" - }, - { - "name": "Offset", - "value": "3 - 5 hours" - }, - { - "name": "After effects", - "value": "6 - 24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/1cP-AL-LAD", - "experiencesUrl": null, - "name": "1cP-AL-LAD", - "aliases": [], - "aliasesStr": "", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Lysergamides" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown", - "extremely low toxicity" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "5-7 days", - "zero": "14 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "20 \u00b5g" - }, - { - "name": "Light", - "value": "50 - 100 \u00b5g" - }, - { - "name": "Common", - "value": "100 - 225 \u00b5g" - }, - { - "name": "Strong", - "value": "225 - 350 \u00b5g" - }, - { - "name": "Heavy", - "value": "350 \u00b5g +" - } - ], - "duration": [ - { - "name": "Total", - "value": "7 - 10 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "2.5 - 5 hours" - }, - { - "name": "Offset", - "value": "2 - 3 hours" - }, - { - "name": "After effects", - "value": "2 - 18 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/1cP-LSD", - "experiencesUrl": null, - "name": "1cP-LSD", - "aliases": [ - "1cp", - "1cplsd", - "curie" - ], - "aliasesStr": "1cp,1cplsd,curie", - "summary": "1cP-LSD (1-cyclopropionyl-lysergic acid diethylamide) is a novel lysergamide with little to no history of use. It is said to be a less pushy and shorter lasting version of LSD. Described as having a more gradual onset than 1P-LSD, with a less visual more meditative headspace when compared with LSD.*NOTE: This is a very new research chemical - take all info with a grain of salt.*", - "reagents": null, - "classes": { - "chemical": [ - "Lysergamides" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": null, - "addictionPotential": "non-addictive with a low abuse potential", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "5-7 days", - "zero": "14 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "15 \u00b5g" - }, - { - "name": "Light", - "value": "25 - 75 \u00b5g" - }, - { - "name": "Common", - "value": "75 - 150 \u00b5g" - }, - { - "name": "Strong", - "value": "150 - 300 \u00b5g" - }, - { - "name": "Heavy", - "value": "300 \u00b5g +" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 12 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "45 - 120 minutes" - }, - { - "name": "Peak", - "value": "3 - 5 hours" - }, - { - "name": "Offset", - "value": "3 - 5 hours" - }, - { - "name": "After effects", - "value": "6 - 24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/1cP-MiPLA", - "experiencesUrl": null, - "name": "1cP-MiPLA", - "aliases": [], - "aliasesStr": "", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Lysergamides" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown", - "extremely low toxicity" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "5-7 days", - "zero": "14 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "50 \u00b5g" - }, - { - "name": "Light", - "value": "100 - 150 \u00b5g" - }, - { - "name": "Common", - "value": "150 - 200 \u00b5g" - }, - { - "name": "Strong", - "value": "200 - 250 \u00b5g" - }, - { - "name": "Heavy", - "value": "300 \u00b5g +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - }, - { - "name": "Come up", - "value": "45 - 90 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/1P-ETH-LAD", - "experiencesUrl": null, - "name": "1P-ETH-LAD", - "aliases": [ - "1pethlad" - ], - "aliasesStr": "1pethlad", - "summary": "A new psychedelic lysergamide which is suspected to be a prodrug of ETH-LAD, which could explain why the doses are very similar. Or it could be active on its own. Scientific studies would need to be written to understand, yet there are none.", - "reagents": null, - "classes": { - "chemical": [ - "Lysergamides" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "25 \u00b5g" - }, - { - "name": "Light", - "value": "30 - 60 \u00b5g" - }, - { - "name": "Common", - "value": "60 - 100 \u00b5g" - }, - { - "name": "Strong", - "value": "100 - 200 \u00b5g" - }, - { - "name": "Heavy", - "value": "200 \u00b5g +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 12 hours" - }, - { - "name": "Onset", - "value": "30 - 90 minutes" - }, - { - "name": "Peak", - "value": "2 - 4 hours" - }, - { - "name": "Offset", - "value": "2 - 4 hours" - }, - { - "name": "After effects", - "value": "6 - 24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/1P-LSD", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_1PLSD.shtml", - "name": "1P-LSD", - "aliases": [ - "1p", - "1plsd" - ], - "aliasesStr": "1p,1plsd", - "summary": "An LSD analogue which appears to be slightly more potent with a shorter duration. Its effects are reported to be extremely similar to LSD, and thus far seems to be similarly safe. Released in late 2014, It has quickly become a highly popular research chemical due to its implicit legality, similarity to LSD and wide availability on the Internet.", - "reagents": "Marquis: Slow Purple. | Mecke: Brown. | Mandelin: No colour change. | Froehde: No colour change. | Liebermann: No colour change. | Ehrlich's Reagent: No colour change. | Gallic Acid: Brown.", - "classes": { - "chemical": [ - "Lysergamides" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "extremely low toxicity relative to dose" - ], - "addictionPotential": "non-addictive with a low abuse potential", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "5-7 days", - "zero": "14 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "15 \u00b5g" - }, - { - "name": "Light", - "value": "25 - 75 \u00b5g" - }, - { - "name": "Common", - "value": "75 - 150 \u00b5g" - }, - { - "name": "Strong", - "value": "150 - 300 \u00b5g" - }, - { - "name": "Heavy", - "value": "300 \u00b5g +" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 12 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "45 - 120 minutes" - }, - { - "name": "Peak", - "value": "3 - 5 hours" - }, - { - "name": "Offset", - "value": "3 - 5 hours" - }, - { - "name": "After effects", - "value": "6 - 24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/1V-LSD", - "experiencesUrl": null, - "name": "1V-LSD", - "aliases": [], - "aliasesStr": "", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Lysergamides" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "extremely low toxicity relative to dose" - ], - "addictionPotential": "non-addictive with a low abuse potential", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "5-7 days", - "zero": "14 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "15 \u00b5g" - }, - { - "name": "Light", - "value": "25 - 75 \u00b5g" - }, - { - "name": "Common", - "value": "75 - 150 \u00b5g" - }, - { - "name": "Strong", - "value": "150 - 300 \u00b5g" - }, - { - "name": "Heavy", - "value": "300 \u00b5g +" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 12 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "45 - 120 minutes" - }, - { - "name": "Peak", - "value": "3 - 5 hours" - }, - { - "name": "Offset", - "value": "3 - 5 hours" - }, - { - "name": "After effects", - "value": "6 - 24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/2,5-DMA", - "experiencesUrl": null, - "name": "2,5-DMA", - "aliases": [ - "doh" - ], - "aliasesStr": "doh", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Amphetamine" - ], - "psychoactive": [ - "Stimulants", - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "after ingestion over the couse of multiple days", - "half": "3-5 days", - "zero": "7-10 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "10mg" - }, - { - "name": "Light", - "value": "10mg - 40mg" - }, - { - "name": "Common", - "value": "40mg - 80mg" - }, - { - "name": "Strong", - "value": "80mg - 200mg" - }, - { - "name": "Heavy", - "value": "200mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 8h" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/2-Aminoindane", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2Aminoindan.shtml", - "name": "2-AI", - "aliases": [ - "2-aminoindan", - "2-aminoindane", - "2ai" - ], - "aliasesStr": "2-aminoindan,2-aminoindane,2ai", - "summary": "Short acting stimulant that is sometimes compared to the likes of Methamphetamine. It is a rigid analogue of Amphetamine, and also partially substitutes for the prior in rat discrimination studies.", - "reagents": "Marquis: Orange > Brown. | Mecke: Yellow. | Mandelin: Blue. | Liebermann: Yellow Brown. | Ehrlich: No colour change.", - "classes": { - "chemical": [ - "Aminoindane" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "3 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 20 mg" - }, - { - "name": "Strong", - "value": "20 - 40 mg" - }, - { - "name": "Heavy", - "value": "40 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1 - 2 hours" - }, - { - "name": "Onset", - "value": "10 - 30 minutes" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/2-chloro-ephenidine", - "experiencesUrl": null, - "name": "2-Chloroephenidine", - "aliases": [ - "2-cl-ephenidine", - "2chloroephenidine", - "2clephenidine" - ], - "aliasesStr": "2-cl-ephenidine,2chloroephenidine,2clephenidine", - "summary": "Analogue of Ephenidine. Very little is known about this quite obscure compound. Very likely to exhibit dissociative effects, and is slightly less potent than the parent drug Ephenidine.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "100-130mg" - }, - { - "name": "Common", - "value": "130-175mg" - }, - { - "name": "Strong", - "value": "175-200mg" - }, - { - "name": "Heavy", - "value": "200mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Desoxypipradrol", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Desoxypipradrol_.shtml", - "name": "2-DPMP", - "aliases": [ - "2-desoxypiperadol", - "2dpmp", - "desoxypipradol", - "desoxypipradrol", - "ivory wave" - ], - "aliasesStr": "2-desoxypiperadol,2dpmp,desoxypipradol,desoxypipradrol,ivory wave", - "summary": "A very potent stimulant that is a NDRI. Developed by Novartis in the 1950s, to treat narcolepsy and ADHD, however dropped when Methylphenidate was produced a few years later, which was seen as superior due to its shorter T\u00bd. 2-DPMP Half life 16-20 hours. Warning: subjective reports suggest this drug is caustic to the nasal mucosa and may cause damage to the nasal cavity.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted piperidines" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": null, - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.25 mg" - }, - { - "name": "Light", - "value": "1 - 2 mg" - }, - { - "name": "Common", - "value": "2 - 6 mg" - }, - { - "name": "Strong", - "value": "6 - 8 mg" - }, - { - "name": "Heavy", - "value": "8 mg +", - "note": "Heavy doses may result in psychosis and mania." - } - ], - "duration": [ - { - "name": "Total", - "value": "16 - 72 hours" - }, - { - "name": "Onset", - "value": "1 - 4 hours" - }, - { - "name": "Peak", - "value": "9 - 30 hours" - }, - { - "name": "Offset", - "value": "6 - 40 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "0.25 mg" - }, - { - "name": "Light", - "value": "0.5 - 1.5 mg" - }, - { - "name": "Common", - "value": "1.5 - 3.5 mg" - }, - { - "name": "Strong", - "value": "3.5 - 5 mg" - }, - { - "name": "Heavy", - "value": "5 mg +", - "note": "Heavy doses may result in psychosis and mania." - } - ], - "duration": [ - { - "name": "Total", - "value": "10 - 72 hours" - }, - { - "name": "Onset", - "value": "15 - 240 minutes" - }, - { - "name": "Come up", - "value": "2 - 6 hours" - }, - { - "name": "Peak", - "value": "6 - 30 hours" - }, - { - "name": "Offset", - "value": "6 - 40 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/2-FA", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2Fluoroamphetamine.shtml", - "name": "2-FA", - "aliases": [ - "2-fluoroamphetamine", - "2-fmp", - "2fa" - ], - "aliasesStr": "2-fluoroamphetamine,2-fmp,2fa", - "summary": "Stimulant drug of the amphetamine family. Reported as having effects similar to those of Dextroamphetamine, but with a milder euphoria and a comparatively smoother comedown. Has a shorter duration and less empathogenic effect-profile as compared with 4-FA. Thought to produce less neurotoxic metabolites compared to amphetamine.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted amphetamines" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 10 days" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "15 - 30 mg" - }, - { - "name": "Common", - "value": "30 - 50 mg" - }, - { - "name": "Strong", - "value": "50 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 4 hours" - }, - { - "name": "Onset", - "value": "15 - 30 minutes" - }, - { - "name": "Come up", - "value": "15 - 30 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "1 - 1.5 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "2-5 minutes" - }, - { - "name": "Duration", - "value": "1-2 hours" - }, - { - "name": "After effects", - "value": "2-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/2-Fluorodeschloroketamine", - "experiencesUrl": null, - "name": "2-FDCK", - "aliases": [ - "2-fk", - "2-fl-2'-oxo-pcm", - "2-fluorodeschloroketamine", - "2-fluoroketamine", - "2f-dck", - "2f-ket", - "2f-ketamine", - "2fdck", - "2fket", - "fluoroketamine" - ], - "aliasesStr": "2-fk,2-fl-2'-oxo-pcm,2-fluorodeschloroketamine,2-fluoroketamine,2f-dck,2f-ket,2f-ketamine,2fdck,2fket,fluoroketamine", - "summary": "Dissociative anesthetic of the arylcyclohexylamine class. Seemingly on par with ketamine in dosage. Longer onset than the prior.", - "reagents": null, - "classes": { - "chemical": [ - "Arylcyclohexylamines" - ], - "psychoactive": [ - "Dissociatives" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dissociative" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 25 mg" - }, - { - "name": "Common", - "value": "25 - 70 mg" - }, - { - "name": "Strong", - "value": "70 - 140 mg" - }, - { - "name": "Heavy", - "value": "140 mg+" - } - ], - "duration": [ - { - "name": "Total", - "value": "2.5 - 5.0 hours" - }, - { - "name": "Onset", - "value": "15 - 50 minutes" - }, - { - "name": "Peak", - "value": "50 - 100 minutes" - }, - { - "name": "After effects", - "value": "3 - 8 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 45 mg" - }, - { - "name": "Common", - "value": "45 - 100 mg" - }, - { - "name": "Strong", - "value": "100 - 175 mg" - }, - { - "name": "Heavy", - "value": "175 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1.5 - 3 hours" - }, - { - "name": "Onset", - "value": "1 - 3 minutes" - }, - { - "name": "Come up", - "value": "5 - 10 minutes" - }, - { - "name": "After effects", - "value": "1 - 4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/2-FEA", - "experiencesUrl": null, - "name": "2-FEA", - "aliases": [ - "2-fluoroethylamphetamine" - ], - "aliasesStr": "2-fluoroethylamphetamine", - "summary": "Stimulant closely related to 2-FMA. Presumably slightly less potent than the prior. Toxicology and the likes are pretty much completely unknown. Tread with caution.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted amphetamines" - ], - "psychoactive": [ - "Stimulants", - "Entactogens" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "15 mg" - }, - { - "name": "Light", - "value": "20 - 30 mg" - }, - { - "name": "Common", - "value": "30 - 40 mg" - }, - { - "name": "Strong", - "value": "40 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1 - 2.5 hours" - }, - { - "name": "Onset", - "value": "5 - 15 minutes" - }, - { - "name": "Come up", - "value": "5 - 10 minutes" - }, - { - "name": "Peak", - "value": "30 - 60 minutes" - }, - { - "name": "Offset", - "value": "30 - 60 minutes" - }, - { - "name": "After effects", - "value": "1 - 3 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/2-FMA", - "experiencesUrl": null, - "name": "2-FMA", - "aliases": [ - "2fma" - ], - "aliasesStr": "2fma", - "summary": "A long-acting stimulant often compared to lisdexamphetamine. Thought to lack some of amphetamine's neurotoxic metabolites. Very functional, and for this reason it is commonly used for studying.", - "reagents": null, - "classes": { - "chemical": [ - "Amphetamine", - "Substituted amphetamines" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "5 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 30 mg" - }, - { - "name": "Strong", - "value": "30 - 50 mg" - }, - { - "name": "Heavy", - "value": "50 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "7 - 9 hours" - }, - { - "name": "Onset", - "value": "30 - 60 minutes" - }, - { - "name": "Come up", - "value": "15 - 40 minutes" - }, - { - "name": "Peak", - "value": "2.5 - 4 hours" - }, - { - "name": "Offset", - "value": "2 - 3 hours" - }, - { - "name": "After effects", - "value": "4 - 12 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "5 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 30 mg" - }, - { - "name": "Strong", - "value": "30 - 50 mg" - }, - { - "name": "Heavy", - "value": "50 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - }, - { - "name": "Come up", - "value": "10 - 20 minutes" - }, - { - "name": "Peak", - "value": "1 - 3 hours" - }, - { - "name": "Offset", - "value": "1.5 - 3 hours" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/2-me-dmt", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2MeDMT.shtml", - "name": "2-Me-DMT", - "aliases": [], - "aliasesStr": "", - "summary": "Also known as 2,N,N-TMT, this drug was first synthesised by Alexander Shulgin. Described as a very mild psychedelic of similar subjective effects to other tryptamines. Reported as having an unusual and unpredictable dose curve, it is recommended to start low with this drug.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "30-50mg" - }, - { - "name": "Common", - "value": "50-75mg" - }, - { - "name": "Strong", - "value": "75-100mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "60-90 minutes" - }, - { - "name": "Duration", - "value": "3-8 hours" - }, - { - "name": "After effects", - "value": "1-5 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "15-40 minutes" - }, - { - "name": "Duration", - "value": "3-8 hours" - }, - { - "name": "After effects", - "value": "1-5 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/2-mec", - "experiencesUrl": null, - "name": "2-MEC", - "aliases": [], - "aliasesStr": "", - "summary": "Cathinone which some users report to feel like a weaker MDMA with a shorter onset.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50-100mg" - }, - { - "name": "Common", - "value": "100-200mg" - }, - { - "name": "Strong", - "value": "200-350mg+" - } - ], - "duration": [ - { - "name": "Duration", - "value": "3-5 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "25-50mg" - }, - { - "name": "Common", - "value": "50-100mg" - }, - { - "name": "Strong", - "value": "100-250mg+" - } - ], - "duration": [ - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/2M2B", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2Methyl2Butanol.shtml", - "name": "2M2B", - "aliases": [ - "2-methyl-2-butanol" - ], - "aliasesStr": "2-methyl-2-butanol", - "summary": "A tertiary alcohol that has sedative, hypnotic, and anxiolytic effects. It is also roughly 20x more potent than Ethanol by weight.", - "reagents": null, - "classes": { - "chemical": [ - "Alcohol" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "GABA", - "depressants" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.5 mL" - }, - { - "name": "Light", - "value": "1 - 5 mL" - }, - { - "name": "Common", - "value": "5 - 10 mL" - }, - { - "name": "Strong", - "value": "10 - 15 mL" - }, - { - "name": "Heavy", - "value": "15 mL +", - "note": "There have been unconsciousness and deaths reported at as low as 18 mL respective 29 mL." - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 14 hours" - }, - { - "name": "Onset", - "value": "10 - 50 minutes" - }, - { - "name": "Peak", - "value": "6 - 8 hours" - }, - { - "name": "Offset", - "value": "4 - 6 hours" - }, - { - "name": "After effects", - "value": "4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/2-methylamphetamine", - "experiencesUrl": null, - "name": "2-MA", - "aliases": [], - "aliasesStr": "", - "summary": "Also known as Ortetamine, this rarely seen amphetamine is approximately 1/10th as potent as dextroamphetamine. Little information exists regarding its safety or effects.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "10-30mg" - }, - { - "name": "Common", - "value": "30-50mg" - }, - { - "name": "Strong", - "value": "50-70mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "Insufflated minutes" - }, - { - "name": "Duration", - "value": "Insufflated hours" - }, - { - "name": "After effects", - "value": "1-10 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/2-mmc", - "experiencesUrl": null, - "name": "2-MMC", - "aliases": [], - "aliasesStr": "", - "summary": "A cathinone, yet the effects are noted more of the likes of 2-FA or amphetamine. Which apparently left people dissapointed.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "20-50mg" - }, - { - "name": "Common", - "value": "50-100mg" - }, - { - "name": "Strong", - "value": "100-135mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "3-5 hours" - }, - { - "name": "After effects", - "value": "2-8 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "5-15mg" - }, - { - "name": "Common", - "value": "15-40mg" - }, - { - "name": "Strong", - "value": "40-80mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "2-15 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "2-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/2-mppp", - "experiencesUrl": null, - "name": "2-MPPP", - "aliases": [ - "n-piperidinecathinone" - ], - "aliasesStr": "n-piperidinecathinone", - "summary": "A novel stimulant that is similar to methcathinone.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "25-50mg" - }, - { - "name": "Common", - "value": "50-100mg" - }, - { - "name": "Strong", - "value": "100-150mg" - }, - { - "name": "Heavy", - "value": "150mg+." - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-20 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "15-30mg" - }, - { - "name": "Common", - "value": "30-60mg" - }, - { - "name": "Strong", - "value": "60-110mg" - }, - { - "name": "Heavy", - "value": "110mg+" - } - ], - "duration": [ - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "Rectal", - "duration": [ - { - "name": "Onset", - "value": "10-15 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/2-nmc", - "experiencesUrl": null, - "name": "2-NMC", - "aliases": [], - "aliasesStr": "", - "summary": "Inactive.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/2-pa", - "experiencesUrl": null, - "name": "2-PA", - "aliases": [ - "2-phenylacetamide" - ], - "aliasesStr": "2-phenylacetamide", - "summary": "Amphetamine with the alpha-methyl replaced by ketone. Very few reports. Also no information on the safety of this compound. As always treat with caution.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "10-25mg" - }, - { - "name": "Common", - "value": "25-50mg" - }, - { - "name": "Strong", - "value": "50-100mg" - }, - { - "name": "Heavy", - "value": "100+mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "3-5 hours" - }, - { - "name": "After effects", - "value": "1-10 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/2-pta", - "experiencesUrl": null, - "name": "2-PTA", - "aliases": [ - "2-(p-tolyl)acetamide", - "4-methyl-2-pa" - ], - "aliasesStr": "2-(p-tolyl)acetamide,4-methyl-2-pa", - "summary": "4-Methylamphetamine with the alpha-methyl replaced by ketone. Very few reports. Also no information of the safety of this compound. As always treat with caution.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "10-20mg" - }, - { - "name": "Common", - "value": "20-40mg" - }, - { - "name": "Strong", - "value": "40-80mg" - }, - { - "name": "Heavy", - "value": "80+mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-25 minutes" - }, - { - "name": "Duration", - "value": "1-3 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/25B-NBOH", - "experiencesUrl": null, - "name": "25B-NBOH", - "aliases": [ - "25bnboh", - "2c-b-nboh", - "2cb-nboh", - "nboh-2cb" - ], - "aliasesStr": "25bnboh,2c-b-nboh,2cb-nboh,nboh-2cb", - "summary": "A phenethylamine psychedelic and stimulant derivative of 2C-B, this compound is related to and has similar effects to 25b-NBOMe. It is significantly more potent than 2C-B but less potent than 25B-NBOMe. Overdoses of NBOH compounds may cause dangerous vasoconstriction. May induce uncomfortable body load.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "potentially fatal at heavy dosages" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "1 week", - "zero": "2 weeks" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Sublingually", - "dosage": [ - { - "name": "Light", - "value": "200-400ug" - }, - { - "name": "Common", - "value": "400-800ug" - }, - { - "name": "Strong", - "value": "800ug-1mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-40 minutes" - }, - { - "name": "Duration", - "value": "4-10 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/25B-NBOMe", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_25BNBOMe.shtml", - "name": "25B-NBOMe", - "aliases": [ - "25b" - ], - "aliasesStr": "25b", - "summary": "Psychedelic Phenethylamine, active in the lower microgram range, that is not active orally.", - "reagents": "Marquis: Dark Green. | Mecke: Dark Green. | Mandelin: Red and Green. | Froehde: Yellow | Liebermann: Yellow > Black. | Ehrlich's Reagent: No colour change.", - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "potentially fatal at heavy dosages" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "1 week", - "zero": "2 weeks" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Sublingual", - "dosage": [ - { - "name": "Threshold", - "value": "50 \u00b5g" - }, - { - "name": "Light", - "value": "100 - 300 \u00b5g" - }, - { - "name": "Common", - "value": "300 - 500 \u00b5g" - }, - { - "name": "Strong", - "value": "500 - 700 \u00b5g" - }, - { - "name": "Heavy", - "value": null, - "note": "25B-NBOMe can be fatal at heavy doses." - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 12 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - }, - { - "name": "Come up", - "value": "30 - 90 minutes" - }, - { - "name": "Peak", - "value": "4 - 6 hours" - }, - { - "name": "Offset", - "value": "2 - 4 hours" - }, - { - "name": "After effects", - "value": "2 - 6 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "25 \u00b5g" - }, - { - "name": "Light", - "value": "50 - 200 \u00b5g" - }, - { - "name": "Common", - "value": "200 - 350 \u00b5g" - }, - { - "name": "Strong", - "value": "350 - 500 \u00b5g" - }, - { - "name": "Heavy", - "value": null, - "note": "25B-NBOMe can be fatal at heavy doses." - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 12 hours" - }, - { - "name": "Onset", - "value": "2 - 5 minutes" - }, - { - "name": "After effects", - "value": "2 - 6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/25C-NBOH", - "experiencesUrl": null, - "name": "25C-NBOH", - "aliases": [], - "aliasesStr": "", - "summary": "A phenethylamine psychedelic and stimulant derivative of 2C-C, this compound is related and has similar effects to 25c-NBOMe. It is significantly more potent than 2C-C but less potent than 25c-NBOMe. Overdoses of NBOH compounds may cause dangerous vasoconstriction. May induce uncomfortable body load.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "potentially fatal at heavy dosages" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "1 week", - "zero": "2 weeks" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Sublingual", - "dosage": [ - { - "name": "Threshold", - "value": "100 \u00b5g" - }, - { - "name": "Light", - "value": "250 - 500 \u00b5g" - }, - { - "name": "Common", - "value": "500 - 750 \u00b5g" - }, - { - "name": "Strong", - "value": "750 - 1000 \u00b5g" - }, - { - "name": "Heavy", - "value": null, - "note": "25C-NBOH may be fatal at heavy doses." - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 7 hours" - }, - { - "name": "Onset", - "value": "15 - 45 minutes" - }, - { - "name": "Come up", - "value": "30 - 90 minutes" - }, - { - "name": "After effects", - "value": "3 - 6 days" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/25C-NBOMe", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_25CNBOMe.shtml", - "name": "25C-NBOMe", - "aliases": [ - "25c", - "2c-c-nbome", - "2c-nbome", - "cimbi-82", - "nbome-2c-c" - ], - "aliasesStr": "25c,2c-c-nbome,2c-nbome,cimbi-82,nbome-2c-c", - "summary": "A relatively new and popular research chemical. A short acting psychedelic related to 2C-C with similar effects to LSD, though more visual with less of a 'head-trip.' Frequently mis-sold as LSD. Causes an uncomfortable body load and has caused several deaths even within regular dose ranges.", - "reagents": "Marquis: Slow Purple. | Mecke: Brown. | Mandelin: No colour change. | Froehde: Yellow. | Liebermann: Yellow > Black. | Ehrlich's Reagent: No colour change.", - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "fatal at heavy dosages" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "7 days", - "zero": "14 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Sublingual", - "dosage": [ - { - "name": "Threshold", - "value": "50 \u00b5g" - }, - { - "name": "Light", - "value": "100 - 300 \u00b5g" - }, - { - "name": "Common", - "value": "300 - 700 \u00b5g" - }, - { - "name": "Strong", - "value": "700 - 1000 \u00b5g" - }, - { - "name": "Heavy", - "value": null, - "note": "25C-NBOMe can be fatal at heavy doses." - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 10 hours" - }, - { - "name": "Onset", - "value": "0 - 15 minutes" - }, - { - "name": "Come up", - "value": "30 - 90 minutes" - }, - { - "name": "Peak", - "value": "4 - 6 hours" - }, - { - "name": "Offset", - "value": "1 - 4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/25D-NBOMe", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_25DNBOMe.shtml", - "name": "25D-NBOMe", - "aliases": [ - "25d", - "2c-d-nbome" - ], - "aliasesStr": "25d,2c-d-nbome", - "summary": "Uncommon analogue of 2C-D. Extremely potent psychedelic with stimulating qualities. Could cause dangerous vasoconstriction at high doses. May induce uncomfortable body load.", - "reagents": "Marquis: Orange > Red. | Mecke: Brown > Green. | Mandelin: Red and Green. | Liebermann: Yellow > Black. | Simon's: Red > Brown. | Ehrlich: No colour change.", - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": [ - "psychedelics" - ], - "roas": [ - { - "name": "Sublingual", - "dosage": [ - { - "name": "Threshold", - "value": "300 \u00b5g" - }, - { - "name": "Light", - "value": "300 - 800 \u00b5g" - }, - { - "name": "Common", - "value": "800 - 1000 \u00b5g" - }, - { - "name": "Strong", - "value": "1000 - 1200 \u00b5g" - }, - { - "name": "Heavy", - "value": null, - "note": "The NBOMe series can be fatal at heavy doses.[4][5]" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "> 6 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Heavy", - "value": null, - "note": "The NBOMe series can be fatal when insufflated.[4][5][6] It is strongly discouraged." - } - ], - "duration": null - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/25e-nbome", - "experiencesUrl": null, - "name": "25E-NBOMe", - "aliases": [ - "25e" - ], - "aliasesStr": "25e", - "summary": "A potent psychedelic phenethylamine and derivative of 2C-E, usually sold on blotters. May be mis-sold as LSD. Effects include vivid hallucinations, stimulation, heavy body load and vasoconstriction. At high doses vasoconstriction can endanger life, exercise caution.", - "reagents": "Marquis: Red > Yellow. | Mecke: Green. | Mandelin: Red. | Ehrlich: No colour change.", - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Sublingual", - "dosage": [ - { - "name": "Threshold", - "value": "50-100ug" - }, - { - "name": "Light", - "value": "50-200ug" - }, - { - "name": "Common", - "value": "200-400ug" - }, - { - "name": "Strong", - "value": "400-800ug." - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-60 minutes" - }, - { - "name": "Duration", - "value": "5-10 hours" - }, - { - "name": "After effects", - "value": "2-10 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/25g-nbome", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_25GNBOMe.shtml", - "name": "25G-NBOMe", - "aliases": [ - "25g", - "25gnbome" - ], - "aliasesStr": "25g,25gnbome", - "summary": "A rare psychedelic stimulant and bomamine. A derivative of 2C-G, but far more potent. Likely to have hallucinogenic, stimulant and vasoconstrictive properties which may be dangerous at high doses. A heavy body load is to be expected.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Buccal/Sublingual", - "dosage": [ - { - "name": "Threshold", - "value": "500ug" - }, - { - "name": "Light", - "value": "1000-1500ug" - }, - { - "name": "Common", - "value": "1500-2000ug" - }, - { - "name": "Strong", - "value": "2000ug+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-50 minutes" - }, - { - "name": "Duration", - "value": "5-7 hours" - }, - { - "name": "After effects", - "value": "1-2 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/25h-nbome", - "experiencesUrl": null, - "name": "25H-NBOMe", - "aliases": [ - "25-h-nbome", - "25h" - ], - "aliasesStr": "25-h-nbome,25h", - "summary": "A rare psychedelic stimulant and bomamine. A derivative of 2C-H, but many times more potent. Likely to have hallucinogenic, stimulant and vasoconstrictive properties which may be dangerous at high doses. A heavy body load is to be expected.", - "reagents": "Marquis: Light Brown > Brown. | Mecke: Yellow > Green/Brown. | Mandelin: Green/Brown > Orange. | Simon's: Orange > Black.", - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/25i-nbf", - "experiencesUrl": null, - "name": "25I-NBF", - "aliases": [], - "aliasesStr": "", - "summary": "Is a derivate of the psychedelic 2C-I. Was sold breifly in a few countries before being banned. Based purely on the pharmacological evidence it'll be between 6-8x less potent than it's parent compound 25I-NBOMe.", - "reagents": "Marquis: Dark Green. | Mecke: Orange > Black. | Mandelin: Orange > Black. | Froehde: Orange > Black. | Liebermann: Orange > Black. | Ehrlich: No colour change. | Gallic Acid: Orange > Black.", - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/25i-nbmd", - "experiencesUrl": null, - "name": "25I-NBMD", - "aliases": [], - "aliasesStr": "", - "summary": "A psychedelic phenethylamine that is related to the 25X-NBOMe series which in turn makes it related to the 2C-X series. Quite potent substance.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Sublingual", - "dosage": [ - { - "name": "Light", - "value": "800-1500ug" - }, - { - "name": "Common", - "value": "1500-2000ug" - }, - { - "name": "Strong", - "value": "2000-3000ug+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-40 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/25I-NBOH", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_25INBOH.shtml", - "name": "25I-NBOH", - "aliases": [ - "cimbi-27", - "nboh-2ci" - ], - "aliasesStr": "cimbi-27,nboh-2ci", - "summary": "A phenethylamine psychedelic and stimulant derivative of 2C-I, this compound is related and has similar effects to 25i-NBOMe. It is significantly more potent than 2C-I but less potent than 25i-NBOMe. Overdoses of NBOH compounds may cause dangerous vasoconstriction. May induce uncomfortable body load.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "potentially fatal at heavy dosages" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "1 week", - "zero": "2 weeks" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Sublingual", - "dosage": [ - { - "name": "Threshold", - "value": "50 \u00b5g" - }, - { - "name": "Light", - "value": "200 - 500 \u00b5g" - }, - { - "name": "Common", - "value": "500 - 900 \u00b5g" - }, - { - "name": "Strong", - "value": "900 - 1400 \u00b5g" - }, - { - "name": "Heavy", - "value": null, - "note": "25I-NBOH may be fatal at heavy doses." - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 8 hours" - }, - { - "name": "Onset", - "value": "15 - 60 minutes" - }, - { - "name": "Come up", - "value": "30 - 90 minutes" - }, - { - "name": "Peak", - "value": "2 - 3.5 hours" - }, - { - "name": "Offset", - "value": "1.5 - 2.5 hours" - }, - { - "name": "After effects", - "value": "3 - 12 days" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "166ug-416ug" - }, - { - "name": "Light", - "value": "416ug-766ug" - }, - { - "name": "Common", - "value": "800-1400ug" - }, - { - "name": "Strong", - "value": "1400ug-2000ug+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-40 minutes" - }, - { - "name": "Duration", - "value": "5-10 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/25I-NBOMe", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_25INBOMe.shtml", - "name": "25I-NBOMe", - "aliases": [ - "2-c-i-nbome", - "25-i", - "25i", - "cimbi-5" - ], - "aliasesStr": "2-c-i-nbome,25-i,25i,cimbi-5", - "summary": "A relatively new and popular research chemical with psychedelic properties. Users report an uncomfortable body load with very strong visuals, though with less of a mental aspect than most psychedelics. Commonly mis-sold as LSD, since it is much cheaper to produce. Is considered quite unsafe, and has caused several deaths at 'regular' doses.", - "reagents": "Marquis: Orange > Black. | Mecke: Brown > Black. | Mandelin: Brown > Black. | Froehde: Yellow | Ehrlich: No colour change.", - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "potentially fatal at heavy dosages" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "1 week", - "zero": "2 weeks" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Sublingual", - "dosage": [ - { - "name": "Threshold", - "value": "50 \u00b5g" - }, - { - "name": "Light", - "value": "200 - 500 \u00b5g" - }, - { - "name": "Common", - "value": "500 - 700 \u00b5g" - }, - { - "name": "Strong", - "value": "700 - 1000 \u00b5g" - }, - { - "name": "Heavy", - "value": null, - "note": "25I-NBOMe can be fatal at heavy doses." - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 10 hours" - }, - { - "name": "Onset", - "value": "15 - 120 minutes" - }, - { - "name": "Come up", - "value": "30 - 120 minutes" - }, - { - "name": "Peak", - "value": "2 - 4 hours" - }, - { - "name": "Offset", - "value": "1 - 4 hours" - }, - { - "name": "After effects", - "value": "3 - 6 days" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "50 \u00b5g" - }, - { - "name": "Light", - "value": "200 - 500 \u00b5g" - }, - { - "name": "Common", - "value": "500 - 700 \u00b5g" - }, - { - "name": "Strong", - "value": "700+ \u00b5g" - }, - { - "name": "Heavy", - "value": null, - "note": "25I-NBOMe can be fatal at heavy doses." - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "5 - 10 minutes" - }, - { - "name": "Come up", - "value": "10 - 30 minutes" - }, - { - "name": "Peak", - "value": "60 - 120 minutes" - }, - { - "name": "Offset", - "value": "120 - 180 minutes" - }, - { - "name": "After effects", - "value": "1 - 7 days" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/25ip-nbome", - "experiencesUrl": null, - "name": "25iP-NBOMe", - "aliases": [ - "25ip" - ], - "aliasesStr": "25ip", - "summary": "Almost unheard-of bomamine analogue of 2C-iP. Extremely potent psychedelic with stimulating qualities. May cause potentially dangerous vasoconstriction at high doses. May induce uncomfortable body load.", - "reagents": "Marquis: Red. | Mecke: Green. | Mandelin: Red and Green. | Froehde: Green. | Liebermann: Yellow > Brown. | Ehrlich: No colour change.", - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Sublingual", - "dosage": [ - { - "name": "Threshold", - "value": "250ug" - }, - { - "name": "Light", - "value": "300-750ug" - }, - { - "name": "Common", - "value": "750-1000ug" - }, - { - "name": "Strong", - "value": "1000-1500ug" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-60 minutes" - }, - { - "name": "Duration", - "value": "5-7 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/25N-NBOMe", - "experiencesUrl": null, - "name": "25N-NBOMe", - "aliases": [ - "2-c-n-nbome", - "25n" - ], - "aliasesStr": "2-c-n-nbome,25n", - "summary": "A rare, highly potent and yellow psychedelic phenethylamine and derivative of 2C-N. Effects are similar to other NBOMe compounds, with hallucinations, intense body load, stimulation and vasoconstriction. At high doses vasoconstriction can be dangerous, exercise caution.", - "reagents": "Marquis: Red > Brown. | Mecke: Blue > Black. | Mandelin: Blue > Black. | Froehde: Brown. | Liebermann: Brown. | Simon's: Red > Brown. | Ehrlich: No colour change.", - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "potentially fatal at heavy dosages" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Sublingual", - "dosage": [ - { - "name": "Threshold", - "value": "< 100 \u00b5g" - }, - { - "name": "Light", - "value": "100 - 300 \u00b5g" - }, - { - "name": "Common", - "value": "300 - 800 \u00b5g" - }, - { - "name": "Strong", - "value": "800 - 1300 \u03bcg" - }, - { - "name": "Heavy", - "value": null, - "note": "The NBOMe series can be fatal at heavy doses.[4][5]" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 10 hours" - }, - { - "name": "Onset", - "value": "45 - 75 minutes" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "2 - 3 hours" - }, - { - "name": "After effects", - "value": "5 - 10 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Heavy", - "value": null, - "note": "The NBOMe series can be fatal when insufflated.[4][5][6] It is strongly discouraged." - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours" - } - ] - }, - { - "name": "Sublingual/Buccal", - "dosage": [ - { - "name": "Light", - "value": "100-300ug" - }, - { - "name": "Common", - "value": "300-800ug" - }, - { - "name": "Strong", - "value": "800-1300ug+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "45-75 minutes" - }, - { - "name": "Duration", - "value": "5-10 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/25p-nbome", - "experiencesUrl": null, - "name": "25P-NBOMe", - "aliases": [], - "aliasesStr": "", - "summary": "A rare potent psychedelic drug with similar effects and risks to others in the NBOMe class. Yet no trip reports... when the substance was first sold in mid-late 2012, and resurfaced in early 2015.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "100-250ug" - }, - { - "name": "Light", - "value": "250-450ug" - }, - { - "name": "Common", - "value": "450-700ug" - }, - { - "name": "Strong", - "value": "700-1500ug" - } - ], - "duration": [ - { - "name": "Onset", - "value": "25-40 minutes" - }, - { - "name": "Duration", - "value": "7-14 hours" - }, - { - "name": "After effects", - "value": "1-16 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/25t-2-nbome", - "experiencesUrl": null, - "name": "25T-2-NBOMe", - "aliases": [ - "25t2-nbome" - ], - "aliasesStr": "25t2-nbome", - "summary": "A potent serotonin receptor agonist at the 5-HT2a receptor that is of the NBOMe drug class. It is a hallucinogenic and psychedelic with limited recorded human use.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Sublingual", - "dosage": [ - { - "name": "Light", - "value": "100-300ug" - }, - { - "name": "Common", - "value": "300-600ug" - }, - { - "name": "Strong", - "value": "600-1000ug." - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-45 minutes" - }, - { - "name": "Duration", - "value": "6-10 hours" - }, - { - "name": "After effects", - "value": "2-10 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/25t-4-nbome", - "experiencesUrl": null, - "name": "25T-4-NBOMe", - "aliases": [ - "25t4-nbome" - ], - "aliasesStr": "25t4-nbome", - "summary": "A psychedelic RC of the NBOMe class of drugs that is expected to cause hallucinations. Limited human use has been recorded on this drug and caution should be used with dosing.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Sublingual", - "dosage": [ - { - "name": "Light", - "value": "150-300ug" - }, - { - "name": "Common", - "value": "300-750ug" - }, - { - "name": "Strong", - "value": "750-1200ug." - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-45 minutes" - }, - { - "name": "Duration", - "value": "5-9 hours" - }, - { - "name": "After effects", - "value": "2-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/2C-B", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CB.shtml", - "name": "2C-B", - "aliases": [ - "2-cb", - "2cb", - "bees", - "nexus", - "tusi" - ], - "aliasesStr": "2-cb,2cb,bees,nexus,tusi", - "summary": "A popular psychedelic in the phenethylamine family. Provides empathic experiences at lower doses and strong visual and psychedelic experiences at higher doses. Commonly used as a party drug as it is more clear-headed than most psychedelics. 2C-B has been in use since the early 1990s", - "reagents": "Marquis: Yellow > Green. | Mecke: Yellow > Green/Brown. | Mandelin: Green. | Froehde: Yellow > Green. | Liebermann: Yellow > Black. | Simon's No colour change or Purple. | Ehrlich: No colour change.", - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "non-addictive with a low potential for abuse", - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 25 mg" - }, - { - "name": "Strong", - "value": "25 - 45 mg" - }, - { - "name": "Heavy", - "value": "45 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 8 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - }, - { - "name": "Come up", - "value": "40 - 60 minutes" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "1.5 - 3 hours" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "< 1 mg" - }, - { - "name": "Light", - "value": "5 - 8 mg" - }, - { - "name": "Common", - "value": "8 - 12 mg" - }, - { - "name": "Strong", - "value": "12 - 23 mg" - }, - { - "name": "Heavy", - "value": "23 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 7 hours" - }, - { - "name": "Onset", - "value": "0 - 20 minutes" - } - ] - }, - { - "name": "Rectal", - "dosage": [ - { - "name": "Threshold", - "value": "< 1 mg" - }, - { - "name": "Light", - "value": "5 - 8 mg" - }, - { - "name": "Common", - "value": "8 - 12 mg" - }, - { - "name": "Strong", - "value": "12 - 23 mg" - }, - { - "name": "Heavy", - "value": "23 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 7 hours" - }, - { - "name": "Onset", - "value": "0 - 20 minutes" - } - ] - }, - { - "name": "Insufflated/Plugged", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-20mg" - }, - { - "name": "Strong", - "value": "20-30mg" - }, - { - "name": "Heavy", - "value": "30mg+" - } - ], - "duration": [ - { - "name": "After effects", - "value": "2-4 hours" - } - ] - }, - { - "name": "Plugged", - "duration": [ - { - "name": "Onset", - "value": "5-20 minutes" - }, - { - "name": "Duration", - "value": "3-5 hours" - }, - { - "name": "After effects", - "value": "2-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/2c-b-an", - "experiencesUrl": null, - "name": "2C-B-AN", - "aliases": [], - "aliasesStr": "", - "summary": "2C-B-AN is a novel prodrug for 2C-B.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "30-45mg" - }, - { - "name": "Common", - "value": "45-70mg" - }, - { - "name": "Strong", - "value": "70-100mg" - }, - { - "name": "Heavy", - "value": "100+mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "40-75 minutes" - }, - { - "name": "Duration", - "value": "5-9 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/2C-B-FLY", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CBFly.shtml", - "name": "2C-B-FLY", - "aliases": [ - "2cb-fly", - "2cbfly" - ], - "aliasesStr": "2cb-fly,2cbfly", - "summary": "Psychedelic phenethylamine that is the dihydrodifuran analog of 2C-B.", - "reagents": "Marquis: Yellow > Brown Green. | Mecke: Yellow > Brown Green. | Mandelin: Brown.", - "classes": { - "chemical": [ - "Substituted phenethylamines", - "Substituted benzofurans" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "2 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 18 mg" - }, - { - "name": "Strong", - "value": "18 - 25 mg" - }, - { - "name": "Heavy", - "value": "25 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "7 - 12 hours" - }, - { - "name": "Onset", - "value": "30 - 60 minutes" - }, - { - "name": "Come up", - "value": "1 - 2 hours" - }, - { - "name": "Peak", - "value": "3 - 5 hours" - }, - { - "name": "Offset", - "value": "2 - 3 hours" - }, - { - "name": "After effects", - "value": "6 - 24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/2c-b-fly-nbome", - "experiencesUrl": null, - "name": "2C-B-FLY-NBOMe", - "aliases": [ - "2cbflynbome" - ], - "aliasesStr": "2cbflynbome", - "summary": null, - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "100-200ug" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/2C-C", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CC.shtml", - "name": "2C-C", - "aliases": [ - "2cc" - ], - "aliasesStr": "2cc", - "summary": "A short-acting psychedelic research chemical of the 2c-x family. Often described as being less stimulating than the other 2c-x, and is a relatively unique psychedelic in this respect.", - "reagents": "Marquis: Yellow > Green Brown. | Mecke: Yellow Green > Brown. | Mandelin: Orange > Yellow. | Froehde: Yellow > Green. | Liebermann: Yellow > Black > Clear. | Simon's: Pink > Brown. | Ehrlich: No colour change.", - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "15 - 30 mg" - }, - { - "name": "Common", - "value": "30 - 50 mg" - }, - { - "name": "Strong", - "value": "50 - 90 mg" - }, - { - "name": "Heavy", - "value": "90 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours" - }, - { - "name": "Onset", - "value": "20 - 45 minutes" - }, - { - "name": "Come up", - "value": "45 - 90 minutes" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "1 - 3 hours" - }, - { - "name": "After effects", - "value": "4 - 12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/2C-D", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CD.shtml", - "name": "2C-D", - "aliases": [ - "2c-m", - "2cd", - "2cm", - "le-25" - ], - "aliasesStr": "2c-m,2cd,2cm,le-25", - "summary": "A fairly generic psychedelic famed for being usable as \"psychedelic tofu\". Little character of its own but pleasant in combinations.", - "reagents": "Marquis: Yellow > Brown. | Mecke: Green > Brown. | Mandelin: Green/Yellow. | Simon's Brown > Red. | Ehrlich: No colour change.", - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "3 mg" - }, - { - "name": "Light", - "value": "10 - 25 mg" - }, - { - "name": "Common", - "value": "25 - 50 mg" - }, - { - "name": "Strong", - "value": "50 - 100 mg" - }, - { - "name": "Heavy", - "value": "100 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 5 hours" - }, - { - "name": "Onset", - "value": "15 - 45 minutes" - }, - { - "name": "Come up", - "value": "20 - 40 minutes" - }, - { - "name": "Peak", - "value": "1.5 - 2.5 hours" - }, - { - "name": "Offset", - "value": "0.5 - 1.5 hours" - }, - { - "name": "After effects", - "value": "1 - 4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/2C-E", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CE.shtml", - "name": "2C-E", - "aliases": [ - "2ce", - "aquarust", - "eternity" - ], - "aliasesStr": "2ce,aquarust,eternity", - "summary": "An intense psychedelic drug with very strong visuals, sometimes criticised for its relatively uncomfortable body load. Otherwise, effects are comparable to other 2c-x drugs.", - "reagents": "Marquis: Yellow-Pale Brown. | Mecke: Yellow > Brown. | Mandelin: Yellow-Green. | Froehde: Yellow. | Liebermann: Yellow > Black. | Simon's: No colour change. | Ehrlich: No colour change.", - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": null, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "2 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 15 mg" - }, - { - "name": "Strong", - "value": "15 - 30 mg" - }, - { - "name": "Heavy", - "value": "30 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 10 hours" - }, - { - "name": "Onset", - "value": "15 - 45 minutes" - }, - { - "name": "Come up", - "value": "1 - 2 hours" - }, - { - "name": "Peak", - "value": "3 - 5 hours" - }, - { - "name": "Offset", - "value": "2 - 3 hours" - }, - { - "name": "After effects", - "value": "6 - 24 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "1 - 4 mg" - }, - { - "name": "Common", - "value": "4 - 7 mg" - }, - { - "name": "Strong", - "value": "7 - 14 mg" - }, - { - "name": "Heavy", - "value": "14 mg +" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1 - 2 minutes" - }, - { - "name": "Peak", - "value": "2 - 4 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/2c-g", - "experiencesUrl": null, - "name": "2C-G", - "aliases": [ - "2cg" - ], - "aliasesStr": "2cg", - "summary": "Extremely rare drug of the 2C-X family. An extremely long lasting substance. Is nearly as potent as its amphetamine counter-part, Ganesha. Yet is said to have very little visual activity.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "20-25mg" - }, - { - "name": "Common", - "value": "25-30mg" - }, - { - "name": "Strong", - "value": "30mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-120 minutes" - }, - { - "name": "Duration", - "value": "15-35 hours" - }, - { - "name": "After effects", - "value": "1-72 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/2C-H", - "experiencesUrl": null, - "name": "2C-H", - "aliases": [ - "dmpea" - ], - "aliasesStr": "dmpea", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Stimulants", - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3-5 days", - "zero": "7-10 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "Unknown" - } - ], - "duration": [ - { - "name": "Total", - "value": "Unknowm" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/2C-I", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CI.shtml", - "name": "2C-I", - "aliases": [ - "2ci" - ], - "aliasesStr": "2ci", - "summary": "A psychedelic similar to the more well-known 2C-B. Users frequently report very vivid and bright open-eye visuals and more mild closed-eye visuals compared to 2C-B and other drugs in the 2C family. Can also be more stimulating than 2C-B along with having a slight body load for some users. Less safe at high doses compared to 2C-B", - "reagents": "Marquis: Yellow > Green/Blue. | Mecke: Brown > Black. | Mandelin: (Pale) Brown > Black. | Simon's: Red > Orange. | Ehrlich: Brown.", - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3-5 days", - "zero": "7-10 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "2 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 20 mg" - }, - { - "name": "Strong", - "value": "20 - 30 mg" - }, - { - "name": "Heavy", - "value": "30 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 10 hours" - }, - { - "name": "Onset", - "value": "15 - 45 minutes" - }, - { - "name": "Come up", - "value": "45 - 90 minutes" - }, - { - "name": "Peak", - "value": "3 - 5 hours" - }, - { - "name": "Offset", - "value": "2 - 3 hours" - }, - { - "name": "After effects", - "value": "6 - 24 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "0.5-2mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "45-120 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "4-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/2c-ip", - "experiencesUrl": null, - "name": "2C-IP", - "aliases": [], - "aliasesStr": "", - "summary": "Isopropyl analog (branched analog) of 2C-P with a slightly shorter duration and lower potency.", - "reagents": "Marquis: Orange > Red. | Mecke: Yellow > Brown. | Mandelin: Green. | Ehrlich: No colour change.", - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "none", - "dosage": [ - { - "name": "Threshold", - "value": "5mg" - }, - { - "name": "Light", - "value": "5-15mg" - }, - { - "name": "Common", - "value": "15-30mg" - }, - { - "name": "Heavy", - "value": "30-45mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "45-90 minutes" - }, - { - "name": "Duration", - "value": "12-16 hours" - }, - { - "name": "After effects", - "value": "4-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/2c-n", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CN.shtml", - "name": "2C-N", - "aliases": [ - "2cn" - ], - "aliasesStr": "2cn", - "summary": "A relatively uncommon and short-acting psychedelic phenethylamine of the 2C-x family. It behaves much like other 2C-x drugs, but is unique in that it is a yellowish golden-coloured salt. Described by some, namely Shulgin, as being quite underwhelming.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "100mg" - }, - { - "name": "Common", - "value": "100-125mg" - }, - { - "name": "Strong", - "value": "125-150mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "2-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/2C-P", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CP.shtml", - "name": "2C-P", - "aliases": [ - "2cp" - ], - "aliasesStr": "2cp", - "summary": "A synthetic phenylethlyamine that is sometimes compared in effects to 2C-E, yet with a much longer duration. With a much more pronouced bodyload. Is one of the most potent of the 2C-X series.", - "reagents": "Marquis: Yellow. | Mecke: Green > Brown. | Mandelin: Green. | Froehde: Green. | Liebermann: Green. | Ehrlich: No colour change.", - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "low potential for abuse and dependence", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "2 - 6 mg" - }, - { - "name": "Common", - "value": "6 - 10 mg" - }, - { - "name": "Strong", - "value": "10 - 16 mg" - }, - { - "name": "Heavy", - "value": "16 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "10 - 20 hours" - }, - { - "name": "Onset", - "value": "1 - 3 hours" - }, - { - "name": "Come up", - "value": "2 - 4 hours" - }, - { - "name": "Peak", - "value": "4 - 8 hours" - }, - { - "name": "Offset", - "value": "3 - 6 hours" - }, - { - "name": "After effects", - "value": "8 - 48 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "1-3mg" - }, - { - "name": "Common", - "value": "3-5mg" - }, - { - "name": "Strong", - "value": "5-10mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "10-16 hours" - }, - { - "name": "After effects", - "value": "6-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/2C-T", - "experiencesUrl": null, - "name": "2C-T", - "aliases": [ - "2ct", - "tesseract" - ], - "aliasesStr": "2ct,tesseract", - "summary": "A very rare psychedelic phenylethylamine, that is quite lovely.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "no negative health effects attributed to trying this drug" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "20 mg" - }, - { - "name": "Light", - "value": "40 - 60 mg" - }, - { - "name": "Common", - "value": "60 - 100 mg" - }, - { - "name": "Strong", - "value": "100 - 120 mg" - }, - { - "name": "Heavy", - "value": "125 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 6 hours" - }, - { - "name": "Onset", - "value": "30 - 45 minutes" - }, - { - "name": "Peak", - "value": "30 - 115 minutes" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "1 - 2 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/2C-T-2", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CT2.shtml", - "name": "2C-T-2", - "aliases": [ - "2ct2", - "rosy" - ], - "aliasesStr": "2ct2,rosy", - "summary": "An unusual psychedelic with similar effects to 2C-B and a slightly longer duration, but maligned because of some deaths in the 2000s. Also similar to 2c-t-7, but with a shorter duration. Potentially unsafe with stimulants and empathogens.", - "reagents": "Marquis: Fizzes Pale Orange. | Mecke: Orange > Purple. | Mandelin: Purple. | Froehde: Orange > Purple | Liebermann: Red or Purple. | Ehrlich: No colour change.", - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "no negative health effects attributed to trying this drug" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "3 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 20 mg" - }, - { - "name": "Strong", - "value": "20 - 30 mg" - }, - { - "name": "Heavy", - "value": "25 - 30 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 10 hours" - }, - { - "name": "Onset", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "2.5 - 5 hours" - }, - { - "name": "Offset", - "value": "2 - 4 hours" - }, - { - "name": "After effects", - "value": "2 - 6 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 20 mg" - }, - { - "name": "Strong", - "value": "20 - 25 mg" - }, - { - "name": "Heavy", - "value": "25+ mg" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 7 hours" - }, - { - "name": "Onset", - "value": "5 - 15 minutes" - }, - { - "name": "Peak", - "value": "2 - 4 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/2C-T-21", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CT21.shtml", - "name": "2C-T-21", - "aliases": [ - "aurora" - ], - "aliasesStr": "aurora", - "summary": "A rare psychedelic phenethylamine.", - "reagents": "Marquis: Fizzes Light Orange. | Mecke: Dark Purple. | Simon's: Greenish Blue.", - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": null, - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 12 mg" - }, - { - "name": "Strong", - "value": "12 - 15 mg" - }, - { - "name": "Heavy", - "value": "15 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "10 - 12 hours" - }, - { - "name": "Onset", - "value": "90 - 120 minutes" - }, - { - "name": "Peak", - "value": "3 - 4 hours" - }, - { - "name": "Offset", - "value": "2 - 3 hours" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/2c-t-4", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CT4.shtml", - "name": "2C-T-4", - "aliases": [ - "2-ct4", - "2c-t4", - "2ct-4", - "2ct4" - ], - "aliasesStr": "2-ct4,2c-t4,2ct-4,2ct4", - "summary": "A psychedelic phenethylamine that has a longer onset and duration compared to the more common 2C-T-x (2 and 7).", - "reagents": "Marquis: Pale Orange. | Mandelin: Orange (Or Purple). | Liebermann: Purple. | Ehrlich: Purple.", - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5-6mg" - }, - { - "name": "Light", - "value": "6-10mg" - }, - { - "name": "Common", - "value": "10-15mg" - }, - { - "name": "Strong", - "value": "15-20mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-120 minutes" - }, - { - "name": "Duration", - "value": "10-18 hours" - }, - { - "name": "After effects", - "value": "4-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/2C-T-7", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_2CT7.shtml", - "name": "2C-T-7", - "aliases": [ - "2ct7", - "7th heaven", - "beautiful", - "blue mystic" - ], - "aliasesStr": "2ct7,7th heaven,beautiful,blue mystic", - "summary": "A relatively uncommon psychedelic phenethylamine and possible MAOI. Long lasting, an possesses an unpredictable dosage curve. Questionable safety in combination with most things.", - "reagents": "Marquis: Fizzes Pale Orange. | Mecke: Red > Purple. | Mandelin: Red > Purple. | Froehde: Violet Orange | Liebermann: Deep Purple. | Simon's Red > Brown. | Ehrlich: No colour change.", - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": null, - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "3 mg" - }, - { - "name": "Light", - "value": "10 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 25 mg" - }, - { - "name": "Strong", - "value": "25 - 40 mg" - }, - { - "name": "Heavy", - "value": "40 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 10 hours" - }, - { - "name": "Onset", - "value": "60 - 90 minutes" - }, - { - "name": "Come up", - "value": "10 - 30 minutes" - }, - { - "name": "Peak", - "value": "3 - 5 hours" - }, - { - "name": "Offset", - "value": "1 - 3 hours" - }, - { - "name": "After effects", - "value": "2 - 8 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "2 - 5 mg" - }, - { - "name": "Common", - "value": "5 - 10 mg" - }, - { - "name": "Strong", - "value": "10 - 15 mg" - }, - { - "name": "Heavy", - "value": "15 - 25 mg", - "note": "2C-T-7 has been fatal when insufflated at heavy doses of 30mg or higher." - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 7 hours" - }, - { - "name": "Onset", - "value": "5 - 15 minutes" - }, - { - "name": "Come up", - "value": "20 - 60 minutes" - }, - { - "name": "Peak", - "value": "2 - 4 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "1 - 2 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/3,4-CTMP", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_34Dichloromethylphenidate.shtml", - "name": "3,4-CTMP", - "aliases": [ - "3,4-dichloromethylphenidate", - "34ctmp" - ], - "aliasesStr": "3,4-dichloromethylphenidate,34ctmp", - "summary": "A strong stimulant, NDRI and analogue of methylphenidate. Has increased in popularity in recent years. Said to be seven times more potent than methylphenidate but with a slower onset, however discrimination studies have found it to be more addictive than cocaine.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted phenidates" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "< 2 mg" - }, - { - "name": "Light", - "value": "2 - 4 mg" - }, - { - "name": "Common", - "value": "4 - 6 mg" - }, - { - "name": "Strong", - "value": "6 - 8 mg" - }, - { - "name": "Heavy", - "value": "8 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 18 hours" - }, - { - "name": "Onset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "2 - 24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/3,6-dmpm", - "experiencesUrl": null, - "name": "3,6-DMPM", - "aliases": [], - "aliasesStr": "", - "summary": "Stimulant that is related to Phenmetrazine. Nearly no information on dose or effects.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/3-cmc", - "experiencesUrl": null, - "name": "3-CMC", - "aliases": [ - "3cmc" - ], - "aliasesStr": "3cmc", - "summary": "A rarely seen halogenated cathinone drug. Likely to be a stimulant, possibly an entactogen. (Note: The amphetamine analogue of this drug, 4-CA, is a highly dangerous neurotoxin, no data about the safety of this one, but should likely be avoided)", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "30-60mg" - }, - { - "name": "Common", - "value": "60-100mg" - }, - { - "name": "Strong", - "value": "100-180mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-90 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "4-12 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "20-40mg" - }, - { - "name": "Common", - "value": "40-80mg" - }, - { - "name": "Strong", - "value": "80-100mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "1-2 hours" - }, - { - "name": "After effects", - "value": "3-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/3-FA", - "experiencesUrl": null, - "name": "3-FA", - "aliases": [ - "3fa", - "pal-353" - ], - "aliasesStr": "3fa,pal-353", - "summary": "A stimulant that is close to equipotent with methamphetamine and acts as a monoamine releasing agent , but has more selectivity for dopamine/noradrenaline over serotonin.", - "reagents": null, - "classes": { - "chemical": [ - "Amphetamine", - "Substituted amphetamines" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 10 days" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "10 mg" - }, - { - "name": "Light", - "value": "20 - 30 mg" - }, - { - "name": "Common", - "value": "30 - 50 mg" - }, - { - "name": "Strong", - "value": "50 - 70 mg" - }, - { - "name": "Heavy", - "value": "70 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "1 - 1.5 hours" - }, - { - "name": "After effects", - "value": "2 - 6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/3-FEA", - "experiencesUrl": null, - "name": "3-FEA", - "aliases": [], - "aliasesStr": "", - "summary": "A novel fluorinated amphetamine with serotonergic properties. Effects are similar to 4-FA, in that it provides slight dopamine and norepinephrine release or reuptake inhibition, as well as serotonin release and reuptake inhibition. Effects on the serotonin side are more pronounced than dopamine and norepinephrine, the latter two being almost negligibly.", - "reagents": null, - "classes": { - "chemical": [ - "Amphetamine", - "Substituted amphetamines" - ], - "psychoactive": [ - "Stimulants", - "Entactogens" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "2 - 3 days", - "zero": "3-7 days" - }, - "crossTolerances": [ - "dopamine", - "serotonin|serotonergic", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "15 mg" - }, - { - "name": "Light", - "value": "20 - 35 mg" - }, - { - "name": "Common", - "value": "35 - 70 mg" - }, - { - "name": "Strong", - "value": "70 - 90 mg" - }, - { - "name": "Heavy", - "value": "90 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "1.5 - 2.5 hours" - }, - { - "name": "Offset", - "value": "2 - 3 hours" - }, - { - "name": "After effects", - "value": "6 - 12 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "15 mg" - }, - { - "name": "Light", - "value": "20 - 35 mg" - }, - { - "name": "Common", - "value": "35 - 60 mg" - }, - { - "name": "Strong", - "value": "50 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1 - 2 hours" - }, - { - "name": "Onset", - "value": "5 - 15 minutes" - }, - { - "name": "Come up", - "value": "5 - 10 minutes" - }, - { - "name": "Peak", - "value": "30 - 60 minutes" - }, - { - "name": "Offset", - "value": "30 - 60 minutes" - }, - { - "name": "After effects", - "value": "1 - 3 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/3-FMA", - "experiencesUrl": null, - "name": "3-FMA", - "aliases": [ - "3fma" - ], - "aliasesStr": "3fma", - "summary": "Stimulant drug in the amphetamine family", - "reagents": null, - "classes": { - "chemical": [ - "Amphetamine", - "Substituted amphetamines" - ], - "psychoactive": [ - "Stimulants", - "Entactogens" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 10 days" - }, - "crossTolerances": [ - "dopamine", - "serotonin|serotonergic", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 35 mg" - }, - { - "name": "Strong", - "value": "35 - 50 mg" - }, - { - "name": "Heavy", - "value": "50 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 7 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "2 - 4 hours" - }, - { - "name": "Offset", - "value": "1 - 3 hours" - }, - { - "name": "After effects", - "value": "6 - 12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/3-fmc", - "experiencesUrl": null, - "name": "3-FMC", - "aliases": [], - "aliasesStr": "", - "summary": "A stimulant drug related to mephedrone. A member of the cathinone class, it is also an amphetamine. Effects similar to other drugs of its class, may possess high addiction potential. May be a monoamine releaser, reuptake inhibitor or both.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Light:", - "dosage": [ - { - "name": "Light", - "value": "25-50mg" - }, - { - "name": "Common", - "value": "50-100mg" - }, - { - "name": "Strong", - "value": "100-150mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "Rapid." - }, - { - "name": "Duration", - "value": "2-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/3-FPM", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_3FPhenmetrazine.shtml", - "name": "3-FPM", - "aliases": [ - "3-fph", - "3f-p", - "3f-phenmetrazine", - "3fp", - "3fpm", - "pal-593" - ], - "aliasesStr": "3-fph,3f-p,3f-phenmetrazine,3fp,3fpm,pal-593", - "summary": "A functional stimulant related to phenmetrazine. Effects similar to amphetamine, but longer and more focused. Observed as being relatively benign in low doses, but seems to cause worrying health effects for heavy users. Pain from insufflation is eye-wateringly intense, but short.", - "reagents": null, - "classes": { - "chemical": [ - "Phenylmorpholine", - "Substituted amphetamines" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "10 mg" - }, - { - "name": "Light", - "value": "10 - 30 mg" - }, - { - "name": "Common", - "value": "30 - 60 mg" - }, - { - "name": "Strong", - "value": "60 - 90 mg" - }, - { - "name": "Heavy", - "value": "90 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - }, - { - "name": "After effects", - "value": "30 - 90 minutes" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 35 mg" - }, - { - "name": "Strong", - "value": "35 - 50 mg" - }, - { - "name": "Heavy", - "value": "50 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 6 hours" - }, - { - "name": "Onset", - "value": "5 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/3-HO-PCE", - "experiencesUrl": null, - "name": "3-HO-PCE", - "aliases": [ - "3hopce", - "hydroxyeticyclidine" - ], - "aliasesStr": "3hopce,hydroxyeticyclidine", - "summary": "A rare and very potent PCP analogue, eight times more potent than PCP as NMDA receptor antagonist and also a \u03bc-opioid receptor agonist. Similar in structure to methoxetamine.", - "reagents": null, - "classes": { - "chemical": [ - "Arylcyclohexylamines" - ], - "psychoactive": [ - "Dissociatives" - ] - }, - "toxicity": [ - "toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a moderate potential for adverse side effects such as psychosis", - "tolerance": { - "full": "with prolonged and repeated use", - "half": "4 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dissociative" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 15 mg" - }, - { - "name": "Strong", - "value": "15 - 25 mg" - }, - { - "name": "Heavy", - "value": "25 mg +", - "note": "Redosing may result in dangerous cumulative effects." - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/3-HO-PCP", - "experiencesUrl": null, - "name": "3-HO-PCP", - "aliases": [ - "3hopcp", - "hydroxyphencyclidine" - ], - "aliasesStr": "3hopcp,hydroxyphencyclidine", - "summary": "An arylcyclohexamine dissociative analogue of PCP, this drug is relatively uncommon, and little information is available. It is reported to not only have dissociative activity but also be an opioid. Some trip reports suggest very negative side-effects including intense muscle tension.", - "reagents": null, - "classes": { - "chemical": [ - "Arylcyclohexylamines" - ], - "psychoactive": [ - "Dissociatives" - ] - }, - "toxicity": [ - "toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for adverse side effects such as psychosis", - "tolerance": { - "full": "with prolonged and repeated use", - "half": "4 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dissociative" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "2 - 4 mg" - }, - { - "name": "Common", - "value": "4 - 6 mg" - }, - { - "name": "Strong", - "value": "6 - 8 mg" - }, - { - "name": "Heavy", - "value": "8 mg +", - "note": "Redosing may result in dangerous cumulative effects." - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Come up", - "value": "60 - 90 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/3-mec", - "experiencesUrl": null, - "name": "3-MEC", - "aliases": [], - "aliasesStr": "", - "summary": "Another cathinone based stimulant, that is weaker than 4-MEC. Very few reports since it is quite unpopular.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50-100mg" - }, - { - "name": "Common", - "value": "100-175mg" - }, - { - "name": "Strong", - "value": "175-250mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "45-90 minutes" - }, - { - "name": "Duration", - "value": "2-5 hours" - }, - { - "name": "After effects", - "value": "2-5 hours" - } - ] - }, - { - "name": "Insufflated:", - "dosage": [ - { - "name": "Common", - "value": "50-100mg" - }, - { - "name": "Strong", - "value": "100-150mg+" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Duration", - "value": "1-1.5 hours" - }, - { - "name": "After effects", - "value": "1-3 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/3-MeO-PCE", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_3MEOPCE_.shtml", - "name": "3-MeO-PCE", - "aliases": [ - "3meopce", - "methoxyeticyclidine", - "methoxyieticyclidine" - ], - "aliasesStr": "3meopce,methoxyeticyclidine,methoxyieticyclidine", - "summary": "3-MeO-PCP with a change of a ring replacement. Slightly more potent than 3-MeO-PCP.", - "reagents": null, - "classes": { - "chemical": [ - "Arylcyclohexylamines" - ], - "psychoactive": [ - "Dissociatives" - ] - }, - "toxicity": [ - "toxic dosage is unknown" - ], - "addictionPotential": "highly addictive with a high potential for adverse side effects such as psychosis", - "tolerance": { - "full": "with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dissociatives" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "2 mg" - }, - { - "name": "Light", - "value": "4 - 8 mg" - }, - { - "name": "Common", - "value": "8 - 15 mg" - }, - { - "name": "Strong", - "value": "15 - 25 mg" - }, - { - "name": "Heavy", - "value": "25+ mg", - "note": "Heavy doses may result in psychosis and mania." - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours" - }, - { - "name": "Onset", - "value": "30 - 90 minutes" - }, - { - "name": "Come up", - "value": "1 - 2 hours" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "4 - 48 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "3 - 6 mg" - }, - { - "name": "Common", - "value": "6 - 12 mg" - }, - { - "name": "Strong", - "value": "12 - 20 mg" - }, - { - "name": "Heavy", - "value": "20 mg +", - "note": "Heavy doses may result in psychosis and mania." - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 5 hours" - }, - { - "name": "Onset", - "value": "3 - 15 minutes" - }, - { - "name": "Come up", - "value": "45 - 90 minutes" - }, - { - "name": "Peak", - "value": "1.5 - 2 hours" - }, - { - "name": "Offset", - "value": "45 - 60 minutes" - }, - { - "name": "After effects", - "value": "4 - 48 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/3-MeO-PCMo", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_3MeOPCMo.shtml", - "name": "3-MeO-PCMo", - "aliases": [], - "aliasesStr": "", - "summary": "A less common dissociative anaesthetic compound related to PCP. An analogue of 3-meo-pcp, but far less potent. Possibly an antitussive and antidepressant. Very little history of human use or pharmacological information.", - "reagents": null, - "classes": { - "chemical": [ - "Arylcyclohexylamines" - ], - "psychoactive": [ - "Dissociatives" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dissociative" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "50 mg" - }, - { - "name": "Light", - "value": "100 - 200 mg" - }, - { - "name": "Common", - "value": "200 - 300 mg" - }, - { - "name": "Strong", - "value": "300 - 400 mg" - }, - { - "name": "Heavy", - "value": "400 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 6 hours" - }, - { - "name": "Onset", - "value": "1 - 2 hours" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "2 - 3 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/3-MeO-PCP", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_3MeOPCP.shtml", - "name": "3-MeO-PCP", - "aliases": [ - "3-meo", - "3meopcp" - ], - "aliasesStr": "3-meo,3meopcp", - "summary": "A potent dissociative often compared to MXE but with a longer duration, much less sedating effects and causing an overall different experience. Users have reported effects as being similar to PCP. Roughtly ten times more potent than 4-MeO-PCP.", - "reagents": null, - "classes": { - "chemical": [ - "Arylcyclohexylamines" - ], - "psychoactive": [ - "Dissociatives" - ] - }, - "toxicity": [ - "toxic dosage is unknown" - ], - "addictionPotential": "produces dependence with chronic use and has a high potential for abuse", - "tolerance": { - "full": "with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dissociative" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "2 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 20 mg" - }, - { - "name": "Strong", - "value": "20 - 25 mg" - }, - { - "name": "Heavy", - "value": "25 mg +", - "note": "Heavy doses may result in psychosis and mania." - } - ], - "duration": [ - { - "name": "Total", - "value": "45 - 120 minutes" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "2 mg" - }, - { - "name": "Light", - "value": "4 - 8 mg" - }, - { - "name": "Common", - "value": "8 - 15 mg" - }, - { - "name": "Strong", - "value": "15 - 25 mg" - }, - { - "name": "Heavy", - "value": "25 mg +", - "note": "Heavy doses may result in psychosis and mania." - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours" - }, - { - "name": "Onset", - "value": "30 - 90 minutes" - }, - { - "name": "Come up", - "value": "45 - 120 minutes" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "4 - 48 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "2 - 5 mg" - }, - { - "name": "Common", - "value": "5 - 10 mg" - }, - { - "name": "Strong", - "value": "10 - 15 mg" - }, - { - "name": "Heavy", - "value": "15 mg +", - "note": "Heavy doses may result in psychosis and mania." - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 5 hours" - }, - { - "name": "Onset", - "value": "5 - 30 minutes" - }, - { - "name": "Come up", - "value": "45 - 90 minutes" - }, - { - "name": "Peak", - "value": "1.5 - 2 hours" - }, - { - "name": "Offset", - "value": "45 - 60 minutes" - }, - { - "name": "After effects", - "value": "4 - 48 hours" - } - ] - }, - { - "name": "IM", - "duration": [ - { - "name": "Onset", - "value": "3-7 minutes" - }, - { - "name": "After effects", - "value": "2-48 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/3-meo-pcpr", - "experiencesUrl": null, - "name": "3-MeO-PCPR", - "aliases": [], - "aliasesStr": "", - "summary": "This is the N-Propyl homologue of 3-MeO-PCE. It is slightly less potent than PCP. Yet seems slightly less manic inducing.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "5-8mg" - }, - { - "name": "Common", - "value": "8-15mg" - }, - { - "name": "Strong", - "value": "15-20mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "3-4 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "1-3mg" - }, - { - "name": "Common", - "value": "3-8mg" - }, - { - "name": "Strong", - "value": "8-15mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "Duration", - "value": "1-3 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/3-meo-pcpy", - "experiencesUrl": null, - "name": "3-MeO-PCPY", - "aliases": [], - "aliasesStr": "", - "summary": "3-Methoxy analogue of Rolicyclidine (PCPy) less opioid effects than Phenylcyclidine (PCP) Yet still prominent.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "2-4mg" - }, - { - "name": "Common", - "value": "4-8mg" - }, - { - "name": "Strong", - "value": "8-15mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "3-5 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "1-3mg" - }, - { - "name": "Common", - "value": "3-6mg" - }, - { - "name": "Strong", - "value": "6-10mg+" - } - ], - "duration": [ - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/3-meomc", - "experiencesUrl": null, - "name": "3-MeOMC", - "aliases": [], - "aliasesStr": "", - "summary": "A cathinone that has a short history of human use.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "25-50mg" - }, - { - "name": "Common", - "value": "50-100mg" - }, - { - "name": "Strong", - "value": "100-150mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-20 minutes" - }, - { - "name": "Duration", - "value": "5-7 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/3-MMC", - "experiencesUrl": null, - "name": "3-MMC", - "aliases": [ - "3-meph", - "3-mephedrone", - "3-methylmethcathinone", - "3methylmethcathinone", - "3mmc", - "metaphedrone" - ], - "aliasesStr": "3-meph,3-mephedrone,3-methylmethcathinone,3methylmethcathinone,3mmc,metaphedrone", - "summary": "A euphoric stimulant similar to mephedrone but said to lack much of the \"magic.\" Never gained the same popularity. Slightly less potent.", - "reagents": null, - "classes": { - "chemical": [ - "Khat#1#" - ], - "psychoactive": [ - "Stimulants", - "Entactogens" - ] - }, - "toxicity": null, - "addictionPotential": "extremely addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "25 mg" - }, - { - "name": "Light", - "value": "50 - 150 mg" - }, - { - "name": "Common", - "value": "150 - 250 mg" - }, - { - "name": "Strong", - "value": "250 - 350 mg" - }, - { - "name": "Heavy", - "value": "350 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "10 - 30 minutes" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "1 - 1.5 hours" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "10 mg" - }, - { - "name": "Light", - "value": "20 - 40 mg" - }, - { - "name": "Common", - "value": "40 - 60 mg" - }, - { - "name": "Strong", - "value": "60 - 120 mg" - }, - { - "name": "Heavy", - "value": "120 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2.5 - 4.5 hours" - }, - { - "name": "Onset", - "value": "5 - 10 minutes" - }, - { - "name": "Come up", - "value": "10 - 20 minutes" - }, - { - "name": "Peak", - "value": "1 - 1.5 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "1 - 1.5 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/3-oh-phenazepam", - "experiencesUrl": null, - "name": "3-OH-PHENAZEPAM", - "aliases": [ - "3-ho-p", - "3-ho-phenazepam", - "3-hydroxyphenazepam", - "3-oh-p", - "3hop", - "3hophenazepam", - "3ohp", - "3ohphenazepam" - ], - "aliasesStr": "3-ho-p,3-ho-phenazepam,3-hydroxyphenazepam,3-oh-p,3hop,3hophenazepam,3ohp,3ohphenazepam", - "summary": "The 3-OH analogue of Phenazepam, which cuts the half life down quite a bit. Psychoactive effects are mostly lead by its metabolites, rather than the drug itself.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "0.5-1mg" - }, - { - "name": "Common", - "value": "1-2mg" - }, - { - "name": "Heavy", - "value": "2-4mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-90 minutes" - }, - { - "name": "Duration", - "value": "10-24 hours" - }, - { - "name": "After effects", - "value": "2-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/3C-E", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_3CE.shtml", - "name": "3C-E", - "aliases": [ - "3c-escaline" - ], - "aliasesStr": "3c-escaline", - "summary": "Three-Carbon Analog of Escaline. Substituted Amphetamine.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted amphetamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "20 mg" - }, - { - "name": "Light", - "value": "30 - 40 mg" - }, - { - "name": "Common", - "value": "40 - 60 mg" - }, - { - "name": "Strong", - "value": "60 - 80 mg" - }, - { - "name": "Heavy", - "value": "80 mg+" - } - ], - "duration": [ - { - "name": "Total", - "value": "10 - 16 hours" - }, - { - "name": "Onset", - "value": "1 - 2 hours" - }, - { - "name": "Peak", - "value": "4 - 8 hours" - }, - { - "name": "Offset", - "value": "3 - 6 hours" - }, - { - "name": "After effects", - "value": "3 - 6 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "15 mg" - }, - { - "name": "Light", - "value": "20 - 35 mg" - }, - { - "name": "Common", - "value": "35 - 60 mg" - }, - { - "name": "Strong", - "value": "60 - 70 mg" - }, - { - "name": "Heavy", - "value": "70 mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5 - 90 minutes" - }, - { - "name": "Peak", - "value": "4 - 7 hours" - }, - { - "name": "Offset", - "value": "2 - 5 hours" - }, - { - "name": "After effects", - "value": "3 - 5 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/3c-p", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_3CP.shtml", - "name": "3C-P", - "aliases": [ - "3cp" - ], - "aliasesStr": "3cp", - "summary": "Rather new and uncommon stimulant, psychedelic and amphetamine with properties similar to the 2Cx class of drugs. 3-carbon homologue of proscaline.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5-10mg" - }, - { - "name": "Light", - "value": "10-20mg" - }, - { - "name": "Common", - "value": "20-40mg" - }, - { - "name": "Heavy", - "value": "40+mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "60-150 minutes" - }, - { - "name": "Duration", - "value": "10-18 hours" - }, - { - "name": "After effects", - "value": "2-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4,4-dmar", - "experiencesUrl": null, - "name": "4,4-DMAR", - "aliases": [ - "4,4-dmap", - "serotoni" - ], - "aliasesStr": "4,4-dmap,serotoni", - "summary": "Very closely related stimulant to Aminorex and Pemoline. Was sold as a designer drug for quite awhile under the brand name \"Serotoni\" has been linked to at least 31 deaths. It is a potent SNDRA.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "30-60mg" - }, - { - "name": "Common", - "value": "60-120mg" - }, - { - "name": "Strong", - "value": "120-200mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "5-15 minutes" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-aco-dalt", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4AcODALT.shtml", - "name": "4-AcO-DALT", - "aliases": [ - "4acodalt" - ], - "aliasesStr": "4acodalt", - "summary": "An uncommon tryptamine derivative first reported in the mid 2000s, likely a psychedelic. Little is known about the pharmacology or effects of this compound.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "20mg" - }, - { - "name": "Light", - "value": "40-50mg" - }, - { - "name": "Common", - "value": "50-70mg" - }, - { - "name": "Heavy", - "value": "100+mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-90 minutes" - }, - { - "name": "Duration", - "value": "5-9 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - }, - { - "name": "Vaporized", - "dosage": [ - { - "name": "Threshold", - "value": "2-4mg" - }, - { - "name": "Light", - "value": "5-8mg" - }, - { - "name": "Common", - "value": "10-15mg" - }, - { - "name": "Strong", - "value": "15+mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-90 minutes" - }, - { - "name": "Duration", - "value": "5-9 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/4-AcO-DET", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4AcODET.shtml", - "name": "4-AcO-DET", - "aliases": [ - "4-acetoxy-det", - "ethacetin", - "ethylacybin" - ], - "aliasesStr": "4-acetoxy-det,ethacetin,ethylacybin", - "summary": "Rare drug that is of the tryptamine family, can be comparable to Psilocybin. Expected to quickly hydrolyzed into the free phenolic 4-HO-DET.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 20 mg" - }, - { - "name": "Strong", - "value": "20 - 35 mg" - }, - { - "name": "Heavy", - "value": "35 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 7 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "1 - 1.5 hours" - }, - { - "name": "Peak", - "value": "1.5 - 3 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/4-AcO-DiPT", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4AcODiPT.shtml", - "name": "4-AcO-DiPT", - "aliases": [ - "4-acetoxy-dipt", - "4acodipt", - "aces", - "ipracetin", - "iprocetyl" - ], - "aliasesStr": "4-acetoxy-dipt,4acodipt,aces,ipracetin,iprocetyl", - "summary": "An uncommon psychedelic tryptamine with a short history of human use, also known as Ipracetin. Possibly first synthesised by Alexander Shulgin. Some reports of heavy nausea, with effects comparable to 2c-b and mushrooms.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "3 mg" - }, - { - "name": "Light", - "value": "5 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 30 mg" - }, - { - "name": "Strong", - "value": "30 - 45 mg" - }, - { - "name": "Heavy", - "value": "45 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 4 hours" - }, - { - "name": "Onset", - "value": "15 - 40 minutes" - }, - { - "name": "Come up", - "value": "20 - 40 minutes" - }, - { - "name": "Peak", - "value": "1.5 - 2 hours" - }, - { - "name": "Offset", - "value": "1 - 1.5 hours" - }, - { - "name": "After effects", - "value": "2 - 6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/4-AcO-DMT", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4AcODMT.shtml", - "name": "4-AcO-DMT", - "aliases": [ - "4-acetoxy-dmt", - "4-aco", - "4acodmt", - "o-acetylpsilocin", - "psilacetin", - "synthetic mushrooms" - ], - "aliasesStr": "4-acetoxy-dmt,4-aco,4acodmt,o-acetylpsilocin,psilacetin,synthetic mushrooms", - "summary": "A prodrug for Psilocin with extremely similar effects as Mushrooms.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "non-addictive with low potential for abuse", - "tolerance": { - "full": "almost immediately after ingestion", - "half": null, - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "7.5 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 25 mg" - }, - { - "name": "Strong", - "value": "25 - 45 mg" - }, - { - "name": "Heavy", - "value": "45 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 7 hours" - }, - { - "name": "Onset", - "value": "15 - 40 minutes" - }, - { - "name": "Come up", - "value": "30 - 75 minutes" - }, - { - "name": "Peak", - "value": "2 - 3.5 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "4 - 48 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 25 mg" - }, - { - "name": "Strong", - "value": "25 - 50 mg" - }, - { - "name": "Heavy", - "value": "50 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 5 hours" - }, - { - "name": "Onset", - "value": "5 - 25 minutes" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "1.5 - 2.5 hours" - }, - { - "name": "Offset", - "value": "1 hours - 1.5 hours" - }, - { - "name": "After effects", - "value": "2 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-aco-dpt", - "experiencesUrl": null, - "name": "4-AcO-DPT", - "aliases": [ - "4acodpt" - ], - "aliasesStr": "4acodpt", - "summary": "Research chemical of the Tryptamine class. First noted being sold in 2012, yet never recieved much attention. Conflicting reports. Doesn't dissolve well at all in nearly all solutions it was tested in.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "10-15mg" - }, - { - "name": "Common", - "value": "15-25mg" - }, - { - "name": "Strong", - "value": "25-35mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "Duration", - "value": "Insufflated minutes" - }, - { - "name": "After effects", - "value": "2-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/4-AcO-MET", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4AcOMET.shtml", - "name": "4-AcO-MET", - "aliases": [ - "4-acetoxy-met", - "4acomet", - "metacetin", - "o-acetylmetocin" - ], - "aliasesStr": "4-acetoxy-met,4acomet,metacetin,o-acetylmetocin", - "summary": "A rare psychedelic tryptamine which is thought to be metabolised into 4-HO-MET. Onset and duration, intensity will vary but effect profile is largely the same.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 30 mg" - }, - { - "name": "Strong", - "value": "30 - 50 mg" - }, - { - "name": "Heavy", - "value": "50 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "2 hours" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/4-AcO-MiPT", - "experiencesUrl": null, - "name": "4-AcO-MiPT", - "aliases": [ - "4acomipt", - "mipracetin", - "o-acetylmiprocin" - ], - "aliasesStr": "4acomipt,mipracetin,o-acetylmiprocin", - "summary": "A quite potent tryptamine that has be related to having \"shroom-like\" visuals. Yet without much bodyload. Very hydroscopic. Seems to be quite safe in dosing. Similar to the likes of 2C-B.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 20 mg" - }, - { - "name": "Strong", - "value": "20 - 35 mg" - }, - { - "name": "Heavy", - "value": "35 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "1 - 2 hours" - }, - { - "name": "Peak", - "value": "1.5 - 3 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - }, - { - "name": "Vapourized", - "dosage": [ - { - "name": "Light", - "value": "2-5mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10-15" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-2 minutes" - } - ] - }, - { - "name": "Duration", - "duration": [ - { - "name": "Duration", - "value": "1-2 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-benzylpiperidine", - "experiencesUrl": null, - "name": "4-Benzylpiperidine", - "aliases": [ - "4-pmpd" - ], - "aliasesStr": "4-pmpd", - "summary": "A dopamine releasing agent with weak serotonin releasing properties. Little evidence of human use. Potentially dangerous in overdose given MAOI + monoamine releasing properties.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "75-125mg" - }, - { - "name": "Common", - "value": "125-200mg" - }, - { - "name": "Strong", - "value": "200-350mg" - }, - { - "name": "Heavy", - "value": "350mg+." - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-45 minutes" - }, - { - "name": "Duration", - "value": "2-5 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-cbc", - "experiencesUrl": null, - "name": "4-CBC", - "aliases": [], - "aliasesStr": "", - "summary": "Is a potentially very neurotoxic Cathinone. Obviously no scientic reports have been noted on the neurotoxicity or cardiotoxicity, so please move on with extreme caution.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "40-70mg" - }, - { - "name": "Common", - "value": "70-100mg" - }, - { - "name": "Strong", - "value": "100-130mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-60mg minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "2-6 hours" - } - ] - }, - { - "name": "Insufflated:", - "dosage": [ - { - "name": "Common", - "value": "50-80mg" - }, - { - "name": "Strong", - "value": "80-100mg." - } - ], - "duration": [ - { - "name": "After effects", - "value": "2-6 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "5-20 minutes" - }, - { - "name": "Duration", - "value": "1-3 hours" - }, - { - "name": "After effects", - "value": "2-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-chlorodiazepam", - "experiencesUrl": null, - "name": "4-CHLORODIAZEPAM", - "aliases": [ - "4'-chlorodiazepam", - "ro5-4864" - ], - "aliasesStr": "4'-chlorodiazepam,ro5-4864", - "summary": "A benzodiazepine derivative of Diazepam, yet lacks affinity for GABA(a) receptors, yet is still a sedative, that has pro-convulsant effects. Yet at lower doses it has been proven to be neuroprotective.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-cic", - "experiencesUrl": null, - "name": "4-CIC", - "aliases": [], - "aliasesStr": "", - "summary": "Inactive.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-cma", - "experiencesUrl": null, - "name": "4-CMA", - "aliases": [], - "aliasesStr": "", - "summary": "The stimulant that is the N-Methyl Derivative and prodrug of the neurotoxic para-Chloroamphetamine.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-cmc", - "experiencesUrl": null, - "name": "4-CMC", - "aliases": [ - "4cmc" - ], - "aliasesStr": "4cmc", - "summary": "(Note this work is going off just a few users inputs, so take all of this with a grain of salt) The cathinone analogue of 4-CMA which is highly neurotoxic. It is not known if the cathinone family holds the same neurotoxicity problem as with the parent compound.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "20-30mg" - }, - { - "name": "Light", - "value": "30-50mg" - }, - { - "name": "Common", - "value": "50mg-100mg" - }, - { - "name": "Strong", - "value": "100mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-60 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "Few hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-emc", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4Ethylmethcathinone.shtml", - "name": "4-EMC", - "aliases": [ - "4-ethylmethcathinone" - ], - "aliasesStr": "4-ethylmethcathinone", - "summary": "A stimulant that is a structural isomer of 4-MEC.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50-100mg" - }, - { - "name": "Common", - "value": "100-200mg" - }, - { - "name": "Strong", - "value": "200mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-60 minutes" - }, - { - "name": "Duration", - "value": "3-5 hours" - }, - { - "name": "After effects", - "value": "2-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-epd", - "experiencesUrl": null, - "name": "4-EPD", - "aliases": [ - "4-ethylpentedrone" - ], - "aliasesStr": "4-ethylpentedrone", - "summary": "An obscure analogue of Pentedrone, which means very little information on this chemical. It is likely is shares the same general effects of the other Pentedrone family.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "10-20mg" - }, - { - "name": "Common", - "value": "20-30mg" - }, - { - "name": "Strong", - "value": "30-50mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "1-3 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/4-FA", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4Fluoroamphetamine.shtml", - "name": "4-FA", - "aliases": [ - "4-fluoroamphetamine", - "4-fmp", - "4fa", - "flux", - "pal-303" - ], - "aliasesStr": "4-fluoroamphetamine,4-fmp,4fa,flux,pal-303", - "summary": "An empathogen commonly used in place of MDMA, having a similar duration of empathogenic effects. This drug, however, has a longer stimulant \"tail,\" during which effects are more like those of amphetamines. Not to be confused with 4-FMA, which has a similar potency, but is not particularly empathogenic.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted amphetamines" - ], - "psychoactive": [ - "Stimulants", - "Entactogens" - ] - }, - "toxicity": null, - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulants" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "40 mg" - }, - { - "name": "Light", - "value": "40 - 100 mg" - }, - { - "name": "Common", - "value": "100 - 130 mg" - }, - { - "name": "Strong", - "value": "130 - 150 mg" - }, - { - "name": "Heavy", - "value": "150 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 8 hours" - }, - { - "name": "Onset", - "value": "45 - 75 minutes" - }, - { - "name": "Come up", - "value": "30 - 75 minutes" - }, - { - "name": "Peak", - "value": "2.5 - 3.5 hours" - }, - { - "name": "Offset", - "value": "2 - 3 hours" - }, - { - "name": "After effects", - "value": "6 - 12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-fea", - "experiencesUrl": null, - "name": "4-FEA", - "aliases": [ - "4-fluoroethylamphetamine" - ], - "aliasesStr": "4-fluoroethylamphetamine", - "summary": "Stimulant that is the ethyl analogue of 4-FMA.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Light:", - "dosage": [ - { - "name": "Light", - "value": "25-50mg" - }, - { - "name": "Common", - "value": "50-75mg" - }, - { - "name": "Strong", - "value": "75-150mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "40-60 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-fluoroethylphenidate", - "experiencesUrl": null, - "name": "4-Fluoroethylphenidate", - "aliases": [ - "4-feph", - "4f-eph" - ], - "aliasesStr": "4-feph,4f-eph", - "summary": "A more potent and longer lasting analogue of Ethylphenidate.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-30mg" - }, - { - "name": "Strong", - "value": "30-50mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-25 minutes" - }, - { - "name": "Duration", - "value": "5-6 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-fluoromethylphenidate", - "experiencesUrl": null, - "name": "4-Fluoromethylphenidate", - "aliases": [ - "4-fl-mph", - "4-fluoro-mph", - "4-fmph", - "4f-mph", - "4fmph" - ], - "aliasesStr": "4-fl-mph,4-fluoro-mph,4-fmph,4f-mph,4fmph", - "summary": "A relatively uncommon, more serotonergic RC derivative of methylphenidate. A dopamine reuptake inhibitor possessing similar effects to associated stimulant compounds.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "1-5mg" - }, - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-15mg" - }, - { - "name": "Strong", - "value": "15-20mg" - }, - { - "name": "Heavy", - "value": "20-25mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "25-40 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "5-10 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-fluoropentedrone", - "experiencesUrl": null, - "name": "4-Fluoropentedrone", - "aliases": [ - "4-f-pentedrone", - "4-fpd", - "4f-pentedrone" - ], - "aliasesStr": "4-f-pentedrone,4-fpd,4f-pentedrone", - "summary": "An obscure analogue of pentedrone, little information exists about this cathinone. It is likely that it has the same general effects as pentedrone, mephedrone and other related stimulants.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/4-FMA", - "experiencesUrl": null, - "name": "4-FMA", - "aliases": [ - "4-fluromethamphetamine", - "4fma" - ], - "aliasesStr": "4-fluromethamphetamine,4fma", - "summary": "A stimulant with some empathogenic properties, and analogue of Methamphetamine with similar effects. Reported to be less effective than 2-FMA and related compounds. Little is known about the pharmacological effects of this compound. Not to be confused with 4-FA, which has a different effect profile, despite similar potency.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted amphetamines" - ], - "psychoactive": [ - "Stimulants", - "Entactogens" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "10 mg" - }, - { - "name": "Light", - "value": "25 - 50 mg" - }, - { - "name": "Common", - "value": "50 - 75 mg" - }, - { - "name": "Strong", - "value": "100 - 125 mg" - }, - { - "name": "Heavy", - "value": "125 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - }, - { - "name": "Come up", - "value": "20 - 40 minutes" - }, - { - "name": "Peak", - "value": "2 - 5 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "3 - 12 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "Duration", - "value": "3-5 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-fmc", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4Fluoromethcathinone.shtml", - "name": "4-FMC", - "aliases": [ - "4-fluoromethcathinone", - "4fmc", - "flephedrone", - "fpephedrone" - ], - "aliasesStr": "4-fluoromethcathinone,4fmc,flephedrone,fpephedrone", - "summary": "A cathinone stimulant also known as flephedrone, appeared in 2008 marketed as a mephedrone replacement. With some mild empathogenic effects, it failed to achieve widespread popularity.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50-100mg" - }, - { - "name": "Common", - "value": "100-150mg" - }, - { - "name": "Strong", - "value": "150-200+mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "25-40mg" - }, - { - "name": "Common", - "value": "50-100mg" - }, - { - "name": "Strong", - "value": "100-150+mg" - } - ], - "duration": [ - { - "name": "After effects", - "value": "1-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-fpm", - "experiencesUrl": null, - "name": "4-FPM", - "aliases": [], - "aliasesStr": "", - "summary": "Seems to be a substance, that was just made to get money. High doses needed to feel any effects. Would avoid.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "duration": [ - { - "name": "Onset", - "value": "60-90 minutes" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "20-40 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-fpp", - "experiencesUrl": null, - "name": "4-FPP", - "aliases": [], - "aliasesStr": "", - "summary": "A piperazine derivative that has been reported to have mild pyschedelic effects, and also empathogen qualities. It has been sold in many branded legal highs.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "20-40mg" - }, - { - "name": "Common", - "value": "40-80mg" - }, - { - "name": "Strong", - "value": "80-150mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/4-HO-DET", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4HODET.shtml", - "name": "4-HO-DET", - "aliases": [ - "4-hydroxy-det", - "4hodet", - "cz-74", - "ethocin" - ], - "aliasesStr": "4-hydroxy-det,4hodet,cz-74,ethocin", - "summary": "A rare compound first produced by Albert Hoffman, also known as ethocin. Structurally related to 4-HO-MET (metocin) and psilocin (4-HO-DMT), this drug has similar psychedelic effects but little recorded human usage. Probably similar to mushrooms. Potentially stimulating.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 15 mg" - }, - { - "name": "Common", - "value": "20 - 30 mg" - }, - { - "name": "Strong", - "value": "30 - 45 mg" - }, - { - "name": "Heavy", - "value": "45 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 7 hours" - }, - { - "name": "Onset", - "value": "20 - 45 minutes" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "2.5 - 3.5 hours" - }, - { - "name": "Offset", - "value": "1.5 - 2 hours" - }, - { - "name": "After effects", - "value": "1 - 4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/4-HO-DiPT", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4HODiPT.shtml", - "name": "4-HO-DiPT", - "aliases": [ - "iprocin" - ], - "aliasesStr": "iprocin", - "summary": "A psychedelic tryptamine also known as iprocin. A homologue of psilocin, this drug likely has similar effects to psychedelic mushrooms. Said to have a rapid onset and relatively short duration for a drug of its class.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "3 mg" - }, - { - "name": "Light", - "value": "3 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 20 mg" - }, - { - "name": "Strong", - "value": "20 - 30 mg" - }, - { - "name": "Heavy", - "value": "30 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 4 hours" - }, - { - "name": "Onset", - "value": "15 - 30 minutes" - }, - { - "name": "Come up", - "value": "20 - 40 minutes" - }, - { - "name": "Peak", - "value": "60 - 90 minutes" - }, - { - "name": "Offset", - "value": "30 - 60 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/4-HO-DPT", - "experiencesUrl": null, - "name": "4-HO-DPT", - "aliases": [ - "4-hydroxy-n", - "4hodpt", - "n-dipropyltryptamine", - "procin" - ], - "aliasesStr": "4-hydroxy-n,4hodpt,n-dipropyltryptamine,procin", - "summary": "A psychedelic hallucinogenic first synthesized by alexander shulgin. At light doses it causes enhanced cognition and appreciation for things like art and music while high doses cause visuals. The drug is known to cause a bodyload.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "20 mg" - }, - { - "name": "Light", - "value": "40 - 60 mg" - }, - { - "name": "Common", - "value": "60 - 90 mg" - }, - { - "name": "Strong", - "value": "90 - 130 mg" - }, - { - "name": "Heavy", - "value": "130 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 8 hours" - }, - { - "name": "Onset", - "value": "45 - 60 minutes" - }, - { - "name": "Come up", - "value": "60 - 120 minutes" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 25 mg" - }, - { - "name": "Strong", - "value": "25 - 35 mg" - }, - { - "name": "Heavy", - "value": "35 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "15 - 45 minutes" - }, - { - "name": "Come up", - "value": "30 - 45 minutes" - }, - { - "name": "Peak", - "value": "1 - 3 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/4-HO-EPT", - "experiencesUrl": null, - "name": "4-HO-EPT", - "aliases": [ - "eprocin" - ], - "aliasesStr": "eprocin", - "summary": "The 4-Hydroxy version of EPT. Slightly more potent than the prior.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "15 - 20 mg" - }, - { - "name": "Common", - "value": "30 - 40 mg" - }, - { - "name": "Strong", - "value": "40 - 60 mg" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 7 hours" - }, - { - "name": "Onset", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-ho-mcpt", - "experiencesUrl": null, - "name": "4-HO-MCPT", - "aliases": [], - "aliasesStr": "", - "summary": "Novel synthetic tryptamine that is the cyclopropyl homologue of Psilocin. Not much is known about anything.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/4-HO-MET", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4HOMET.shtml", - "name": "4-HO-MET", - "aliases": [ - "4homet", - "colour", - "ethocin", - "homet", - "methylcybin", - "metocin" - ], - "aliasesStr": "4homet,colour,ethocin,homet,methylcybin,metocin", - "summary": "A lesser known psychedelic tryptamine. Functional analogue of Psilocin. Very poorly soluble in water and alcohol.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": null, - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 25 mg" - }, - { - "name": "Common", - "value": "25 - 35 mg" - }, - { - "name": "Strong", - "value": "35 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "25 - 45 minutes" - }, - { - "name": "Onset", - "value": "15 - 120 seconds" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "5 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 25 mg" - }, - { - "name": "Strong", - "value": "25 - 45 mg" - }, - { - "name": "Heavy", - "value": "45 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "15 - 40 minutes" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "1 - 1.5 hours" - }, - { - "name": "After effects", - "value": "2 - 12 hours" - } - ] - }, - { - "name": "Intravenous", - "dosage": [ - { - "name": "Light", - "value": "5mg" - }, - { - "name": "Common", - "value": "10-15mg" - }, - { - "name": "Strong", - "value": "20mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "2-10 minutes" - }, - { - "name": "Duration", - "value": "3-7 hours" - }, - { - "name": "After effects", - "value": "2-8 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "5-25 minutes" - }, - { - "name": "Duration", - "value": "3-7 hours" - }, - { - "name": "After effects", - "value": "2-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/4-HO-MiPT", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4HOMiPT.shtml", - "name": "4-HO-MiPT", - "aliases": [ - "4-ho", - "4homipt", - "ho-mipt", - "homipt", - "miprocin" - ], - "aliasesStr": "4-ho,4homipt,ho-mipt,homipt,miprocin", - "summary": "A reasonably popular tryptamine deriviative and Psilocin analogue, first synthesised by Alexander Shulgin. It has been reported as having comparable effects to psychedelic mushrooms, though with a shorter duration.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 25 mg" - }, - { - "name": "Strong", - "value": "25 - 35 mg" - }, - { - "name": "Heavy", - "value": "35 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "15 - 45 minutes" - }, - { - "name": "Come up", - "value": "20 - 60 minutes" - }, - { - "name": "Peak", - "value": "1.5 - 2.5 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "2 - 12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-ho-mpmi", - "experiencesUrl": null, - "name": "4-HO-MPMI", - "aliases": [ - "lucigenol" - ], - "aliasesStr": "lucigenol", - "summary": "A rare tryptamine derivative first synthesised by David Nichols. This drug, also known as lucigenol, has rarely been documented outside the lab. It is known to be a psychedelic similar to other psychoactive tryptamines, with a potency similar to DOI, but little else is known.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "500-750ug." - }, - { - "name": "Light", - "value": "750ug-1mg" - }, - { - "name": "Common", - "value": "1-2mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-60 minutes" - }, - { - "name": "Duration", - "value": "6-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/4-HO-MPT", - "experiencesUrl": null, - "name": "4-HO-MPT", - "aliases": [ - "4hompt", - "meprocin" - ], - "aliasesStr": "4hompt,meprocin", - "summary": "Psychedelic drug of the tryptamine class. Higher homologue of Psilocin, and is the 4-hydroxy analogue of N-Methyl-N-Propyltryptamine.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 30 mg" - }, - { - "name": "Strong", - "value": "30 - 50 mg" - }, - { - "name": "Heavy", - "value": "50 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 7 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "1 - 2 hours" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "2 - 12 hours" - } - ] - }, - { - "name": "Vapourized", - "dosage": [ - { - "name": "Light", - "value": "3-5mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10-15mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-2 minutes" - }, - { - "name": "Duration", - "value": "45-90 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-mec", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4Methylethcathinone.shtml", - "name": "4-MEC", - "aliases": [ - "4-methylethcathinone", - "4mec" - ], - "aliasesStr": "4-methylethcathinone,4mec", - "summary": "A substituted cathinone stimulant; little is known about its safety or subjective effects. It is believed to have similar effects to mephedrone, but with a lower potency and a stronger stimulating character.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50-100mg" - }, - { - "name": "Common", - "value": "100-200mg" - }, - { - "name": "Strong", - "value": "200mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "2-5 hours" - }, - { - "name": "After effects", - "value": "2-4 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "25-40mg" - }, - { - "name": "Common", - "value": "40-100mg" - }, - { - "name": "Strong", - "value": "100-150mg+" - } - ], - "duration": [ - { - "name": "After effects", - "value": "2-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-meo-butryfentanyl", - "experiencesUrl": null, - "name": "4-MeO-Butyrfentanyl", - "aliases": [ - "4-meo-bf" - ], - "aliasesStr": "4-meo-bf", - "summary": "Rare and basically unknown opioid and fentanyl analogue (not to be confused with Butyrfentanyl). Virtually no reliable information exists, safe dosages are unknown. Exercise extreme caution. Overdose may result in respiratory depression. Do not mix with stimulants or depressants.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "duration": [ - { - "name": "Onset", - "value": "5-15 minutes" - }, - { - "name": "Duration", - "value": "45-120 minutes" - }, - { - "name": "After effects", - "value": "1-2 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "1-2 minutes" - }, - { - "name": "Duration", - "value": "30-75 minutes" - }, - { - "name": "After effects", - "value": "1-2 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-meo-mipt", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4MeOMiPT.shtml", - "name": "4-MeO-MiPT", - "aliases": [], - "aliasesStr": "", - "summary": "A rare psychedelic tryptamine first synthesised by Alexander Shulgin, said to the be \"little brother\" of 5-MeO-MiPT. Said to be relatively mild with lighter visual effects than most tryptamines.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "10mg" - }, - { - "name": "Common", - "value": "10-20mg" - }, - { - "name": "Strong", - "value": "20+mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-60 minutes" - }, - { - "name": "Duration", - "value": "3-7 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/4-MeO-PCP", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4MeOPCP.shtml", - "name": "4-MeO-PCP", - "aliases": [ - "4meopcp", - "methoxydine" - ], - "aliasesStr": "4meopcp,methoxydine", - "summary": "An arylcyclohexamine dissociative anaesthetic related to PCP. First discovered in the 1960s by Parke-Davis, it was introduced to the RC market in 2008. Reported to be less potent than PCP. It is not commonly seen, but has seen some increase in popularity with the inavailability of other dissociatives.", - "reagents": null, - "classes": { - "chemical": [ - "Arylcyclohexylamines" - ], - "psychoactive": [ - "Dissociatives" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dissociative" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "25 mg" - }, - { - "name": "Light", - "value": "75 - 100 mg" - }, - { - "name": "Common", - "value": "100 - 170 mg" - }, - { - "name": "Strong", - "value": "170 - 250 mg" - }, - { - "name": "Heavy", - "value": "250 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "12 - 20 hours" - }, - { - "name": "Onset", - "value": "45 - 120 minutes" - }, - { - "name": "Come up", - "value": "1 - 2 hours" - }, - { - "name": "Peak", - "value": "3 - 7 hours" - }, - { - "name": "Offset", - "value": "6 - 10 hours" - }, - { - "name": "After effects", - "value": "6+ hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "15 mg" - }, - { - "name": "Light", - "value": "30 - 75 mg" - }, - { - "name": "Common", - "value": "75 - 150 mg" - }, - { - "name": "Strong", - "value": "150mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "12 - 18 hours" - }, - { - "name": "Onset", - "value": "5 - 15 minutes" - }, - { - "name": "Come up", - "value": "15 - 30 minutes" - }, - { - "name": "Peak", - "value": "3 - 6 hours" - }, - { - "name": "Offset", - "value": "3 hours" - }, - { - "name": "After effects", - "value": "3 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-methylaminorex", - "experiencesUrl": null, - "name": "4-METHYLAMINOREX", - "aliases": [], - "aliasesStr": "", - "summary": "A very potent stimulant that has quite a long duration of action at around 16 hours.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "1mg" - }, - { - "name": "Light", - "value": "1-5mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10-15mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-15 minutes" - }, - { - "name": "Duration", - "value": "14-18 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-methylmethylphenidate", - "experiencesUrl": null, - "name": "4-Methylmethylphenidate", - "aliases": [ - "4-me-tmp", - "4-metmp", - "4-mmph" - ], - "aliasesStr": "4-me-tmp,4-metmp,4-mmph", - "summary": "A stimulant drug related to methylphenidate and also known as 4-Me-TMP, it has demonstrated lower dopamine reuptake inhibition properties and is potentially less potent. Has been subjectively described as very similar in feel to MPH.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "25-40mg" - }, - { - "name": "Common", - "value": "40-60mg" - }, - { - "name": "Strong", - "value": "60-90mg" - }, - { - "name": "Heavy", - "value": "90-125mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-35 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "10-20mg" - }, - { - "name": "Common", - "value": "20-45mg" - }, - { - "name": "Strong", - "value": "45-70mg" - }, - { - "name": "Heavy", - "value": "70mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-20 minutes" - }, - { - "name": "Duration", - "value": "2-5 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-mpd", - "experiencesUrl": null, - "name": "4-MPD", - "aliases": [], - "aliasesStr": "", - "summary": "Stimulant of the cathinone class. Higher homologue of Mephedrone, and the p-Methyl analogue of Pentedrone.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4-mta", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4MTA.shtml", - "name": "4-MTA", - "aliases": [ - "4-methylthioamphetamine" - ], - "aliasesStr": "4-methylthioamphetamine", - "summary": "Empathogen with very low chronic toxicity but high risk of acute harm due to mixed serotonin release and MAOI action. Reported to lack euphoria and rarely sold since being scheduled.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/4F-EPH", - "experiencesUrl": null, - "name": "4F-EPH", - "aliases": [ - "4feph" - ], - "aliasesStr": "4feph", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Substituted phenidates" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": null, - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "< 5 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 15 mg" - }, - { - "name": "Strong", - "value": "15 - 30 mg" - }, - { - "name": "Heavy", - "value": "30 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 6 hours" - }, - { - "name": "Onset", - "value": "10 - 25 minutes" - }, - { - "name": "After effects", - "value": "4 - 12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/4F-MPH", - "experiencesUrl": null, - "name": "4F-MPH", - "aliases": [], - "aliasesStr": "", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Substituted phenidates" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "< 5 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 15 mg" - }, - { - "name": "Strong", - "value": "15 - 20 mg" - }, - { - "name": "Heavy", - "value": "20 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours" - }, - { - "name": "Onset", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "2 - 4 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "5 - 10 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "5 - 8 mg" - }, - { - "name": "Common", - "value": "8 - 14 mg" - }, - { - "name": "Strong", - "value": "14 - 20 mg" - }, - { - "name": "Heavy", - "value": "20 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 6 hours" - }, - { - "name": "Onset", - "value": "10 - 30 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "4 - 8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4f-neb", - "experiencesUrl": null, - "name": "4F-NEB", - "aliases": [], - "aliasesStr": "", - "summary": "The 4-Fluoro analogue of N-Ethylbuphedrone (NEB) is a part of the cathinone class.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "75-100mg" - }, - { - "name": "Common", - "value": "100-150mg" - }, - { - "name": "Strong", - "value": "150-300mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "90-180 minutes" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "50-75" - }, - { - "name": "Common", - "value": "75-150mg" - }, - { - "name": "Strong", - "value": "150-250mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "Duration", - "value": "50-100 minutes" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4f-php", - "experiencesUrl": null, - "name": "4F-PHP", - "aliases": [], - "aliasesStr": "", - "summary": "4-Fluoro analogue of a-PHP, yet seems to have less mania attachted to it. Dose is near on par.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "5-15mg" - }, - { - "name": "Common", - "value": "15-30mg" - }, - { - "name": "Strong", - "value": "30-50mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "Insufflated minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/4f-pvp", - "experiencesUrl": null, - "name": "4F-PVP", - "aliases": [ - "4f-a-pvp", - "pfpvp" - ], - "aliasesStr": "4f-a-pvp,pfpvp", - "summary": "Fluornated analogue of a-PVP. Seems to be slightly less weaker than it's parent compound.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-20mg" - }, - { - "name": "Strong", - "value": "20-25mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-20 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/5-APB", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5APB.shtml", - "name": "5-APB", - "aliases": [ - "5apb" - ], - "aliasesStr": "5apb", - "summary": "A triple monoamine reuptake inhibitor. This agonism for 5-HT2B makes it likely that 5-APB would be cardiotoxic with long term use, as seen in other 5-HT2B agonists such as fenfluramine and MDMA.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted benzofurans", - "Substituted amphetamines" - ], - "psychoactive": [ - "Stimulants", - "Entactogens" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "20 mg" - }, - { - "name": "Light", - "value": "40 - 60 mg" - }, - { - "name": "Common", - "value": "60 - 80 mg" - }, - { - "name": "Strong", - "value": "80 - 100 mg" - }, - { - "name": "Heavy", - "value": "100 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 8 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "45 - 90 minutes" - }, - { - "name": "Peak", - "value": "2 - 4 hours" - }, - { - "name": "Offset", - "value": "1.5 - 3 hours" - }, - { - "name": "After effects", - "value": "6 - 48 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/5-apdb", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5APDB.shtml", - "name": "5-APDB", - "aliases": [], - "aliasesStr": "", - "summary": "An entactogenic amphetamine stimulant with similar structure and effects to MDMA. An analogue of MDA, it is a highly selective serotonin releaser but inhibits reuptake of serotonin (weakly), dopamine and norepinephrine.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50-75mg" - }, - { - "name": "Common", - "value": "75-125mg" - }, - { - "name": "Heavy", - "value": "125-200mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-60 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/5-apdi", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_IAP.shtml", - "name": "5-APDI", - "aliases": [ - "iap" - ], - "aliasesStr": "iap", - "summary": "Also commonly known as IAP. A selective serotonin releasing agent with psychedelic and empathogenic properties. Users have often reported issues with the drug causing overheating and unwelcome bowel movements.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "15-25mg" - }, - { - "name": "Common", - "value": "25-50mg" - }, - { - "name": "Strong", - "value": "50-75mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-90 minutes" - }, - { - "name": "Duration", - "value": "8-14 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/5-bpdi", - "experiencesUrl": null, - "name": "5-BPDI", - "aliases": [], - "aliasesStr": "", - "summary": "An analogue of a-PHP, which has been described as having an extremely similar effect profile, with some users noting that it may be slightly lighter and with less of an urge to redose. However, little record of the safety of human use exists.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "7.5-10mg" - }, - { - "name": "Common", - "value": "10-25mg" - }, - { - "name": "Strong", - "value": "25-45mg" - }, - { - "name": "Heavy", - "value": "45+mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "3-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/5-br-dmt", - "experiencesUrl": null, - "name": "5-Bromo-DMT", - "aliases": [], - "aliasesStr": "", - "summary": "Psychedelic drug of the Trypyamine class, and is also found in two marine invertebrates. Animal studies have shown that this could be useful for sedative and/or antidepressant use.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Vapourized", - "dosage": [ - { - "name": "Light", - "value": "10-25mg." - }, - { - "name": "Common", - "value": "25-35mg." - }, - { - "name": "Strong", - "value": "35-65mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-2 minutes" - }, - { - "name": "Duration", - "value": "15-90 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/5-dbfpv", - "experiencesUrl": null, - "name": "5-DBFPV", - "aliases": [], - "aliasesStr": "", - "summary": "Stimulant of the cathinone class. Analogue of MDPV where the methylenedioxyphenyl group was replaced with a dihydrobenzofuran.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "2-5mg" - }, - { - "name": "Light", - "value": "5-15mg" - }, - { - "name": "Common", - "value": "15-30mg" - }, - { - "name": "Strong", - "value": "30-60mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "After effects", - "value": "4-12 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "5-15 minutes" - }, - { - "name": "After effects", - "value": "4-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/5-eapb", - "experiencesUrl": null, - "name": "5-EAPB", - "aliases": [ - "5eapb" - ], - "aliasesStr": "5eapb", - "summary": "A empathogen sold as a replacement to 5-MAPB after it was banned in the UK, but said to be less enjoyable and never gained much popularity.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50-60mg" - }, - { - "name": "Common", - "value": "60-100mg" - }, - { - "name": "Strong", - "value": "100-150+mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "Oral minutes" - }, - { - "name": "Duration", - "value": "5-6 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "30-40mg" - }, - { - "name": "Common", - "value": "40-60mg" - }, - { - "name": "Strong", - "value": "60-100+mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "Oral minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/5-Hydroxytryptophan", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Tryptophan.shtml", - "name": "5-HTP", - "aliases": [ - "5-hydroxytryptophan", - "5htp", - "and triptum", - "cincofarm", - "l-tryptophan", - "levothym", - "levotonine", - "oxitriptan", - "oxyfan", - "telesol", - "tript-oh", - "tryptophan" - ], - "aliasesStr": "5-hydroxytryptophan,5htp,and triptum,cincofarm,l-tryptophan,levothym,levotonine,oxitriptan,oxyfan,telesol,tript-oh,tryptophan", - "summary": "The precursor to serotonin. In some countries it is sold OTC as a supplement for mood stabilisation and insomnia. It is frequently used as a recovery supplement following the use of MDMA or any other drug that depletes serotonin. Do not mix this drug with anything serotonergic, as this can cause serotonin syndrome.", - "reagents": null, - "classes": { - "chemical": [ - "Amino acid", - "Substituted tryptamines" - ], - "psychoactive": [ - "Nootropic" - ] - }, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "25 mg" - }, - { - "name": "Light", - "value": "50 - 100 mg" - }, - { - "name": "Common", - "value": "100 - 300 mg" - }, - { - "name": "Strong", - "value": "300 - 500 mg" - }, - { - "name": "Heavy", - "value": "500 mg +" - } - ], - "duration": null - }, - { - "name": "Therapeutic", - "dosage": [ - { - "name": "Common", - "value": "50-100mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-60 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - } - ] - }, - { - "name": "Sleep", - "dosage": [ - { - "name": "Common", - "value": "100-200mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-60 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - } - ] - }, - { - "name": "Recovery", - "dosage": [ - { - "name": "Common", - "value": "200-300mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-60 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/5-iai", - "experiencesUrl": null, - "name": "5-IAI", - "aliases": [ - "5iai" - ], - "aliasesStr": "5iai", - "summary": "A monoamine triple releaser first synthesised by David Nichols, possesses similar properties to MDMA. Probably neurotoxic in humans, however the extent of this is unclear.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/5-it", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5IT.shtml", - "name": "5-IT", - "aliases": [ - "5-api" - ], - "aliasesStr": "5-api", - "summary": "An empathogenic stimulant with a very long duration, prone to cause overheating and potentially quite dangerous. Related to \u03b1MT, though described as being less psychedelic and with much stronger stimulating effects.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50mg" - }, - { - "name": "Common", - "value": "50-100mg" - }, - { - "name": "Strong", - "value": "100-150mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "90-120 minutes" - }, - { - "name": "Duration", - "value": "8-12 hours" - }, - { - "name": "After effects", - "value": "1-48 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/5-MAPB", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5MAPB.shtml", - "name": "5-MAPB", - "aliases": [ - "5mapb" - ], - "aliasesStr": "5mapb", - "summary": "An empathogen structurally similar to MDMA. Typically more visual than MDMA. Often reported to be much less stimulating and more relaxing than most other stimulating empathogens. Less psychedelic than 6-APB. Much longer lasting than MDMA.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted benzofurans", - "Substituted amphetamines" - ], - "psychoactive": [ - "Entactogens" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "20 mg" - }, - { - "name": "Light", - "value": "40 - 60 mg" - }, - { - "name": "Common", - "value": "60 - 80 mg" - }, - { - "name": "Strong", - "value": "80 - 100 mg" - }, - { - "name": "Heavy", - "value": "100 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 8 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "45 - 90 minutes" - }, - { - "name": "Peak", - "value": "2 - 4 hours" - }, - { - "name": "Offset", - "value": "1.5 - 3 hours" - }, - { - "name": "After effects", - "value": "6 - 48 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/5-mapdb", - "experiencesUrl": null, - "name": "5-MAPDB", - "aliases": [ - "5mapdb" - ], - "aliasesStr": "5mapdb", - "summary": "An entactogenic drug with similar effects to MDMA, it is related to 5-MAPB. Likely to release serotonin and show neurotoxicity in the same way as MDMA", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50-75mg" - }, - { - "name": "Common", - "value": "75-120mg" - }, - { - "name": "Strong", - "value": "120-150mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "45-70 minutes" - }, - { - "name": "Duration", - "value": "5-8 hours" - }, - { - "name": "After effects", - "value": "2-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/5-meo-amt", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5MeOAMT.shtml", - "name": "5-MeO-\u03b1MT", - "aliases": [ - "5meoamt" - ], - "aliasesStr": "5meoamt", - "summary": "A long-acting psychedelic and entactogenic tryptamine, related to aMT. Very potent and may be sold on blotters. Possibly has been missold as LSD in the past, however this is uncommon. Possibly an MAOI.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.5-1mg" - }, - { - "name": "Light", - "value": "1-2mg" - }, - { - "name": "Common", - "value": "2-4mg" - }, - { - "name": "Strong", - "value": "4-6mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-120 minutes" - }, - { - "name": "Duration", - "value": "12-18 hours" - }, - { - "name": "After effects", - "value": "4-24+ hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Duration", - "value": "8-12 hours" - }, - { - "name": "After effects", - "value": "4-24+ hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/5-MeO-DALT", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5MeODALT.shtml", - "name": "5-MeO-DALT", - "aliases": [ - "5meodalt", - "foxtrot" - ], - "aliasesStr": "5meodalt,foxtrot", - "summary": "A strange drug with an unknown mechanism of action. Some psychedelic effects alongside some effects non-characteristic of psychedelics like appetite enhancement. Reported as having rapid, intense and short acting entheogenic effects.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "3 mg" - }, - { - "name": "Common", - "value": "5 - 10 mg" - } - ], - "duration": [ - { - "name": "Total", - "value": "15 - 20 minutes" - }, - { - "name": "Onset", - "value": "15 - 60 seconds" - }, - { - "name": "Peak", - "value": "1 - 5 minutes" - }, - { - "name": "Offset", - "value": "5 - 10 minutes" - }, - { - "name": "After effects", - "value": "5 - 10 minutes" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "4 mg" - }, - { - "name": "Light", - "value": "5 - 12 mg" - }, - { - "name": "Common", - "value": "12 - 25 mg" - }, - { - "name": "Strong", - "value": "25 - 35 mg" - }, - { - "name": "Heavy", - "value": "35 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 6 hours" - } - ] - }, - { - "name": "Vaporized", - "dosage": [ - { - "name": "Light", - "value": "2-5mg" - }, - { - "name": "Common", - "value": "5-15mg" - }, - { - "name": "Strong", - "value": "15+mg" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/5-MeO-DiBF", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5MeODiBF.shtml", - "name": "5-MeO-DiBF", - "aliases": [], - "aliasesStr": "", - "summary": "An uncommon and new psychedelic drug related to tryptamine; the Benzofuran analogue of 5-MeO-DiPT. Probably a serotonin receptor partial agonist. Little history of human use.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted benzofurans" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "20 mg" - }, - { - "name": "Light", - "value": "50 - 80 mg" - }, - { - "name": "Common", - "value": "80 - 110 mg" - }, - { - "name": "Strong", - "value": "110 - 140 mg" - }, - { - "name": "Heavy", - "value": "140 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Peak", - "value": "30 - 60 minutes" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-15mg" - }, - { - "name": "Strong", - "value": "15-20mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-45 minutes" - }, - { - "name": "Duration", - "value": "6-8 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/5-MeO-DiPT", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5MeODiPT.shtml", - "name": "5-MeO-DiPT", - "aliases": [ - "5meodipt", - "foxy", - "foxy methoxy", - "foxy-methoxy" - ], - "aliasesStr": "5meodipt,foxy,foxy methoxy,foxy-methoxy", - "summary": "5-methoxy-di isopropyl tryptamine, also known as 'foxy', a psychedelic tryptamine related to DMT, which distorts visual and audio perception. Reported to have a heavy body load at high doses, it behaves similarly to other drugs of its class.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "3 mg" - }, - { - "name": "Light", - "value": "3 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 15 mg" - }, - { - "name": "Strong", - "value": "15 - 20 mg" - }, - { - "name": "Heavy", - "value": "20 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - }, - { - "name": "After effects", - "value": "2 - 6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/5-MeO-DMT", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5MeODMT.shtml", - "name": "5-MeO-DMT", - "aliases": [ - "5-medmt", - "5-meo", - "5meo", - "5meodmt", - "the god molecule", - "toads" - ], - "aliasesStr": "5-medmt,5-meo,5meo,5meodmt,the god molecule,toads", - "summary": "A powerful psychedelic tryptamine found in many species of plants and some toad venom, with a history of use by native South Americans spanning thousands of years. Has similar qualities to DMT and related tryptamines. Very potent. Orally active in combination with an MAOI.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "non-addictive with a low abuse potential", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "1 hour", - "zero": "2 hours" - }, - "crossTolerances": null, - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "3 - 6 mg" - }, - { - "name": "Common", - "value": "6 - 12 mg" - }, - { - "name": "Strong", - "value": "12 - 20 mg" - }, - { - "name": "Heavy", - "value": "20 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "20 - 40 minutes" - }, - { - "name": "Onset", - "value": "5 - 60 seconds" - }, - { - "name": "Come up", - "value": "30 - 60 seconds" - }, - { - "name": "Peak", - "value": "5 - 15 minutes" - }, - { - "name": "Offset", - "value": "10 - 20 minutes" - }, - { - "name": "After effects", - "value": "15 - 60 minutes" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "3 mg" - }, - { - "name": "Light", - "value": "5 - 8 mg" - }, - { - "name": "Common", - "value": "8 - 15 mg" - }, - { - "name": "Strong", - "value": "15 - 25 mg" - }, - { - "name": "Heavy", - "value": "25mg+" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 3 hours" - }, - { - "name": "Onset", - "value": "1 - 10 minutes" - }, - { - "name": "Peak", - "value": "10 - 40 minutes" - }, - { - "name": "Offset", - "value": "30 - 60 minutes" - }, - { - "name": "After effects", - "value": "1 - 3 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/5-meo-dpt", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5MeODPT.shtml", - "name": "5-MeO-DPT", - "aliases": [ - "5meodpt" - ], - "aliasesStr": "5meodpt", - "summary": "A rare tryptamine psychedelic and analogue of DPT. Little is known about this compound but it is likely to have effects similar to DPT, DMT and others related compounds.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "3mg" - }, - { - "name": "Common", - "value": "3-5mg" - }, - { - "name": "Strong", - "value": "5-10mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-60 minutes" - }, - { - "name": "Duration", - "value": "2-5 hours" - }, - { - "name": "After effects", - "value": "1-2 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/5-meo-eipt", - "experiencesUrl": null, - "name": "5-MeO-EiPT", - "aliases": [ - "5meoeipt" - ], - "aliasesStr": "5meoeipt", - "summary": "A little known and little studied tryptamine and analogue of EiPT, also related to DiPT and DET. Probably a psychedelic. Few reports of effects.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "2-5mg" - }, - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-20mg" - }, - { - "name": "Strong", - "value": "20-25mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "5-10 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "1-3mg" - }, - { - "name": "Light", - "value": "3-7mg" - }, - { - "name": "Common", - "value": "7-15mg" - }, - { - "name": "Strong", - "value": "15-20mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-10 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/5-meo-malt", - "experiencesUrl": null, - "name": "5-MeO-MALT", - "aliases": [], - "aliasesStr": "", - "summary": "A new and uncommon psychedelic tryptamine related to 5-MeO-DALT. Little is known about it, but its effects are probably similar to other psychedelic tryptamines.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "15-25mg" - }, - { - "name": "Common", - "value": "25-50mg" - }, - { - "name": "Strong", - "value": "50mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-30 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-20mg" - }, - { - "name": "Strong", - "value": "20mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-15 minutes" - }, - { - "name": "Duration", - "value": "1-3 hours" - } - ] - }, - { - "name": "Vapourized", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-15mg" - }, - { - "name": "Strong", - "value": "15-20mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-5 minutes" - }, - { - "name": "Duration", - "value": "0.5-1.5 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/5-meo-met", - "experiencesUrl": null, - "name": "5-MeO-MET", - "aliases": [], - "aliasesStr": "", - "summary": "An obscure psychedelic drug similar in structure to 5-MeO-DMT. Possibly first synthesised by Alexander Shulgin. Likely to have similar effects to other tryptamine psychedelics.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "13-15mg" - }, - { - "name": "Common", - "value": "15-25mg" - }, - { - "name": "Strong", - "value": "25mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-45 minutes" - }, - { - "name": "Duration", - "value": "2-3 hours" - }, - { - "name": "After effects", - "value": "1-2 hours" - } - ] - }, - { - "name": "Vapourized", - "dosage": [ - { - "name": "Light", - "value": "1-5mg" - }, - { - "name": "Common", - "value": "5-8mg" - }, - { - "name": "Strong", - "value": "8-12mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-5 minutes" - }, - { - "name": "After effects", - "value": "1-2 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/5-MeO-MiPT", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5MeOMIPT.shtml", - "name": "5-MeO-MiPT", - "aliases": [ - "5meo-mipt", - "5meomipt", - "moxy" - ], - "aliasesStr": "5meo-mipt,5meomipt,moxy", - "summary": "A potent, stimulating psychedelic tryptamine, sometimes compared to 5-MeO-DiPT. Has an unusually strong body component and weak visual effects. Often said to be very empathogenic.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics", - "Entactogens" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 15 mg" - }, - { - "name": "Strong", - "value": "15 - 20 mg" - }, - { - "name": "Heavy", - "value": "20 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 8 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "1 - 3 hours" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "3 mg" - }, - { - "name": "Light", - "value": "3 - 7 mg" - }, - { - "name": "Common", - "value": "7 - 15 mg" - }, - { - "name": "Strong", - "value": "15 - 20 mg" - }, - { - "name": "Heavy", - "value": "20 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 8 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "2 - 3 hours" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/5-meo-nipt", - "experiencesUrl": null, - "name": "5-MeO-NIPT", - "aliases": [ - "5meonipt" - ], - "aliasesStr": "5meonipt", - "summary": "A little known and little studied tryptamine and analogue of NiPT, also related to DiPT and DET. Psychedelic, that is generally regarded as not worth the time.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "2-4mg" - }, - { - "name": "Common", - "value": "8-15mg" - }, - { - "name": "Strong", - "value": "15-25mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-60 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "1-16 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/5-meo-pyr-t", - "experiencesUrl": null, - "name": "5-MeO-PYR-T", - "aliases": [], - "aliasesStr": "", - "summary": "A very odd acting tryptamine, that is very potent. With doses as low as 3mg vapourised causing complete blocks of memory loss.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "0.5-1mg" - }, - { - "name": "Common", - "value": "1-1.5mg" - }, - { - "name": "Strong", - "value": "1.5-2mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-20 minutes" - }, - { - "name": "Duration", - "value": "2-6 hours" - }, - { - "name": "After effects", - "value": "1-36 hours" - } - ] - }, - { - "name": "Vapourised", - "dosage": [ - { - "name": "Light", - "value": "0.5-1.5mg" - }, - { - "name": "Common", - "value": "1.5-2mg" - }, - { - "name": "Strong", - "value": "2-3mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-2 minutes" - }, - { - "name": "Duration", - "value": "1-5 hours" - }, - { - "name": "After effects", - "value": "1-36 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/5-methyl-bk-mdea", - "experiencesUrl": null, - "name": "5-Methylethylone", - "aliases": [ - "5-me", - "5-methyl-ethylone" - ], - "aliasesStr": "5-me,5-methyl-ethylone", - "summary": "Also known as 5-methyl ethylone or 5-ME, this is a cathinone drug and analogue of ethylone. Little is known about this obscure compound but it is reasonable to assume it has an effect profile similar to other stimulants of the cathionone class, with a slightly higher potency than ethylone. Potentially entactogenic and a monoamine releasing agent.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50-100mg" - }, - { - "name": "Common", - "value": "100-250mg" - }, - { - "name": "Strong", - "value": "250-400mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-40 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "30-60mg" - }, - { - "name": "Common", - "value": "60-150mg" - }, - { - "name": "Strong", - "value": "150-300mg+" - } - ], - "duration": [ - { - "name": "Duration", - "value": "2-3 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/5-ppdi", - "experiencesUrl": null, - "name": "5-PPDI", - "aliases": [], - "aliasesStr": "", - "summary": "An obscure analogue of \u03b1-PBP, which is itself an analogue of \u03b1-PVP. This rare compound has little history of human usage. Some trip reports suggest it is inactive. If it is active it likely has a similar effect profile to other pyrovalerone stimulants.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "15-30mg" - }, - { - "name": "Common", - "value": "30-50mg" - }, - { - "name": "Strong", - "value": "50-70mg" - }, - { - "name": "Heavy", - "value": "70+mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "3-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/5F-AKB48", - "experiencesUrl": null, - "name": "5F-AKB48", - "aliases": [ - "5f-apinaca", - "5fakb48", - "5fapinaca" - ], - "aliasesStr": "5f-apinaca,5fakb48,5fapinaca", - "summary": "A synthetic cannabanoid that is a Indazole. Produces subjective effects somehwat similar to that of Cannabis, yet with a very short duration. Analogue of STS-135, in which the core indole structure is subbed with an indazole base.", - "reagents": null, - "classes": { - "chemical": [ - "Adamantanes", - "Indazolecarboxamide" - ], - "psychoactive": [ - "Cannabinoid" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "cannabinoids" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "0.5 mg" - }, - { - "name": "Light", - "value": "0.5 - 1 mg" - }, - { - "name": "Common", - "value": "1 - 2 mg" - }, - { - "name": "Strong", - "value": "2 - 4 mg" - }, - { - "name": "Heavy", - "value": "4 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "30 - 60 minutes" - }, - { - "name": "Onset", - "value": "0 - 20 minutes" - }, - { - "name": "Peak", - "value": "10 - 30 minutes" - }, - { - "name": "Offset", - "value": "5 - 10 minutes" - }, - { - "name": "After effects", - "value": "15 - 30 minutes" - } - ] - }, - { - "name": "Vapourized", - "dosage": [ - { - "name": "Threshold", - "value": "500ug" - }, - { - "name": "Light", - "value": "500-1000ug" - }, - { - "name": "Strong", - "value": "1000-2500ug." - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-30" - }, - { - "name": "Duration", - "value": "30-60 minutes" - }, - { - "name": "After effects", - "value": "15-45 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/5F-PB-22", - "experiencesUrl": null, - "name": "5F-PB-22", - "aliases": [], - "aliasesStr": "", - "summary": "Synthetic cannabinoid, agonist of the cannabinoid receptors which has a strong sedating aspect. Being a synthetic cannabinoid it has a very fast onset.", - "reagents": null, - "classes": { - "chemical": [ - "Indolecarboxylate" - ], - "psychoactive": [ - "Cannabinoid" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "cannabinoids" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "< 1 mg" - }, - { - "name": "Light", - "value": "1 - 3 mg" - }, - { - "name": "Common", - "value": "3 - 5 mg" - }, - { - "name": "Strong", - "value": "5 - 8 mg" - }, - { - "name": "Heavy", - "value": "8 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "90 minutes" - }, - { - "name": "Onset", - "value": "10 seconds" - }, - { - "name": "Peak", - "value": "30 minutes" - }, - { - "name": "Offset", - "value": "1 hour" - }, - { - "name": "After effects", - "value": "15 minutes" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "< 1 mg" - }, - { - "name": "Light", - "value": "1 - 3 mg" - }, - { - "name": "Common", - "value": "3 - 5 mg" - }, - { - "name": "Strong", - "value": "5 - 8 mg" - }, - { - "name": "Heavy", - "value": "8 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 3 hours" - }, - { - "name": "Onset", - "value": "30 minutes" - }, - { - "name": "Peak", - "value": "1.5 hours" - }, - { - "name": "Offset", - "value": "1 hours" - }, - { - "name": "After effects", - "value": "30 minutes" - } - ] - }, - { - "name": "Threshold:", - "dosage": [ - { - "name": "Threshold", - "value": "1mg" - }, - { - "name": "Light", - "value": "1-3mg" - }, - { - "name": "Common", - "value": "3-5mg" - }, - { - "name": "Strong", - "value": "5-8mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-10" - }, - { - "name": "Duration", - "value": "60-90 minutes" - }, - { - "name": "After effects", - "value": "30-60 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/6-APB", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_6APB.shtml", - "name": "6-APB", - "aliases": [ - "6apb", - "benzofury" - ], - "aliasesStr": "6apb,benzofury", - "summary": "A stimulant, empathogen and analog of MDA. Typically more visual than MDMA or MDA, as well as having a much longer onset and duration. Users often report a slightly more psychedelic headspace as well. Commonly sold as an alternative to MDMA and MDA.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted benzofurans", - "Substituted amphetamines" - ], - "psychoactive": [ - "Psychedelics", - "Entactogens" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "with prolonged and repeated use", - "half": "3-4 weeks", - "zero": "6-8 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "15 mg" - }, - { - "name": "Light", - "value": "30 - 60 mg" - }, - { - "name": "Common", - "value": "60 - 90 mg" - }, - { - "name": "Strong", - "value": "90 - 120 mg" - }, - { - "name": "Heavy", - "value": "120 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "7 - 10 hours" - }, - { - "name": "Onset", - "value": "30 - 60 minutes" - }, - { - "name": "Come up", - "value": "60 - 120 minutes" - }, - { - "name": "Peak", - "value": "3 - 4 hours" - }, - { - "name": "Offset", - "value": "2 - 3 hours" - }, - { - "name": "After effects", - "value": "6 - 48 hours" - } - ] - }, - { - "name": "Light:", - "dosage": [ - { - "name": "Light", - "value": "50-75mg" - }, - { - "name": "Common", - "value": "75-125mg" - }, - { - "name": "Heavy", - "value": "125mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "45-90 minutes" - }, - { - "name": "Duration", - "value": "8-14 hours" - }, - { - "name": "After effects", - "value": "6-apb" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/6-APDB", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_6APDB.shtml", - "name": "6-APDB", - "aliases": [ - "4-desoxy-mda" - ], - "aliasesStr": "4-desoxy-mda", - "summary": "A stimulant and entactogen related to MDMA and an analogue of MDA. Reported as being fairly psychedlic at higher doses. It is a triple monoamine reuptake inhibitor. Potent full agonist of serotonin 2B receptors.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted phenethylamines", - "Substituted benzofurans", - "Substituted amphetamines" - ], - "psychoactive": [ - "Stimulants", - "Entactogens" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "with prolonged and repeated use", - "half": "21-30 days", - "zero": "2-3 months" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "20 mg" - }, - { - "name": "Light", - "value": "30 - 70 mg" - }, - { - "name": "Common", - "value": "70 - 100 mg" - }, - { - "name": "Strong", - "value": "100 - 130 mg" - }, - { - "name": "Heavy", - "value": "130 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 8 hours" - }, - { - "name": "Onset", - "value": "30 - 60 minutes" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "2 - 3 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/6-eapb", - "experiencesUrl": null, - "name": "6-EAPB", - "aliases": [], - "aliasesStr": "", - "summary": "A rare entactogen benzofuran structurally related to MDMA and 6-APB, though weaker in effects. the pharmacology of this compound is unclear. Likely to be a monoamine releaser, monoamine reuptake inhibitor or both.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50-75mg" - }, - { - "name": "Common", - "value": "75-100mg" - }, - { - "name": "Strong", - "value": "100-150mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-40 minutes" - }, - { - "name": "Duration", - "value": "4-7 hours" - }, - { - "name": "After effects", - "value": "1-10 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/6-mapb", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_6MAPB.shtml", - "name": "6-MAPB", - "aliases": [], - "aliasesStr": "", - "summary": "Empathogen drug that is structurally related to 6-APB and MDMA.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "20-40mg" - }, - { - "name": "Common", - "value": "40-80mg" - }, - { - "name": "Strong", - "value": "80-100mg" - } - ], - "duration": [ - { - "name": "Duration", - "value": "5-10 hours" - }, - { - "name": "After effects", - "value": "2-4 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "10-20mg" - }, - { - "name": "Common", - "value": "20-40mg" - }, - { - "name": "Strong", - "value": "40-100mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "Within minutes" - }, - { - "name": "Duration", - "value": "5-10 hours" - }, - { - "name": "After effects", - "value": "2-4 hours" - } - ] - }, - { - "name": "Orally", - "duration": [ - { - "name": "Onset", - "value": "Within minutes" - }, - { - "name": "Duration", - "value": "5-10 hours" - }, - { - "name": "After effects", - "value": "2-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/6-mddm", - "experiencesUrl": null, - "name": "6-MDDM", - "aliases": [ - "6-methylenedihydrodesoxymorphine" - ], - "aliasesStr": "6-methylenedihydrodesoxymorphine", - "summary": "Semisynthetic opioid that is a derivative of Hydromorphone with little history of human use. Roughly around ~80x the potency of Morphine. Structurally related to Desomorphine.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Light:", - "dosage": [ - { - "name": "Light", - "value": "125ug" - }, - { - "name": "Common", - "value": "187-250ug" - }, - { - "name": "Strong", - "value": "375ug+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-15 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "1-10 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/A-PHP", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_alphaPHP.shtml", - "name": "A-PHP", - "aliases": [ - "alpha-php", - "aphp", - "pv-7", - "pv7", - "\u03b1-php", - "\u03b1php" - ], - "aliasesStr": "alpha-php,aphp,pv-7,pv7,\u03b1-php,\u03b1php", - "summary": "A powerful stimulant cathinone, analogue of alpha-PVP and related to pyrovalerone. Said to have high addictive potential, compulsive redosing and relatively short duration. Often insufflated or vapourised.", - "reagents": null, - "classes": { - "chemical": [ - "Pyrrolidinophenone", - "Substituted cathinones" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "highly addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "2 - 5 mg" - }, - { - "name": "Common", - "value": "5 - 10 mg" - }, - { - "name": "Strong", - "value": "10 - 20 mg" - }, - { - "name": "Heavy", - "value": "20+ mg" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 5 hours" - }, - { - "name": "Onset", - "value": "2 - 8 minutes" - }, - { - "name": "Peak", - "value": "30 - 90 minutes" - }, - { - "name": "Offset", - "value": "1 - 4 hours" - }, - { - "name": "After effects", - "value": "1 - 8 hours" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 25 mg" - }, - { - "name": "Strong", - "value": "25 - 40 mg" - }, - { - "name": "Heavy", - "value": "40 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 8 hours" - }, - { - "name": "Onset", - "value": "2 - 20 minutes" - }, - { - "name": "Peak", - "value": "1 - 2.5 hours" - }, - { - "name": "Offset", - "value": "1 - 5 hours" - }, - { - "name": "After effects", - "value": "1 - 48 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "0.5 mg" - }, - { - "name": "Light", - "value": "1 - 5 mg" - }, - { - "name": "Common", - "value": "5 - 15 mg" - }, - { - "name": "Strong", - "value": "15 - 25 mg" - }, - { - "name": "Heavy", - "value": "25+ mg" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 5 hours" - }, - { - "name": "Onset", - "value": "10 - 30 minutes" - }, - { - "name": "Peak", - "value": "20 - 45 minutes" - }, - { - "name": "Offset", - "value": "30 - 90 minutes" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/a-pihp", - "experiencesUrl": null, - "name": "A-PIHP", - "aliases": [ - "pihp" - ], - "aliasesStr": "pihp", - "summary": "Quite new Pyrrolidine based stimulant of the cathinone class. Not very many reports. Probably has a very fast tolerance raise, and lack of effects over time.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "3-5mg" - }, - { - "name": "Light", - "value": "5-15mg" - }, - { - "name": "Common", - "value": "15-30mg" - }, - { - "name": "Strong", - "value": "30-50mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-60 minutes" - }, - { - "name": "Duration", - "value": "2-5 hours" - }, - { - "name": "After effects", - "value": "6-12 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "1-3mg" - }, - { - "name": "Light", - "value": "3-10mg" - }, - { - "name": "Common", - "value": "10-25mg" - }, - { - "name": "Strong", - "value": "25-40mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-2 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "6-12 hours" - } - ] - }, - { - "name": "Vapourized", - "dosage": [ - { - "name": "Threshold", - "value": "1-2mg" - }, - { - "name": "Light", - "value": "2-10mg" - }, - { - "name": "Common", - "value": "10-20mg" - }, - { - "name": "Strong", - "value": "20-30mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "1 minutes" - }, - { - "name": "Duration", - "value": "1-3 hours" - }, - { - "name": "After effects", - "value": "6-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/A-PVP", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_aPVP.shtml", - "name": "A-PVP", - "aliases": [ - "alpha-pvp", - "alpha-pyrrolidinopentiophenone", - "apvp", - "flakka", - "flocka", - "o-2387", - "prolintanone", - "\u03b1-pvp", - "\u03b1pvp", - "\u03b2-ketone-prolintane" - ], - "aliasesStr": "alpha-pvp,alpha-pyrrolidinopentiophenone,apvp,flakka,flocka,o-2387,prolintanone,\u03b1-pvp,\u03b1pvp,\u03b2-ketone-prolintane", - "summary": "A potent, short-lasting pyrovalerone-type stimulant which became popular despite often being said to not be particularly euphoric, perhaps due to its propensity to cause compulsive redosing. Effects should be similar to MDPV.", - "reagents": null, - "classes": { - "chemical": [ - "Khat#1#", - "Pyrrolidinophenone", - "Substituted cathinones" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "highly addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "2 - 5 mg" - }, - { - "name": "Common", - "value": "5 - 15 mg" - }, - { - "name": "Strong", - "value": "15 - 25 mg" - }, - { - "name": "Heavy", - "value": "25 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "30 - 60 minutes" - }, - { - "name": "Onset", - "value": "20 - 60 seconds" - }, - { - "name": "Peak", - "value": "3 - 6 minutes" - }, - { - "name": "Offset", - "value": "15 - 30 minutes" - }, - { - "name": "After effects", - "value": "1 - 3 hours" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 25 mg" - }, - { - "name": "Strong", - "value": "25 - 40 mg" - }, - { - "name": "Heavy", - "value": "40 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 6 hours" - }, - { - "name": "Onset", - "value": "2 - 20 minutes" - }, - { - "name": "Peak", - "value": "1 - 2.5 hours" - }, - { - "name": "Offset", - "value": "1 - 5 hours" - }, - { - "name": "After effects", - "value": "4 - 12 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "0.5 mg" - }, - { - "name": "Light", - "value": "1 - 5 mg" - }, - { - "name": "Common", - "value": "5 - 15 mg" - }, - { - "name": "Strong", - "value": "15 - 25 mg" - }, - { - "name": "Heavy", - "value": "25 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 5 hours" - }, - { - "name": "Onset", - "value": "10 - 30 minutes" - }, - { - "name": "Peak", - "value": "20 - 45 minutes" - }, - { - "name": "Offset", - "value": "30 - 90 minutes" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/a-pvt", - "experiencesUrl": null, - "name": "\u03b1-PVT", - "aliases": [ - "apvt" - ], - "aliasesStr": "apvt", - "summary": "A rare stimulant drug related to a-PVP, very uncommon. Probably less potent than a-PVP, however little data exists on this compound or its effects on humans.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "1-10 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - }, - { - "name": "Vapourized", - "duration": [ - { - "name": "Onset", - "value": "1-2 minutes" - }, - { - "name": "Duration", - "value": "1-2 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/ab-chminaca", - "experiencesUrl": null, - "name": "AB-CHMINACA", - "aliases": [], - "aliasesStr": "", - "summary": "A synthetic cannabinoid related to AB-FUBINACA which has had some mild popularity. There have been reports of death in overdose, similar to AB-FUBINACA and it has a low threshold dose. Exercise caution.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50-100\u00b5g" - }, - { - "name": "Common", - "value": "100-250\u00b5g" - }, - { - "name": "Strong", - "value": "250-400\u00b5g" - }, - { - "name": "Heavy", - "value": "400\u00b5g+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-80 minutes" - }, - { - "name": "Duration", - "value": "5-12 hours" - }, - { - "name": "After effects", - "value": "5-12 hours" - } - ] - }, - { - "name": "Vaporized", - "duration": [ - { - "name": "Onset", - "value": "1-5 minutes" - }, - { - "name": "Duration", - "value": "1-2 hours" - }, - { - "name": "After effects", - "value": "2-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/AB-FUBINACA", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_ABFUBINACA.shtml", - "name": "AB-FUBINACA", - "aliases": [ - "ab-fub", - "ab-fubi" - ], - "aliasesStr": "ab-fub,ab-fubi", - "summary": "Arguably the most common synthetic cannabinoid, AB-FUBINACA was originally developed by Pfizer as an analgesic, but has since abandoned for medical use. It has since found a following in the RC community, however it's extremely high potency and inclusion in synthetic blends makes it dangerous, and it has killed in overdose. Exercise caution.", - "reagents": null, - "classes": { - "chemical": [ - "Indazolecarboxamide" - ], - "psychoactive": [ - "Cannabinoid" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "cannabinoids" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "< 1 mg" - }, - { - "name": "Light", - "value": "1 - 2 mg" - }, - { - "name": "Common", - "value": "2 - 3 mg" - }, - { - "name": "Strong", - "value": "3 - 5 mg" - }, - { - "name": "Heavy", - "value": "5 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1 - 2 hours" - }, - { - "name": "Onset", - "value": "0 - 20 minutes" - }, - { - "name": "Peak", - "value": "30 - 60 minutes" - }, - { - "name": "Offset", - "value": "10 - 20 minutes" - }, - { - "name": "After effects", - "value": "15 - 30 minutes" - } - ] - }, - { - "name": "Vaporized", - "dosage": [ - { - "name": "Light", - "value": "0.25-0.5mg" - }, - { - "name": "Common", - "value": "0.5-1.5mg" - }, - { - "name": "Strong", - "value": "1.5-3mg" - }, - { - "name": "Heavy", - "value": "3+mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-5 minutes" - }, - { - "name": "Duration", - "value": "1-2 hours" - }, - { - "name": "After effects", - "value": "1-2 hours" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "0.25-0.5mg" - }, - { - "name": "Common", - "value": "0.5-1.5mg" - }, - { - "name": "Strong", - "value": "1.5-3mg" - }, - { - "name": "Heavy", - "value": "3+mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-240 minutes" - }, - { - "name": "Duration", - "value": "5-15 hours" - }, - { - "name": "After effects", - "value": "2-10 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/acetildenafil", - "experiencesUrl": null, - "name": "Acetildenafil", - "aliases": [], - "aliasesStr": "", - "summary": "An RC analogue of sildenafil (viagra) often missold as a hidden ingredient in many 'natural' sexual potency blends and supplements.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "5-15mg" - }, - { - "name": "Common", - "value": "15-30mg" - }, - { - "name": "Strong", - "value": "30-40mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-45 minutes" - }, - { - "name": "Duration", - "value": "3-7 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Acetylfentanyl", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Acetylfentanyl.shtml", - "name": "Acetylfentanyl", - "aliases": [ - "a-f", - "acetyl-fentanyl" - ], - "aliasesStr": "a-f,acetyl-fentanyl", - "summary": "Acetyl-Fentanyl is an opioid analgesic substance that is an analogue of Fentanyl. It's potency is roughly ~6.67 times that of Morphine. Making it ~15 times less potent than its parent compound Fentanyl.", - "reagents": null, - "classes": { - "chemical": [ - "Anilidopiperidine" - ], - "psychoactive": [ - "Opioids" - ] - }, - "toxicity": [ - "potentially fatal at heavy dosages", - "potentially lethal when mixed with depressants like alcohol or benzodiazepines", - "unintentionally spilling a very small amount of acetylfentanyl on one's skin could result in a fatal overdose." - ], - "addictionPotential": "extremely addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "opioids" - ], - "roas": [ - { - "name": "Sublingual", - "dosage": [ - { - "name": "Threshold", - "value": "2 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 15 mg" - }, - { - "name": "Strong", - "value": "15 - 20 mg" - }, - { - "name": "Heavy", - "value": "20 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1 - 4 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "2 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 15 mg" - }, - { - "name": "Strong", - "value": "15 - 20 mg" - }, - { - "name": "Heavy", - "value": "20 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 4 hours" - }, - { - "name": "Onset", - "value": "7 - 10 minutes" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "1-3mg" - }, - { - "name": "Common", - "value": "3-5mg" - }, - { - "name": "Strong", - "value": "5-7mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-20 minutes" - }, - { - "name": "Duration", - "value": "1-4 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/acryl-fentanyl", - "experiencesUrl": null, - "name": "Acrylfentanyl", - "aliases": [], - "aliasesStr": "", - "summary": "A rare opioid and fentanyl analogue (not to be confused with acetyl-fentanyl), this drug is a powerful and potent analgesic. Little reliable information exists, even for basic usage such as dosage. Exercise extreme caution. Overdose may result in respiratory depression. Do not mix with depressants or stimulants. Potentially neurotoxic and carcinogenic.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Light:", - "dosage": [ - { - "name": "Light", - "value": "5-12.5ug" - }, - { - "name": "Common", - "value": "12.5-25ug" - }, - { - "name": "Strong", - "value": "25.47.5ug+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-45 minutes" - }, - { - "name": "Duration", - "value": "3-5 hours" - }, - { - "name": "After effects", - "value": "1-16 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Amphetamine", - "experiencesUrl": null, - "name": "Adderall", - "aliases": [ - "adderal", - "aderal", - "aderall", - "amphetamine", - "d-amph", - "d-amphetamine", - "pep", - "speed" - ], - "aliasesStr": "adderal,aderal,aderall,amphetamine,d-amph,d-amphetamine,pep,speed", - "summary": "A mixture of 75% dextroamphetamine and 25% levoamphetamine. Commonly used to treat obesity, narcolepsy and ADHD. It is also used widely either as a recreational stimulant or study-aid, particularly in the USA where it is frequently prescribed.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "has high abuse potential and can cause psychological dependence with chronic use", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "7.5 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 40 mg" - }, - { - "name": "Strong", - "value": "40 - 70 mg" - }, - { - "name": "Heavy", - "value": "70 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 8 hours" - }, - { - "name": "Onset", - "value": "30 - 45 minutes" - }, - { - "name": "Come up", - "value": "30 - 135 minutes" - }, - { - "name": "Peak", - "value": "2.5 - 4 hours" - }, - { - "name": "Offset", - "value": "2 - 3 hours" - }, - { - "name": "After effects", - "value": "3 - 6 hours" - } - ], - "bioavailability": "75%+" - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "4 mg" - }, - { - "name": "Light", - "value": "6 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 30 mg" - }, - { - "name": "Strong", - "value": "30 - 50 mg" - }, - { - "name": "Heavy", - "value": "50 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 6 hours" - }, - { - "name": "Onset", - "value": "1 - 5 minutes" - }, - { - "name": "Come up", - "value": "30 - 90 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "1.5 - 3 hours" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - }, - { - "name": "Intravenous", - "dosage": [ - { - "name": "Threshold", - "value": "4 mg" - }, - { - "name": "Light", - "value": "6 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 30 mg" - }, - { - "name": "Strong", - "value": "30 - 50 mg" - }, - { - "name": "Heavy", - "value": "50 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 6 hours" - }, - { - "name": "Onset", - "value": "2 - 10 seconds" - }, - { - "name": "Come up", - "value": "2 - 10 seconds" - }, - { - "name": "Peak", - "value": "2 - 4 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - } - ] - }, - { - "name": "Oral-IR", - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - }, - { - "name": "Oral-XR", - "duration": [ - { - "name": "Onset", - "value": "20-60 minutes" - }, - { - "name": "Duration", - "value": "6-12 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - }, - { - "name": "Insufflated-XR", - "duration": [ - { - "name": "Onset", - "value": "10-45 minutes" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - }, - { - "name": "Insufflated-IR", - "duration": [ - { - "name": "Onset", - "value": "0-10 minutes" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/adinazolam", - "experiencesUrl": null, - "name": "Adinazolam", - "aliases": [ - "deracyn" - ], - "aliasesStr": "deracyn", - "summary": "Benzodiazepine derivative that has some antidepressant properties. Never FDA approved, yet however has been sold as a research chemical.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "5-15mg" - }, - { - "name": "Common", - "value": "15-30mg" - }, - { - "name": "Strong", - "value": "30-50mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-25 minutes" - }, - { - "name": "Duration", - "value": "2-5 hours" - }, - { - "name": "After effects", - "value": "1-16 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Adrafinil", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Adrafinil.shtml", - "name": "Adrafinil", - "aliases": [ - "olmifon" - ], - "aliasesStr": "olmifon", - "summary": "A prodrug to modafinil, this compound is often used to increase wakefulness and alertness. Due to hepatic metabolism it has a slower onset than modafinil and may cause liver damage in excess. Some users have reported acne as an adverse effect. Unregulated in the US.", - "reagents": null, - "classes": { - "chemical": null, - "psychoactive": [ - "Nootropic" - ] - }, - "toxicity": null, - "addictionPotential": "not addictive with a low potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "benzhydryl", - "nootropic|nootropics" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "100 mg" - }, - { - "name": "Light", - "value": "150 - 250 mg" - }, - { - "name": "Common", - "value": "250 - 400 mg" - }, - { - "name": "Strong", - "value": "400 - 600 mg" - }, - { - "name": "Heavy", - "value": "600 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 12 hours" - }, - { - "name": "Onset", - "value": "1 - 2 hours" - }, - { - "name": "Come up", - "value": "45 - 60 minutes" - }, - { - "name": "Peak", - "value": "4.5 - 6 hours" - }, - { - "name": "Offset", - "value": "1 - 3 hours" - }, - { - "name": "After effects", - "value": "2 - 6 hours" - } - ], - "bioavailability": "75-80%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/aet", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_AET.shtml", - "name": "\u03b1ET", - "aliases": [ - "a-et", - "a-ethyltryptamine", - "alpha-ethyl-tryptamine" - ], - "aliasesStr": "a-et,a-ethyltryptamine,alpha-ethyl-tryptamine", - "summary": "A quite rare substance of the tryptamine class, was first made by Upjohn as an antidepressant. Please use extreme caution if you get the pleasure of trying this drug.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "80-100mg" - }, - { - "name": "Common", - "value": "100-125mg" - }, - { - "name": "Strong", - "value": "125-150mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "60-120 minutes" - }, - { - "name": "Duration", - "value": "5-10 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/afloqualone", - "experiencesUrl": null, - "name": "Afloqualone", - "aliases": [], - "aliasesStr": "", - "summary": "A rare analogue of methaqualone, a sedative, intoxicating drug. Similar effects to benzodiazepines, barbiturates and alcohol. Never widely used due to photosensitivity and skin irritation issues, though it has seem some popularity in Japan.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "75-100mg" - }, - { - "name": "Strong", - "value": "100-200mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "60 minutes" - }, - { - "name": "Duration", - "value": "3-5 hours" - }, - { - "name": "After effects", - "value": "1-3 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/ah-7921", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_AH7921.shtml", - "name": "AH-7921", - "aliases": [ - "ah7921" - ], - "aliasesStr": "ah7921", - "summary": "Opioid analgesic that is selective for the \u03bc-opioid receptor. It has around 80% the potency of Morphine when taken orally.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-25mg" - }, - { - "name": "Strong", - "value": "25mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "6-8 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - }, - { - "name": "Vaporized", - "duration": [ - { - "name": "Onset", - "value": "2-10 minutes" - }, - { - "name": "Duration", - "value": "3-4 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/AL-LAD", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_ALLAD.shtml", - "name": "AL-LAD", - "aliases": [ - "aladdin", - "allad" - ], - "aliasesStr": "aladdin,allad", - "summary": "AL-LAD is a hallucinogenic drug, lysergamide and an analogue of LSD. It is reported as having some subtle experiential differences to LSD (such as increased visuals), and also appears to be slightly shorter lasting. AL-LAD doses are similar to those of LSD, depending on purity. Its availability on the Internet since 2013 has lead to strong popularity among the drug community.", - "reagents": null, - "classes": { - "chemical": [ - "Lysergamides" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown", - "extremely low toxicity" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "5-7 days", - "zero": "14 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "20 \u00b5g" - }, - { - "name": "Light", - "value": "50 - 100 \u00b5g" - }, - { - "name": "Common", - "value": "100 - 225 \u00b5g" - }, - { - "name": "Strong", - "value": "225 - 350 \u00b5g" - }, - { - "name": "Heavy", - "value": "350 \u00b5g +" - } - ], - "duration": [ - { - "name": "Total", - "value": "7 - 10 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "2.5 - 5 hours" - }, - { - "name": "Offset", - "value": "2 - 3 hours" - }, - { - "name": "After effects", - "value": "2 - 18 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Alcohol", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Alcohol.shtml", - "name": "Alcohol", - "aliases": [ - "beer", - "booze", - "ethanol", - "etoh", - "hooch", - "juice", - "liquor", - "moonshine", - "sauce" - ], - "aliasesStr": "beer,booze,ethanol,etoh,hooch,juice,liquor,moonshine,sauce", - "summary": "Alcohol is a CNS depressant that acts through the GABA\u2090 receptor, and is one of the most common strong psychoactives used by humans. It has a long history of use and its intoxicating effects are well-studied and documented. It remains legal in most parts of the world.", - "reagents": null, - "classes": { - "chemical": [ - "Alcohol" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "Death from ethanol consumption is possible when blood alcohol levels reach 0.4%" - ], - "addictionPotential": "extremely addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "GABA", - "depressants" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "13 mL EtOH (10 g)" - }, - { - "name": "Light", - "value": "25 - 38 mL EtOH (20-30 g)" - }, - { - "name": "Common", - "value": "38 - 64 mL EtOH (30-50 g)" - }, - { - "name": "Strong", - "value": "64 - 76 mL EtOH (50-60 g)" - }, - { - "name": "Heavy", - "value": "76+ mL EtOH (60+ g)" - } - ], - "duration": [ - { - "name": "Total", - "value": "1.5 - 3 hours" - }, - { - "name": "Onset", - "value": "2 - 5 minutes" - }, - { - "name": "Peak", - "value": "30 - 90 minutes" - }, - { - "name": "Offset", - "value": "45 - 60 minutes" - }, - { - "name": "After effects", - "value": "6 - 48 hours" - } - ] - } - ], - "interactions": [ - { - "status": "Low Risk & Decrease", - "note": "Both these classes of compound can interact unpredictably. Caution should be exercised.", - "name": "2C-T-x" - }, - { - "status": "Low Risk & Decrease", - "name": "2C-x" - }, - { - "status": "Low Risk & Decrease", - "name": "5-MeO-xxT" - }, - { - "status": "Caution", - "note": "Drinking on stimulants is risky because the sedative effects of the alcohol are reduced, and these are what the body uses to gauge drunkenness. This typically leads to excessive drinking with greatly reduced inhibitions, high risk of liver damage and increased dehydration. They will also allow you to drink past a point where you might normally pass out, increasing the risk. If you do decide to do this then you should set a limit of how much you will drink each hour and stick to it, bearing in mind that you will feel the alcohol and the stimulant less. Extended release formulations may severely impede sleep, further worsening the hangover.", - "name": "Amphetamines" - }, - { - "status": "Dangerous", - "note": "Ethanol ingestion may potentiate the CNS effects of many benzodiazepines. The two substances potentiate each other strongly and unpredictably, very rapidly leading to unconsciousness. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Blacking out and memory loss is almost certain.", - "name": "Benzodiazepines" - }, - { - "status": "Low Risk & No Synergy", - "name": "Caffeine" - }, - { - "status": "Low Risk & Synergy", - "note": "In excess, this combination can cause nausea.", - "name": "Cannabis" - }, - { - "status": "Unsafe", - "note": "Drinking on stimulants is risky because the sedative effects of the alcohol are reduced, and these are what the body uses to gauge drunkenness. This typically leads to excessive drinking with greatly reduced inhibitions, high risk of liver damage and increased dehydration. They will also allow you to drink past a point where you might normally pass out, increasing the risk. If you do decide to do this then you should set a limit of how much you will drink each hour and stick to it, bearing in mind that you will feel the alcohol less. Cocaine is potentiated somewhat by alcohol because of the formation of cocaethylene.", - "name": "Cocaine" - }, - { - "status": "Low Risk & Decrease", - "name": "DMT" - }, - { - "status": "Low Risk & Decrease", - "note": "Drinking on stimulants is risky because the sedative effects of the alcohol are reduced, and these are what the body uses to gauge drunkenness. This typically leads to excessive drinking with greatly reduced inhibitions, high risk of liver damage and increased dehydration. They will also allow you to drink past a point where you might normally pass out, increasing the risk.", - "name": "DOx" - }, - { - "status": "Dangerous", - "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place affected patients in the recovery position to prevent vomit aspiration from excess. Additionally CNS depression can lead to difficulty breathing. Avoid on anything higher than 1st plateau.", - "name": "DXM" - }, - { - "status": "Dangerous", - "note": "Even in very low doses this combination rapidly leads to memory loss, severe ataxia and unconsciousness. There is a high risk of vomit aspiration while unconscious.", - "name": "GHB/GBL" - }, - { - "status": "Dangerous", - "note": "Both substances cause ataxia and bring a very high risk of vomiting and unconsciousness. If the user falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position.", - "name": "Ketamine" - }, - { - "status": "Low Risk & Decrease", - "name": "LSD" - }, - { - "status": "Unsafe", - "note": "Tyramine found in many alcoholic beverages can have dangerous reactions with MAOIs, causing an increase in blood pressure.", - "name": "MAOIs" - }, - { - "status": "Caution", - "note": "Both MDMA and alcohol cause dehydration. Approach this combination with caution, moderation and sufficient hydration. More than a small amount of alcohol will dull the euphoria of MDMA", - "name": "MDMA" - }, - { - "status": "Dangerous", - "note": "There is a high risk of memory loss, vomiting and severe ataxia from this combination.", - "name": "MXE" - }, - { - "status": "Low Risk & Decrease", - "name": "Mescaline" - }, - { - "status": "Low Risk & Decrease", - "name": "Mushrooms" - }, - { - "status": "Low Risk & Decrease", - "name": "NBOMes" - }, - { - "status": "Caution", - "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely.", - "name": "Nitrous" - }, - { - "status": "Dangerous", - "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place affected patients in the recovery position to prevent vomit aspiration from excess. Memory blackouts are likely", - "name": "Opioids" - }, - { - "status": "Unsafe", - "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner.", - "name": "PCP" - }, - { - "status": "Caution", - "note": "Alcohol may potentiate some of the pharmacologic effects of CNS-active agents. Use in combination may result in additive central nervous system depression and/or impairment of judgment, thinking, and psychomotor skills.", - "name": "SSRIs" - }, - { - "status": "Dangerous", - "note": "Heavy CNS depressants, risk of seizures. Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place affected patients in the recovery position to prevent vomit aspiration from excess. Memory blackouts are likely.", - "name": "Tramadol" - }, - { - "status": "Caution", - "note": "aMT has a broad mechanism of action in the brain and so does alcohol so the combination can be unpredictable", - "name": "aMT" - } - ] - }, - { - "url": "https://psychonautwiki.org/wiki/ALD-52", - "experiencesUrl": null, - "name": "ALD-52", - "aliases": [ - "1-acetyl-lsd", - "1a-lad", - "1a-lsd", - "1alsd", - "ald52", - "orange sunshine" - ], - "aliasesStr": "1-acetyl-lsd,1a-lad,1a-lsd,1alsd,ald52,orange sunshine", - "summary": "ALD-52, or N-acetyl-LSD is a less common chemical analogue of LSD, first synthesised by Albert Hoffman. It was famously implicated in the 'Orange Sunshine' trial. A psychedelic lysergamide, this compound exhibits similar properties to LSD, and is thought to be a pro-drug for LSD.", - "reagents": null, - "classes": { - "chemical": [ - "Lysergamides" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown", - "extremely low toxicity" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "5-7 days", - "zero": "14 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "30 \u00b5g" - }, - { - "name": "Light", - "value": "30 - 100 \u00b5g" - }, - { - "name": "Common", - "value": "100 - 175 \u00b5g" - }, - { - "name": "Strong", - "value": "175 - 325 \u00b5g" - }, - { - "name": "Heavy", - "value": "325 \u00b5g +" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 14 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - }, - { - "name": "Come up", - "value": "1 - 2 hours" - }, - { - "name": "Peak", - "value": "3 - 5 hours" - }, - { - "name": "Offset", - "value": "3 - 5 hours" - }, - { - "name": "After effects", - "value": "4 - 24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/aleph", - "experiencesUrl": null, - "name": "Aleph", - "aliases": [ - "dot", - "para-dot" - ], - "aliasesStr": "dot,para-dot", - "summary": "The first sulphur-containing Phenethylamine to have been evaluated for CNS activity for Stimulant or Psychedelic purposes.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "2-4mg" - }, - { - "name": "Common", - "value": "4-6mg" - }, - { - "name": "Strong", - "value": "6-12mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-90 minutes" - }, - { - "name": "Duration", - "value": "5-10 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/aleph-2", - "experiencesUrl": null, - "name": "ALEPH-2", - "aliases": [ - "aleph2", - "dot-2", - "dot2" - ], - "aliasesStr": "aleph2,dot-2,dot2", - "summary": "A very rare Phenethylamine, also known as DOT-2, it is the DOx analogue of 2C-T-2. Very little human use recorded. Described as being quite long and highly visual. Likely to be potent, with a reported threshold dose of 3mg.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/allobarbital", - "experiencesUrl": null, - "name": "Allobarbital", - "aliases": [], - "aliasesStr": "", - "summary": "Is a barbiturate that was first made in 1912. It was primilary used as an anticonvulsant. Yet it has pretty much been outclassed by a newer generation of safer ones. Still in use in Poland.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "500-1000mg" - }, - { - "name": "Common", - "value": "1000-1500mg" - }, - { - "name": "Strong", - "value": "1500-2000mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "6-10 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Allylescaline", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Allylescaline.shtml", - "name": "Allylescaline", - "aliases": [ - "al" - ], - "aliasesStr": "al", - "summary": "Mescaline analogue with a much lower dose, that seems to rely heavily on colours.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "15 mg" - }, - { - "name": "Light", - "value": "20 - 30 mg" - }, - { - "name": "Common", - "value": "30 - 40 mg" - }, - { - "name": "Strong", - "value": "40 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 12 hours" - }, - { - "name": "Onset", - "value": "45 - 240 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Alpha-GPC", - "experiencesUrl": null, - "name": "Alpha-GPC", - "aliases": [ - "choline alfoscerate", - "l-alpha glycerylphosphorylcholine" - ], - "aliasesStr": "choline alfoscerate,l-alpha glycerylphosphorylcholine", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Choline derivative" - ], - "psychoactive": [ - "Nootropic" - ] - }, - "toxicity": [ - "extremely low toxicity" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "after prolonged and repeated usage", - "half": "7 days", - "zero": "14 days" - }, - "crossTolerances": [], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "50 mg" - }, - { - "name": "Light", - "value": "100 - 300 mg" - }, - { - "name": "Common", - "value": "300 - 500 mg" - }, - { - "name": "Strong", - "value": "500 - 1000 mg" - }, - { - "name": "Heavy", - "value": "1000 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours" - }, - { - "name": "Onset", - "value": "45 - 75 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Alprazolam", - "experiencesUrl": null, - "name": "Alprazolam", - "aliases": [ - "ksalol", - "niravam", - "prazolam", - "xanax" - ], - "aliasesStr": "ksalol,niravam,prazolam,xanax", - "summary": "An extremely common benzodiazepine better known as Xanax, frequently prescribed for the treatment of anxiety and panic disorders. Alprazolam is short-lasting and primarily anxiolytic, though also possesses hypnotic properties. At high doses amnesia and loss of inhibition are common. Do not mix with other depressants.", - "reagents": null, - "classes": { - "chemical": [ - "Benzodiazepines" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol or opioids" - ], - "addictionPotential": "extremely physically and psychologically addictive", - "tolerance": { - "full": "within a couple of days of continuous use", - "half": null, - "zero": "7-14 days" - }, - "crossTolerances": [ - "benzodiazepines" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.10 mg" - }, - { - "name": "Light", - "value": "0.25 - 0.5 mg" - }, - { - "name": "Common", - "value": "0.5 - 1.5 mg" - }, - { - "name": "Strong", - "value": "1.5 - 2 mg" - }, - { - "name": "Heavy", - "value": "2 - 3 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 8 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "2 - 6 hours" - }, - { - "name": "After effects", - "value": "6 - 24 hours" - } - ], - "bioavailability": "80-90%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/am-2201", - "experiencesUrl": null, - "name": "AM-2201", - "aliases": [ - "am2201" - ], - "aliasesStr": "am2201", - "summary": "A synthetic cannabanoid that is very potent. Active doses start at around 250ug's. Please be cautious with this substance. It has also been noted that it can cause convulsions.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Vapourized", - "dosage": [ - { - "name": "Light", - "value": "250-500ug" - }, - { - "name": "Common", - "value": "500-1000ug" - }, - { - "name": "Strong", - "value": "1000-2000ug" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-3 minutes" - }, - { - "name": "Duration", - "value": "30-90 minutes" - }, - { - "name": "After effects", - "value": "15-60 minutes" - } - ] - }, - { - "name": "Oral", - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "60-180 minutes" - }, - { - "name": "After effects", - "value": "15-60 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/amfecloral", - "experiencesUrl": null, - "name": "Amfecloral", - "aliases": [], - "aliasesStr": "", - "summary": "Is a stimulant drug of the Phenethylamine and Amphetamine class. It was used as an appetite suppressant, yet is no longer marketed. It's also interesting that it acts as a prodrug to both Amphetamine and Chloral Hydrate.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/amfonelicacid", - "experiencesUrl": null, - "name": "Amfonelic acid", - "aliases": [ - "aa", - "afa", - "win25978" - ], - "aliasesStr": "aa,afa,win25978", - "summary": "A dopaminergic stimulant discovered by Sterling-Winthrop accidentally while developing antibiotics. Discontinued due to undesirable stimulant effects, it has had some popularity as a recreational drug.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "2-4mg" - }, - { - "name": "Common", - "value": "4-10mg" - }, - { - "name": "Strong", - "value": "10mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-45 minutes" - }, - { - "name": "Duration", - "value": "8-12 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "5-15 minutes" - }, - { - "name": "Duration", - "value": "6-10 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/aminorex", - "experiencesUrl": null, - "name": "Aminorex", - "aliases": [], - "aliasesStr": "", - "summary": "Is an anorectic stimulant drug that was taken of the market after it was found to cause pulmonary hypertension. Potency wise it has been found to be roughly 2.5 times more potent than dextroamphetamine.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "none", - "dosage": [ - { - "name": "Light", - "value": "1-3mg" - }, - { - "name": "Common", - "value": "3-10mg" - }, - { - "name": "Strong", - "value": "10-25mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/aminotadalafil", - "experiencesUrl": null, - "name": "Aminotadalafil", - "aliases": [], - "aliasesStr": "", - "summary": "An analogue of tadafinil, better known as Cialis (Viagra). Infamous for being missold in the 'Alpha Male' sexual enhancement supplement.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-20mg" - }, - { - "name": "Strong", - "value": "20-30mg" - } - ], - "duration": [ - { - "name": "Duration", - "value": "4-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/amobarbital", - "experiencesUrl": null, - "name": "Amobarbital", - "aliases": [], - "aliasesStr": "", - "summary": "A sedative and hypnotic barbiturate first discovered in 1923. Formerly widely used recreationally and medically, barbiturates have declined in popularity with the appearance of benzodiazepines and other drugs with less serious consequences in overdose.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "50-75mg" - }, - { - "name": "Strong", - "value": "75-150mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "5-9 hours" - }, - { - "name": "After effects", - "value": "2-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/amphetamine", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Amphetamines.shtml", - "name": "Amphetamine", - "aliases": [ - "amfetamine", - "amph", - "amphetamin", - "amphetamines", - "hearts", - "pep", - "pepp", - "speed" - ], - "aliasesStr": "amfetamine,amph,amphetamin,amphetamines,hearts,pep,pepp,speed", - "summary": "A very popular CNS stimulant available on prescription and black markets. Recreational in high doses, producing mild euphoria and an abundance of energy. Popular in eastern europe and the US.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "15-25mg" - }, - { - "name": "Common", - "value": "25-40mg" - }, - { - "name": "Strong", - "value": "40-75mg" - }, - { - "name": "Heavy", - "value": "75-100mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "10-20mg" - }, - { - "name": "Common", - "value": "20-50mg" - }, - { - "name": "Strong", - "value": "50-70mg" - }, - { - "name": "Heavy", - "value": "70-90mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/%CE%91MT", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_AMT.shtml", - "name": "\u0391MT", - "aliases": [ - "alpha-methyltryptamine", - "alphamethyltryptamine", - "amt", - "indopan", - "monase" - ], - "aliasesStr": "alpha-methyltryptamine,alphamethyltryptamine,amt,indopan,monase", - "summary": "A long-acting psychedelic-empathogen with a broad method of action in the brain. Not suitable for combination with many other substances. Used as an anti-depressant in the Soviet Union, but later found popularity in the RC scene, mainly in the UK.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics", - "Entactogens" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "moderately habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "14 days", - "zero": "1 month" - }, - "crossTolerances": [ - "psychedelics" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 25 mg" - }, - { - "name": "Common", - "value": "25 - 40 mg" - }, - { - "name": "Strong", - "value": "40 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 - 80 mg" - } - ], - "duration": [ - { - "name": "Total", - "value": "13 - 15 hours" - }, - { - "name": "Onset", - "value": "60 - 180 minutes" - }, - { - "name": "Peak", - "value": "4 - 6 hours" - }, - { - "name": "After effects", - "value": "1 - 5 hours" - } - ] - } - ], - "interactions": [ - { - "status": "Dangerous", - "name": "2C-T-x" - }, - { - "status": "Dangerous", - "name": "2C-x" - }, - { - "status": "Dangerous", - "name": "5-MeO-xxT" - }, - { - "status": "Caution", - "note": "aMT has a broad mechanism of action in the brain and so does alcohol so the combination can be unpredictable", - "name": "Alcohol" - }, - { - "status": "Dangerous", - "name": "Amphetamines" - }, - { - "status": "Low Risk & Decrease", - "name": "Benzodiazepines" - }, - { - "status": "Caution", - "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.", - "name": "Caffeine" - }, - { - "status": "Caution", - "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics. Small amounts can reduce nausea with aMT but take care.", - "name": "Cannabis" - }, - { - "status": "Dangerous", - "name": "Cocaine" - }, - { - "status": "Low Risk & Synergy", - "name": "DMT" - }, - { - "status": "Dangerous", - "name": "DOx" - }, - { - "status": "Dangerous", - "name": "DXM" - }, - { - "status": "Low Risk & Decrease", - "name": "GHB/GBL" - }, - { - "status": "Low Risk & Synergy", - "name": "Ketamine" - }, - { - "status": "Low Risk & Synergy", - "name": "LSD" - }, - { - "status": "Dangerous", - "note": "aMT is an MAOI on its own. Using enzyme inhibitors can greatly reduce predictability of effects.", - "name": "MAOIs" - }, - { - "status": "Dangerous", - "name": "MDMA" - }, - { - "status": "Dangerous", - "name": "MXE" - }, - { - "status": "Dangerous", - "name": "Mescaline" - }, - { - "status": "Low Risk & Synergy", - "name": "Mushrooms" - }, - { - "status": "Dangerous", - "name": "NBOMes" - }, - { - "status": "Low Risk & Synergy", - "name": "Nitrous" - }, - { - "status": "Low Risk & No Synergy", - "note": "No unexpected interactions", - "name": "Opioids" - }, - { - "status": "Dangerous", - "name": "PCP" - }, - { - "status": "Dangerous", - "name": "SSRIs" - }, - { - "status": "Dangerous", - "name": "Tramadol" - } - ] - }, - { - "url": "https://psychonautwiki.org/wiki/Aniracetam", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Aniracetam.shtml", - "name": "Aniracetam", - "aliases": [], - "aliasesStr": "", - "summary": "An anxiolytic nootropic which modulates the AMPA receptor. Significantly more potent than racetam. May have positive effects on memory and cognition. Little recreational value. Sold in Europe as a prescription drug, but not approved by the FDA in the US.", - "reagents": null, - "classes": { - "chemical": [ - "Racetams" - ], - "psychoactive": [ - "Nootropic" - ] - }, - "toxicity": null, - "addictionPotential": "non-addictive with a low potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "racetam", - "nootropic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "350 mg" - }, - { - "name": "Light", - "value": "500 - 1200 mg" - }, - { - "name": "Common", - "value": "1200 - 1800 mg" - }, - { - "name": "Strong", - "value": "1800 - 2400 mg" - }, - { - "name": "Heavy", - "value": "2400 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 5 hours" - }, - { - "name": "Onset", - "value": "45 - 90 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/apap", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Acetaminophen.shtml", - "name": "Paracetamol", - "aliases": [ - "acetaminophen", - "tylenol" - ], - "aliasesStr": "acetaminophen,tylenol", - "summary": "A common, over the counter, fever reducer and painkiller. It is mixed with many common opiates. Can cause liver damage and failure in higher doses. No recreational value.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Pain-relief", - "dosage": [ - { - "name": "Common", - "value": "200-400mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "60-60 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "1-2 hours" - } - ] - }, - { - "name": "Fever", - "dosage": [ - { - "name": "Common", - "value": "300-500mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "60-60 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "1-2 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/APICA", - "experiencesUrl": null, - "name": "APICA", - "aliases": [ - "2ne1", - "sdb-001" - ], - "aliasesStr": "2ne1,sdb-001", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Indole cannabinoid", - "Indolecarboxamide" - ], - "psychoactive": [ - "Cannabinoid" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "cannabinoids" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "< 0.5 mg" - }, - { - "name": "Light", - "value": "0.5 - 1.5 mg" - }, - { - "name": "Common", - "value": "1.5 - 2 mg" - }, - { - "name": "Strong", - "value": "2 - 4 mg" - }, - { - "name": "Heavy", - "value": "4 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "30 - 60 minutes" - }, - { - "name": "Onset", - "value": "0 - 20 seconds" - }, - { - "name": "Peak", - "value": "10 - 30 minutes" - }, - { - "name": "Offset", - "value": "5 - 10 minutes" - }, - { - "name": "After effects", - "value": "15 - 35 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Armodafinil", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Armodafinil.shtml", - "name": "Armodafinil", - "aliases": [ - "artvigil", - "neoresotyl", - "nuvigil", - "r-modawake", - "waklert" - ], - "aliasesStr": "artvigil,neoresotyl,nuvigil,r-modawake,waklert", - "summary": "The more potent of the two modafinil isomers, said to have a longer duration and lesser side effects. Sometimes prescribed for ADHD and daytime sleepiness.", - "reagents": null, - "classes": { - "chemical": [ - "Benzhydryl" - ], - "psychoactive": [ - "Eugeroics" - ] - }, - "toxicity": [ - "The median lethal dose at which 50% of participants die (LD50) from either armodafinil or modafinil for human beings has never been reached" - ], - "addictionPotential": "mildly addictive with a low potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "benzhydryl", - "nootropic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "20 mg" - }, - { - "name": "Light", - "value": "40 - 100 mg" - }, - { - "name": "Common", - "value": "100 - 200 mg" - }, - { - "name": "Strong", - "value": "200 - 300 mg" - }, - { - "name": "Heavy", - "value": "300 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 15 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "1 - 2.5 hours" - }, - { - "name": "Peak", - "value": "4 - 7 hours" - }, - { - "name": "Offset", - "value": "2 - 5 hours" - }, - { - "name": "After effects", - "value": "2 - 12 hours" - } - ], - "bioavailability": "97.78%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/ashwagandha", - "experiencesUrl": null, - "name": "Ashwagandha", - "aliases": [], - "aliasesStr": "", - "summary": "Is an Adaptogen. It is commonly used for its ability to prevent anxiety. It also is helpful in relieving insomnia. It's name means \"Smell of Horse\" due to its smell and the traditional belief that ingesting the this herb will give you the strength and virility of a horse.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "300-500" - }, - { - "name": "Common", - "value": "500-1000" - }, - { - "name": "Strong", - "value": "1000-2000" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-60 minutes" - }, - { - "name": "Duration", - "value": "6-12 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/aspirin", - "experiencesUrl": null, - "name": "Aspirin", - "aliases": [ - "acetylsalicylate" - ], - "aliasesStr": "acetylsalicylate", - "summary": "A widely used anti-inflammatory and blood-thinner produced by acetylation of the naturally occurring salicyclic acid. Part of the nonsteroidal antiinflammatory class of drugs, a cyclooxygenase inhibitor. Very common over-the-counter pain reliever and fever reducer. Also used in smaller doses to lower risk of heart attack.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "50mg" - }, - { - "name": "Light", - "value": "75mg-81mg" - }, - { - "name": "Common", - "value": "325mg-650mg" - }, - { - "name": "Heavy", - "value": "1.6g" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-90 minutes" - }, - { - "name": "Duration", - "value": "Dose-Dependent" - } - ], - "bioavailability": "55.8-74%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/atomoxetine", - "experiencesUrl": null, - "name": "Atomoxetine", - "aliases": [ - "strattera" - ], - "aliasesStr": "strattera", - "summary": "A NRI that is used for ADHD. With a quite odd pharmacological background.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "10-18mg" - }, - { - "name": "Common", - "value": "18-40mg" - }, - { - "name": "Strong", - "value": "40-80mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "8-12 hours" - }, - { - "name": "After effects", - "value": "2-24 hours" - } - ], - "bioavailability": "63-94%" - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Ayahuasca", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Ayahuasca.shtml", - "name": "Ayahuasca", - "aliases": [ - "aya", - "caapi", - "cip\u00f3", - "hoasca", - "natem", - "pharmahuasca", - "shori", - "vegetal", - "yage", - "yag\u00e9", - "yaj\u00e9" - ], - "aliasesStr": "aya,caapi,cip\u00f3,hoasca,natem,pharmahuasca,shori,vegetal,yage,yag\u00e9,yaj\u00e9", - "summary": "A concoction made of two or more plants that contain at least an MAOI and DMT, the combination of which allows the DMT to work orally. Typically associated to south american cultures. Also, sometimes approximated synthetically by taking an external MAOI with extracted DMT. Causes intense, spiritually orientated hallucinogenic experiences.", - "reagents": null, - "classes": { - "chemical": null, - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "LD50 is around 50 times a regular dose" - ], - "addictionPotential": "not habit-forming", - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": null, - "duration": [ - { - "name": "Total", - "value": "5 - 10 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "1 - 8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Baclofen", - "experiencesUrl": null, - "name": "Baclofen", - "aliases": [ - "gablofen", - "lioresal" - ], - "aliasesStr": "gablofen,lioresal", - "summary": "Also known as Lioresal, Baclofen is a GABAb receptor agonist and central nervous system depressant used to treat spasticity, and holds promise as a treatment for alcoholism. It exhibits mild intoxicating effects similar to phenibut or pregabalin.", - "reagents": null, - "classes": { - "chemical": [ - "Butyric acid" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol, benzodiazepines or opioids" - ], - "addictionPotential": "moderately physically and psychologically addictive", - "tolerance": { - "full": "within a couple of days of continuous use", - "half": null, - "zero": "7 - 14 days" - }, - "crossTolerances": [ - "GABA" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 50 mg" - }, - { - "name": "Strong", - "value": "50 - 100 mg" - }, - { - "name": "Heavy", - "value": "100 mg +", - "note": "Warning: Risk of blackout above 125 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 14 hours" - }, - { - "name": "Onset", - "value": "30 - 75 minutes" - }, - { - "name": "Peak", - "value": "60 - 90 minutes" - }, - { - "name": "After effects", - "value": "6 - 12 hours" - } - ], - "bioavailability": "74\u00a0%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/barbital", - "experiencesUrl": null, - "name": "Barbital", - "aliases": [], - "aliasesStr": "", - "summary": "The first commercially available barbiturate. Was used commonly as a sleeping aid until the 1950s.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "650-970mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "6-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/bentazepam", - "experiencesUrl": null, - "name": "Bentazepam", - "aliases": [ - "thiadipone", - "tiadipona" - ], - "aliasesStr": "thiadipone,tiadipona", - "summary": "Thienodiazepine that is an effective anxiolyric. Liver damage among other nasty things have been reported.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Light:", - "dosage": [ - { - "name": "Light", - "value": "15-30mg" - }, - { - "name": "Common", - "value": "30-50mg" - }, - { - "name": "Strong", - "value": "50-75mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/benzodioxole-fentanyl", - "experiencesUrl": null, - "name": "BENZODIOXOLE-FENTANYL", - "aliases": [], - "aliasesStr": "", - "summary": "An analogue of Fentanyl that is not found in literature.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Benzydamine", - "experiencesUrl": null, - "name": "Benzydamine", - "aliases": [ - "tantum", - "tantum verde" - ], - "aliasesStr": "tantum,tantum verde", - "summary": "NSAID with local anesthetic and analgesic properties, similar to ibuprofen or naproxen. Sometimes abused in overdose with reported delirant and stimulant effects.", - "reagents": null, - "classes": { - "chemical": [ - "Indazole" - ], - "psychoactive": [ - "Deliriant", - "Stimulants" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.25 g" - }, - { - "name": "Light", - "value": "0.5 - 1 g" - }, - { - "name": "Common", - "value": "1 - 1.5 g" - }, - { - "name": "Strong", - "value": "1.5 - 2 g" - }, - { - "name": "Heavy", - "value": "2 g +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 8 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Peak", - "value": "3 - 6 hours" - }, - { - "name": "Offset", - "value": "3 - 8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/%CE%92k-2C-B", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_BK2CB.shtml", - "name": "\u0392k-2C-B", - "aliases": [ - "b-k-2-c-b", - "b-k-2cb", - "b-k2-c-b", - "b-k2-cb", - "b-k2cb", - "beta-keto 2c-b", - "bk-2-cb", - "bk-2c-b", - "bk-2cb", - "bk2cb" - ], - "aliasesStr": "b-k-2-c-b,b-k-2cb,b-k2-c-b,b-k2-cb,b-k2cb,beta-keto 2c-b,bk-2-cb,bk-2c-b,bk-2cb,bk2cb", - "summary": "A long-acting psychedelic and empathogen with unpredictable effectiveness. Roughly double the duration of 2c-b. Inactivated by high pH.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "50 mg" - }, - { - "name": "Light", - "value": "60 - 80 mg" - }, - { - "name": "Common", - "value": "80 - 100 mg" - }, - { - "name": "Strong", - "value": "100 - 150 mg" - }, - { - "name": "Heavy", - "value": "150 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 12 hours" - }, - { - "name": "Onset", - "value": "20 - 70 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/bk-2c-i", - "experiencesUrl": null, - "name": "\u03b2k-2C-I", - "aliases": [], - "aliasesStr": "", - "summary": "Novel psychedelic that is the Beta-Ketone derivative of 2C-I.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "100-120mg" - }, - { - "name": "Common", - "value": "120-180mg" - }, - { - "name": "Strong", - "value": "180-250mg" - }, - { - "name": "Heavy", - "value": "250mg+" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/bk-ivp", - "experiencesUrl": null, - "name": "\u03b2k-IVP", - "aliases": [], - "aliasesStr": "", - "summary": "The beta-ketone analogue of IVP, this is a rare RC stimulant in the same family as MDPV. Little is known but effects are probably similar to MDPV or more generally amphetamine or high dose caffeine.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "60-100mg" - }, - { - "name": "Common", - "value": "100-150mg" - }, - { - "name": "Strong", - "value": "150-200mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "Rapid." - }, - { - "name": "Duration", - "value": "1-3 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/bod", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_BOD.shtml", - "name": "BOD", - "aliases": [], - "aliasesStr": "", - "summary": "Beta-methoxy analogue of 2C-D, seems to be more \"mild\" than the likes of 2C-X and DOX compounds. Is 50/50 whether the body load is barely there, or overpowering the experience.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "12-15mg" - }, - { - "name": "Light", - "value": "15-20mg" - }, - { - "name": "Common", - "value": "20-30mg" - }, - { - "name": "Heavy", - "value": "30-40mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "60-120 minutes" - }, - { - "name": "Duration", - "value": "8-14 hours" - }, - { - "name": "After effects", - "value": "3-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/bromadol", - "experiencesUrl": null, - "name": "Bromadol", - "aliases": [ - "bdpc" - ], - "aliasesStr": "bdpc", - "summary": "A very potent opioid that has an arylcyclohexylamine structure. Intial studies estimated that it was ~10,000x Morphine in animal studies. However that value has since decreased to ~504 times the potency of morphine for the trans-isomer.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "5-15 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - } - ] - }, - { - "name": "Intramuscular", - "duration": [ - { - "name": "Onset", - "value": "1-5 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - } - ] - }, - { - "name": "Intravenous", - "duration": [ - { - "name": "Onset", - "value": "1-2 minutes" - }, - { - "name": "Duration", - "value": "1-3 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Bromantane", - "experiencesUrl": null, - "name": "Bromantane", - "aliases": [ - "bromantan", - "ladasten" - ], - "aliasesStr": "bromantan,ladasten", - "summary": "An unusual stimulant and anxiolytic drug with dopamine and serotonin reuptake inhibition properties. Infamously used as a doping agent in the 1996 Olympics. There are some concerns it may exacerbate the underlying causes of Alzheimer's disease.", - "reagents": null, - "classes": { - "chemical": [ - "Adamantanes" - ], - "psychoactive": [ - "Stimulants", - "Nootropic" - ] - }, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "< 10 mg" - }, - { - "name": "Light", - "value": "10 - 50 mg" - }, - { - "name": "Common", - "value": "50 - 100 mg" - }, - { - "name": "Strong", - "value": "100 - 200 mg" - }, - { - "name": "Heavy", - "value": "200 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 10 hours" - }, - { - "name": "Onset", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "2 - 4 hours" - } - ], - "bioavailability": "42%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/bromazepam", - "experiencesUrl": null, - "name": "Bromazepam", - "aliases": [ - "brazepam", - "lectopam", - "lexilium", - "lexotan", - "lexotanil" - ], - "aliasesStr": "brazepam,lectopam,lexilium,lexotan,lexotanil", - "summary": "A benzodiazepine drug with a medium-long duration, developed by Roche in the 1960s. Has primarily anxiolytic properties. May cause lowered inhibitions and amnesia in high doses.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "2.5-5mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Heavy", - "value": "10-15mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-20 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "1-16 hours" - } - ], - "bioavailability": "84%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/bromazolam", - "experiencesUrl": null, - "name": "Bromazolam", - "aliases": [ - "xli-268", - "xli268" - ], - "aliasesStr": "xli-268,xli268", - "summary": "A rather novel Benzodiazepine that is structurally quite close to Alprazolam.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "0.5-1mg" - }, - { - "name": "Common", - "value": "1-2mg" - }, - { - "name": "Strong", - "value": "2-4mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "5-8 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Bromo-DragonFLY", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_BromoDragonfly.shtml", - "name": "Bromo-DragonFLY", - "aliases": [ - "b-dfly", - "bdfly", - "bromo-d-fly", - "bromo-dragon-fly", - "dob-dragonfly", - "dragonfly" - ], - "aliasesStr": "b-dfly,bdfly,bromo-d-fly,bromo-dragon-fly,dob-dragonfly,dragonfly", - "summary": "A psychedelic phenethylamine and benzofuran that is very potent and has a long duration. Was briefly sold as \"2C-B-FLY\" in 2005/6 and has lead to multiple deaths.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted benzofurans", - "Substituted amphetamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "extreme vasoconstrictive effects", - "one can easily overdose if this substance is not measured correctly", - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "6 days", - "zero": "14 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "75 \u00b5g" - }, - { - "name": "Light", - "value": "100 - 300 \u00b5g" - }, - { - "name": "Common", - "value": "300 - 500 \u00b5g" - }, - { - "name": "Strong", - "value": "500 - 750 \u00b5g" - }, - { - "name": "Heavy", - "value": "750 \u00b5g +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1 - 4 days" - }, - { - "name": "Onset", - "value": "2 - 7 hours" - }, - { - "name": "Come up", - "value": "3 - 6 hours" - }, - { - "name": "Peak", - "value": "6 - 12 hours" - }, - { - "name": "Offset", - "value": "3 - 8 hours" - }, - { - "name": "After effects", - "value": "12 - 36 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/brotizolam", - "experiencesUrl": null, - "name": "Brotizolam", - "aliases": [ - "lendormin" - ], - "aliasesStr": "lendormin", - "summary": "Benzodiazepine analogue which is sedating, hypnotic and anxiolytic. It is available as prescription medicine in much of Europe, and is an extremely potent drug active at only 80ug. May cause amnesia and lowered inhibitions in overdose. Danger of respiratory depression when combined with other depressants. Short half life.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "80ug" - }, - { - "name": "Light", - "value": "100ug-200ug" - }, - { - "name": "Common", - "value": "200-400ug" - }, - { - "name": "Strong", - "value": "400ug-600ug+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Bufotenin", - "experiencesUrl": null, - "name": "Bufotenin", - "aliases": [ - "5-ho-dmt" - ], - "aliasesStr": "5-ho-dmt", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "1 hour", - "zero": "2 hours" - }, - "crossTolerances": null, - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "2 mg" - }, - { - "name": "Light", - "value": "5 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 40 mg" - }, - { - "name": "Strong", - "value": "40 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "15 - 90 minutes" - }, - { - "name": "Onset", - "value": "15 - 60 seconds" - }, - { - "name": "Peak", - "value": "1 - 5 minutes" - }, - { - "name": "Offset", - "value": "5 - 10 minutes" - }, - { - "name": "After effects", - "value": "10 - 60 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/buphedrone", - "experiencesUrl": null, - "name": "Buphedrone", - "aliases": [], - "aliasesStr": "", - "summary": "A cathinone stimulant first discovered in 1928, has gained some modest popularity as a mephedrone replacement. Said to be to be around 2-3x more potent than methcathinone.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "10-30mg" - }, - { - "name": "Common", - "value": "30-50mg" - }, - { - "name": "Heavy", - "value": "50-80mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-20 minutes" - }, - { - "name": "Duration", - "value": "2-3 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Duration", - "value": "1-2 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Buprenorphine", - "experiencesUrl": null, - "name": "Buprenorphine", - "aliases": [ - "addnok", - "bupe", - "buprenex", - "butrans", - "cizdol", - "suboxone", - "subs", - "subutex", - "transtec" - ], - "aliasesStr": "addnok,bupe,buprenex,butrans,cizdol,suboxone,subs,subutex,transtec", - "summary": "A semi-synthetic opioid analgesic also known as subutex. Often administered as Butrans patches, or in combination with Naloxone as Suboxone, a heroin replacement therapy drug. Will cause withdrawals if you have an opioid tolerance and don't wait long enough (typically around 48 hours) before taking this.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted morphinans" - ], - "psychoactive": [ - "Opioids" - ] - }, - "toxicity": [ - "low toxicity" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "opioids" - ], - "roas": [ - { - "name": "Sublingual", - "dosage": [ - { - "name": "Threshold", - "value": "<0.3 mg" - }, - { - "name": "Light", - "value": "0.3 - 0.6 mg" - }, - { - "name": "Common", - "value": "0.6 - 1.3 mg" - }, - { - "name": "Strong", - "value": "1.3 - 2.4 mg" - }, - { - "name": "Heavy", - "value": "2.4 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "10 - 18 hours" - }, - { - "name": "Onset", - "value": "40 - 80 minutes" - }, - { - "name": "Peak", - "value": "4 - 8 hours" - }, - { - "name": "After effects", - "value": "1 - 3 days" - } - ], - "bioavailability": "30%" - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "< 0.2 mg" - }, - { - "name": "Light", - "value": "0.2 - 0.4 mg" - }, - { - "name": "Common", - "value": "0.4 - 0.8 mg" - }, - { - "name": "Strong", - "value": "0.8 - 1.5 mg" - }, - { - "name": "Heavy", - "value": "1.5 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 14 hours" - }, - { - "name": "Onset", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "4 - 8 hours" - }, - { - "name": "After effects", - "value": "1 - 3 days" - } - ], - "bioavailability": "48%" - }, - { - "name": "Low", - "duration": [ - { - "name": "Duration", - "value": "Dose hours" - }, - { - "name": "After effects", - "value": "1-16 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/bupropion", - "experiencesUrl": null, - "name": "Bupropion", - "aliases": [ - "amfebutamone", - "wellbutrin", - "zyban" - ], - "aliasesStr": "amfebutamone,wellbutrin,zyban", - "summary": "A frequently prescribed atypical antidepressant. Occasionally prescribed as an aid to smoking cessation. May lower seizure threshold in predisposed individuals. Poorly understood mechanism of action, probably an NDRI. Avoid combination with other drugs.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Parent", - "duration": [ - { - "name": "Duration", - "value": "11-21 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - }, - { - "name": "Metabolites", - "duration": [ - { - "name": "Duration", - "value": "20-37 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Butylone", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_bkMBDB.shtml", - "name": "Butylone", - "aliases": [ - "b1", - "bk-mbdb", - "bk-methyl-j" - ], - "aliasesStr": "b1,bk-mbdb,bk-methyl-j", - "summary": "Empathogen and stimulant of the cathinone class.", - "reagents": null, - "classes": { - "chemical": [ - "Khat#1#", - "MDxx", - "Substituted cathinones" - ], - "psychoactive": [ - "Stimulants", - "Entactogens" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "20 mg" - }, - { - "name": "Light", - "value": "40 - 80 mg" - }, - { - "name": "Common", - "value": "80 - 125 mg" - }, - { - "name": "Strong", - "value": "125 - 225 mg" - }, - { - "name": "Heavy", - "value": "225 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 5 hours" - }, - { - "name": "Onset", - "value": "15 - 60 minutes" - }, - { - "name": "Peak", - "value": "60 - 120 minutes" - }, - { - "name": "Offset", - "value": "60 - 120 minutes" - }, - { - "name": "After effects", - "value": "4 - 12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/butyrfentanyl", - "experiencesUrl": null, - "name": "Butyrfentanyl", - "aliases": [ - "b-f", - "bf" - ], - "aliasesStr": "b-f,bf", - "summary": "Potent short-acting opioid and fentanyl analogue. Often dispensed in a nasal spray. This is an highly potent drug - exercise extreme caution. May cause respiratory depression and death in overdose.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "400-800ug" - }, - { - "name": "Common", - "value": "800-1500ug" - }, - { - "name": "Strong", - "value": "1.5-3mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "3-4 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/bzp", - "experiencesUrl": null, - "name": "BZP", - "aliases": [], - "aliasesStr": "", - "summary": "A stimulant that was sold as \"legal ecstasy\" in the late 2000s, and was one of the first drugs widely marketed as a \"research chemical.\" It has a much less favourable effect profile and has fallen out of popularity greatly since it was banned in many countries.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "40-70mg" - }, - { - "name": "Common", - "value": "70-100mg" - }, - { - "name": "Strong", - "value": "100-130mg" - }, - { - "name": "Heavy", - "value": "130mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-45 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "2-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/c30-nbome", - "experiencesUrl": null, - "name": "C30-NBOMe", - "aliases": [], - "aliasesStr": "", - "summary": "Inactive, if you do feel effects from \"C30-NBOMe\" you're either having the placebo effect of the world, or are being sold something else, and I recommend you send it in for testing somewhere.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Caffeine", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Caffeine.shtml", - "name": "Caffeine", - "aliases": [ - "coffee" - ], - "aliasesStr": "coffee", - "summary": "Caffeine is a a CNS stimulant, and also the most widely used psychoactive substance in the world. It is legal and unregulated in most parts of the world, and is found in many commonly sold products. It has a good safety profile, though regular heavy use can cause physical dependence and contribute to certain medical conditions.", - "reagents": null, - "classes": { - "chemical": [ - "Xanthines" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": [ - "The LD50 of caffeine in humans is dependent on individual sensitivity, but is estimated to be about 150 to 200 milligrams per kilogram of body mass or roughly 80 to 100 cups of coffee for an average adult" - ], - "addictionPotential": "produces dependence with chronic use and has a low abuse potential", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "10 mg" - }, - { - "name": "Light", - "value": "20 - 50 mg" - }, - { - "name": "Common", - "value": "50 - 150 mg" - }, - { - "name": "Strong", - "value": "150 - 500 mg" - }, - { - "name": "Heavy", - "value": "500 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 5 hours" - }, - { - "name": "Onset", - "value": "5 - 10 minutes" - }, - { - "name": "Come up", - "value": "10 - 60 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "6 - 10 hours" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "2.5 mg" - }, - { - "name": "Light", - "value": "10 - 25 mg" - }, - { - "name": "Common", - "value": "25 - 40 mg" - }, - { - "name": "Strong", - "value": "40 - 80 mg" - }, - { - "name": "Heavy", - "value": "80 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1 - 2.5 hours" - }, - { - "name": "Onset", - "value": "0.5 - 2 minutes" - }, - { - "name": "Come up", - "value": "0.5 - 2 minutes" - }, - { - "name": "Peak", - "value": "0.5 - 1 hours" - }, - { - "name": "Offset", - "value": "6 - 10 hours" - }, - { - "name": "After effects", - "value": "6 - 24 hours" - } - ] - }, - { - "name": "Threshold:", - "dosage": [ - { - "name": "Threshold", - "value": "10-20mg" - }, - { - "name": "Light", - "value": "20-75mg" - }, - { - "name": "Common", - "value": "75mg-250mg" - }, - { - "name": "Strong", - "value": "250-400mg" - }, - { - "name": "Heavy", - "value": "400mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "Duration", - "value": "1.5-5 hours" - }, - { - "name": "After effects", - "value": "3-4 hours" - } - ] - } - ], - "interactions": [ - { - "status": "Low Risk & No Synergy", - "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.", - "name": "2C-T-x" - }, - { - "status": "Low Risk & No Synergy", - "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.", - "name": "2C-x" - }, - { - "status": "Low Risk & No Synergy", - "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.", - "name": "5-MeO-xxT" - }, - { - "status": "Low Risk & No Synergy", - "name": "Alcohol" - }, - { - "status": "Caution", - "note": "This combination of stimulants is not generally necessary and may increase strain on the heart, as well as potentially causing anxiety and greater physical discomfort.", - "name": "Amphetamines" - }, - { - "status": "Low Risk & Decrease", - "name": "Benzodiazepines" - }, - { - "status": "Low Risk & No Synergy", - "name": "Cannabis" - }, - { - "status": "Caution", - "note": "Both stimulants, risk of tachycardia, hypertension, and in extreme cases heart failure.", - "name": "Cocaine" - }, - { - "status": "Low Risk & No Synergy", - "name": "DMT" - }, - { - "status": "Caution", - "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating it may cause some physical discomfort.", - "name": "DOx" - }, - { - "status": "Low Risk & No Synergy", - "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.", - "name": "DXM" - }, - { - "status": "Low Risk & No Synergy", - "name": "GHB/GBL" - }, - { - "status": "Low Risk & No Synergy", - "note": "No unexpected interactions.", - "name": "Ketamine" - }, - { - "status": "Low Risk & No Synergy", - "name": "LSD" - }, - { - "status": "Low Risk & No Synergy", - "name": "MAOIs" - }, - { - "status": "Caution", - "note": "Caffiene is not really necessary with MDMA and increases any neurotoxic effects from MDMA", - "name": "MDMA" - }, - { - "status": "Low Risk & No Synergy", - "note": "No likely interactions", - "name": "MXE" - }, - { - "status": "Low Risk & No Synergy", - "note": "High doses of caffeine are uncomfortable and this will be magnified by psychedelics", - "name": "Mescaline" - }, - { - "status": "Low Risk & No Synergy", - "name": "Mushrooms" - }, - { - "status": "Caution", - "note": "Caffiene can bring out the natural stimulation from psychedelic drugs to make it uncomfortable. High doses can cause anxiety which is hard to handle while tripping", - "name": "NBOMes" - }, - { - "status": "Low Risk & No Synergy", - "name": "Nitrous" - }, - { - "status": "Low Risk & No Synergy", - "name": "Opioids" - }, - { - "status": "Caution", - "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner.", - "name": "PCP" - }, - { - "status": "Low Risk & No Synergy", - "name": "SSRIs" - }, - { - "status": "Low Risk & No Synergy", - "name": "Tramadol" - }, - { - "status": "Caution", - "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.", - "name": "aMT" - } - ] - }, - { - "url": "https://psychonautwiki.org/wiki/Cake", - "experiencesUrl": null, - "name": "Cake", - "aliases": [ - "caky", - "cokoo" - ], - "aliasesStr": "caky,cokoo", - "summary": null, - "reagents": null, - "classes": { - "chemical": null, - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "25g-30g" - }, - { - "name": "Light", - "value": "30g-65g" - }, - { - "name": "Common", - "value": "65g-100g" - }, - { - "name": "Strong", - "value": "100g-300g" - }, - { - "name": "Heavy", - "value": "300g-500g" - } - ], - "duration": null, - "bioavailability": "90%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/camazepam", - "experiencesUrl": null, - "name": "Camazepam", - "aliases": [ - "albego", - "limpidon", - "paxor" - ], - "aliasesStr": "albego,limpidon,paxor", - "summary": "A benzodiazepine drug that is stronger in terms of anxiety relief than it is in terms of how hypnotic it is. It is a metabolite of diazepam and has limited anticonvulsant properties.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "10-20mg" - }, - { - "name": "Heavy", - "value": "40+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "45-90 minutes" - }, - { - "name": "Duration", - "value": "8-12 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Cannabidiol", - "experiencesUrl": null, - "name": "Cannabidiol", - "aliases": [ - "cbd", - "epidiolex" - ], - "aliasesStr": "cbd,epidiolex", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Cannabinoid" - ], - "psychoactive": [ - "Cannabinoid" - ] - }, - "toxicity": [ - "well-tolerated and shows little to no toxicity" - ], - "addictionPotential": "low abuse potential", - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "2 mg" - }, - { - "name": "Light", - "value": "5 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 30 mg" - }, - { - "name": "Strong", - "value": "30 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1.5 - 4 hours" - }, - { - "name": "Come up", - "value": "15 - 30 minutes" - }, - { - "name": "Offset", - "value": "1 - 1.5 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Cannabis", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Cannabis.shtml", - "name": "Cannabis", - "aliases": [ - "bud", - "dagga", - "grass", - "green", - "hash", - "herb", - "marijuana", - "mary jane", - "pot", - "thc", - "tree", - "weed" - ], - "aliasesStr": "bud,dagga,grass,green,hash,herb,marijuana,mary jane,pot,thc,tree,weed", - "summary": "A common and widely used psychoactive plant, which is beginning to enjoy legal status for medical and even recreational use in some parts of the world. Usually smoked or eaten, primary effects are relaxation and an affinity towards food - a state described as being 'stoned.'", - "reagents": null, - "classes": { - "chemical": [ - "Cannabinoid" - ], - "psychoactive": null - }, - "toxicity": null, - "addictionPotential": "moderately habit-forming", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "1 - 2 weeks", - "zero": "2 - 3 weeks" - }, - "crossTolerances": [ - "cannabinoids" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "25 mg" - }, - { - "name": "Light", - "value": "33 - 66 mg" - }, - { - "name": "Common", - "value": "66 - 100 mg" - }, - { - "name": "Strong", - "value": "100 - 150 mg" - }, - { - "name": "Heavy", - "value": "150 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1 - 4 hours" - }, - { - "name": "Onset", - "value": "0 - 10 minutes" - }, - { - "name": "Come up", - "value": "5 - 10 minutes" - }, - { - "name": "Peak", - "value": "15 - 30 minutes" - }, - { - "name": "After effects", - "value": "45 - 180 minutes" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg (THC)" - }, - { - "name": "Light", - "value": "2.5 - 5 mg (THC)" - }, - { - "name": "Common", - "value": "5 - 10 mg (THC)" - }, - { - "name": "Strong", - "value": "10 - 25 mg (THC)" - }, - { - "name": "Heavy", - "value": "25 mg + (THC)" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 10 hours" - }, - { - "name": "Onset", - "value": "20 - 120 minutes" - }, - { - "name": "Come up", - "value": "20 - 40 minutes" - }, - { - "name": "Peak", - "value": "2 - 5 hours" - }, - { - "name": "After effects", - "value": "6 - 12 hours" - } - ] - } - ], - "interactions": [ - { - "status": "Caution", - "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", - "name": "2C-T-x" - }, - { - "status": "Caution", - "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", - "name": "2C-x" - }, - { - "status": "Caution", - "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", - "name": "5-MeO-xxT" - }, - { - "status": "Low Risk & Synergy", - "note": "In excess, this combination can cause nausea.", - "name": "Alcohol" - }, - { - "status": "Caution", - "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", - "name": "Amphetamines" - }, - { - "status": "Low Risk & Decrease", - "name": "Benzodiazepines" - }, - { - "status": "Low Risk & No Synergy", - "name": "Caffeine" - }, - { - "status": "Caution", - "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", - "name": "Cocaine" - }, - { - "status": "Caution", - "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", - "name": "DMT" - }, - { - "status": "Caution", - "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", - "name": "DOx" - }, - { - "status": "Low Risk & Synergy", - "name": "DXM" - }, - { - "status": "Low Risk & Synergy", - "name": "GHB/GBL" - }, - { - "status": "Low Risk & Synergy", - "name": "Ketamine" - }, - { - "status": "Caution", - "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", - "name": "LSD" - }, - { - "status": "Low Risk & Synergy", - "name": "MAOIs" - }, - { - "status": "Low Risk & Synergy", - "note": "Large amounts of cannabis may cause strong and somewhat unpredictable experiences in combination with MDMA. Cannabis should be saved for towards the end of the experience if possible.", - "name": "MDMA" - }, - { - "status": "Low Risk & Synergy", - "name": "MXE" - }, - { - "status": "Caution", - "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", - "name": "Mescaline" - }, - { - "status": "Caution", - "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", - "name": "Mushrooms" - }, - { - "status": "Caution", - "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", - "name": "NBOMes" - }, - { - "status": "Low Risk & Synergy", - "name": "Nitrous" - }, - { - "status": "Low Risk & Synergy", - "name": "Opioids" - }, - { - "status": "Low Risk & Synergy", - "name": "PCP" - }, - { - "status": "Low Risk & No Synergy", - "name": "SSRIs" - }, - { - "status": "Low Risk & Synergy", - "name": "Tramadol" - }, - { - "status": "Caution", - "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics. Small amounts can reduce nausea with aMT but take care.", - "name": "aMT" - } - ] - }, - { - "url": "https://psychonautwiki.org/wiki/Carisoprodol", - "experiencesUrl": null, - "name": "Carisoprodol", - "aliases": [ - "soma" - ], - "aliasesStr": "soma", - "summary": "A skeletal muscle relaxant drug also known as Soma, carisoprodol has limited recreational value, however its main metabolite meprobamate has some moderate tranquilising properties. Sometimes found in concoctions with codeine or caffeine.", - "reagents": null, - "classes": { - "chemical": [ - "Carbamate" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "moderate toxicity", - "potentially lethal when mixed with depressants like alcohol or opioids" - ], - "addictionPotential": "extremely physically and psychologically addictive", - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "50 mg" - }, - { - "name": "Light", - "value": "100 - 325 mg" - }, - { - "name": "Common", - "value": "325 - 500 mg" - }, - { - "name": "Strong", - "value": "500 - 750 mg" - }, - { - "name": "Heavy", - "value": "750 mg +" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15 - 60 minutes" - }, - { - "name": "Peak", - "value": "2 - 5 hours" - }, - { - "name": "After effects", - "value": "1 - 12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Phenylpiracetam", - "experiencesUrl": null, - "name": "Phenylpiracetam", - "aliases": [ - "carphedon", - "phenotropil" - ], - "aliasesStr": "carphedon,phenotropil", - "summary": "A nootropic and piracetam analogue also known as fonturacetam, this drug has been shown to have potential memory enhancing, anxiolytic, anti-amnesia and anti-depressive effects, however has little recreational value. Around 45x more potent than Piracetam.", - "reagents": null, - "classes": { - "chemical": [ - "Racetams" - ], - "psychoactive": [ - "Stimulants", - "Nootropic" - ] - }, - "toxicity": [ - "safe even when high doses are consumed for a long period of time", - "exact toxic dosage is unknown" - ], - "addictionPotential": "non-addictive with a low potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "racetam", - "nootropic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "< 50 mg" - }, - { - "name": "Light", - "value": "50 - 100 mg" - }, - { - "name": "Common", - "value": "100 - 200 mg" - }, - { - "name": "Strong", - "value": "200 - 400 mg" - }, - { - "name": "Heavy", - "value": "400 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 3 hours (some users have reported effects lasting an entire day)" - }, - { - "name": "Onset", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "1 hour" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/centrophenoxine", - "experiencesUrl": null, - "name": "Centrophenoxine", - "aliases": [ - "lucidril", - "meclofenoxate" - ], - "aliasesStr": "lucidril,meclofenoxate", - "summary": "Cholinergic compound with a DMAE compotent. Is thought to help in reversing some signs of aging. Naturally found substance, most notably in fish.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/changa", - "experiencesUrl": null, - "name": "Changa", - "aliases": [], - "aliasesStr": "", - "summary": "Changa is the name given to a smoking blend of caapi or other MAOI containing plants with an infusion of extracted DMT. Changa often contains other milder psychoactive herbs as well. The maoi action results in a longer and more intense trip (see Ayahuasca) NOTE: There is no standardized recipe or concentration of infused DMT, therefor dosage and potency will vary per batch.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Light:", - "dosage": [ - { - "name": "Light", - "value": "5-15mg" - }, - { - "name": "Common", - "value": "15-30mg" - }, - { - "name": "Strong", - "value": "30-50mg" - }, - { - "name": "Heavy", - "value": "50+mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "0-2 minutes" - }, - { - "name": "Duration", - "value": "6-12 minutes" - }, - { - "name": "After effects", - "value": "1-36 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/chloral-betaine", - "experiencesUrl": null, - "name": "Chloral betaine", - "aliases": [], - "aliasesStr": "", - "summary": "Sedative-hypnotic drug that was introduced into the United States in the 60's. Betaine complex with Chloral hydrate, thus makes it act as an extended version of Chloral hydrate then to Trichloroethanol, which is responsible for most of its effects.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "125-250mg" - }, - { - "name": "Common", - "value": "250-500mg." - }, - { - "name": "Strong", - "value": "500-1000mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "3-7 hours" - }, - { - "name": "After effects", - "value": "2-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/chloroform", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Chloroform.shtml", - "name": "Chloroform", - "aliases": [], - "aliasesStr": "", - "summary": "A naturally occurring organic compound once used as an anaesthetic. Has practically disappeared in this usage due to numerous harmful effects including danger of sudden death through cardiac arrhythmia. Has been implicated in numerous murders. Highly unsafe.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Choline_bitartrate", - "experiencesUrl": null, - "name": "Choline bitartrate", - "aliases": [ - "choline" - ], - "aliasesStr": "choline", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Ammonium salt" - ], - "psychoactive": [ - "Nootropic" - ] - }, - "toxicity": [ - "extremely low toxicity" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "after prolonged and repeated usage", - "half": "7 days", - "zero": "14 days" - }, - "crossTolerances": [], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "50 mg" - }, - { - "name": "Light", - "value": "100 - 250 mg" - }, - { - "name": "Common", - "value": "250 - 1000 mg" - }, - { - "name": "Strong", - "value": "1000 - 2000 mg" - }, - { - "name": "Heavy", - "value": "2000 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours" - }, - { - "name": "Onset", - "value": "45 - 75 minutes" - }, - { - "name": "Come up", - "value": "15 - 30 minutes" - }, - { - "name": "Peak", - "value": "2 - 4 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "2 - 8 hours" - } - ], - "bioavailability": "40%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/cialis", - "experiencesUrl": null, - "name": "Tadalafil", - "aliases": [], - "aliasesStr": "", - "summary": "Tadalafil, a PDE5 inhibitor used to combat erectile disfunction. Dangerous in combination with other drugs which lower blood pressure.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "2.5-5mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10-20mg." - } - ], - "duration": [ - { - "name": "Duration", - "value": "4-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/cinolazepam", - "experiencesUrl": null, - "name": "Cinolazepam", - "aliases": [ - "geroderm" - ], - "aliasesStr": "geroderm", - "summary": "A benzodiazepine derivative drug with anxiolytic effects but mainly hypnotic effects. It is extremely effective for sleep aid but has mild euphoria compared to other benzos", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "10-30mg" - }, - { - "name": "Common", - "value": "30-60mg" - }, - { - "name": "Strong", - "value": "60-120mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-90 minutes" - }, - { - "name": "Duration", - "value": "8-12 hours" - }, - { - "name": "After effects", - "value": "12-20 hours" - } - ], - "bioavailability": "90-100%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/citalopram", - "experiencesUrl": null, - "name": "Citalopram", - "aliases": [ - "celexa", - "cipramil" - ], - "aliasesStr": "celexa,cipramil", - "summary": "Citalopram is an SSRI that is used to treat depression. It does not lead to a high and causes a wide range of negative psychological and physical effects when people attempt to abuse it and can lead to serotonin syndrome and cause suicidal ideation. Those with bipolar disorder tend to go into a mixed state or manic states when trying SSRI's.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Citicoline", - "experiencesUrl": null, - "name": "Citicoline", - "aliases": [], - "aliasesStr": "", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Ammonium salt" - ], - "psychoactive": [ - "Nootropic" - ] - }, - "toxicity": [ - "extremely low toxicity" - ], - "addictionPotential": "not habit-forming", - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "50 mg" - }, - { - "name": "Light", - "value": "100 - 250 mg" - }, - { - "name": "Common", - "value": "250 - 1000 mg" - }, - { - "name": "Strong", - "value": "1000 - 2000 mg" - }, - { - "name": "Heavy", - "value": "2000 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "58 - 74 hours" - }, - { - "name": "Onset", - "value": "1 - 2 hours" - }, - { - "name": "Come up", - "value": "2 - 3 hours" - }, - { - "name": "Peak", - "value": "2.5 - 3.5 hours" - }, - { - "name": "Offset", - "value": "30 - 40 hours" - }, - { - "name": "After effects", - "value": "40 - 60 hours" - } - ], - "bioavailability": "98%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/clobazam", - "experiencesUrl": null, - "name": "Clobazam", - "aliases": [ - "frisium" - ], - "aliasesStr": "frisium", - "summary": "A long acting benzodiazepine which focuses primarily on anxiolytic and anticonvulsant properties. It is used medically to treat epilepsy, and this along with its relatively many negative side-effects and contraindications in comparison with other benzodiazepines means it isn't frequently used recreationally.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Light:", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-15mg" - }, - { - "name": "Heavy", - "value": "15-30mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-40 minutes" - }, - { - "name": "Duration", - "value": "6-12 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/clomethiazole", - "experiencesUrl": null, - "name": "Clomethiazole", - "aliases": [], - "aliasesStr": "", - "summary": "Structurally related to Thiamine (vitamin B1), but with binding potential at the GABAa site, which causes it to produce effects most like those of a barbiturate: an effective sedative and hypnotic. Originally developed by Hoffman-LaRoche in the 1930s, it has seen use as a treatment for acute alcohol withdrawal.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "100mg" - }, - { - "name": "Light", - "value": "100-150mg" - }, - { - "name": "Common", - "value": "150-200mg" - }, - { - "name": "Heavy", - "value": "200mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-40 minutes" - }, - { - "name": "Duration", - "value": "5-8 hours" - }, - { - "name": "After effects", - "value": "1-16 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Clonazepam", - "experiencesUrl": null, - "name": "Clonazepam", - "aliases": [ - "k-pins", - "klonopin", - "kpin", - "rivotril" - ], - "aliasesStr": "k-pins,klonopin,kpin,rivotril", - "summary": "A medium-length common prescription benzodiazepine, often used to treat panic attacks because of its relatively fast sublingual onset. Primarily anxiolytic, but also possessing of other benzo traits.", - "reagents": null, - "classes": { - "chemical": [ - "Benzodiazepines" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol or opioids" - ], - "addictionPotential": "extremely physically and psychologically addictive", - "tolerance": { - "full": "within a couple of days of continuous use", - "half": null, - "zero": "7 - 14 days" - }, - "crossTolerances": [ - "benzodiazepines" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.10 mg" - }, - { - "name": "Light", - "value": "0.25 - 0.5 mg" - }, - { - "name": "Common", - "value": "0.5 - 1 mg" - }, - { - "name": "Strong", - "value": "1 - 2 mg" - }, - { - "name": "Heavy", - "value": "2 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 12 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "After effects", - "value": "8 - 48 hours" - } - ], - "bioavailability": "90%" - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Clonazolam", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Clonazolam.shtml", - "name": "Clonazolam", - "aliases": [ - "c-lam", - "clam", - "clonitrazolam" - ], - "aliasesStr": "c-lam,clam,clonitrazolam", - "summary": "A long lasting benzodiazepine with heavily hypnotic effects. The safety profile is not well established, and there have been reports that people taking it three days in a row have had a seizure. Most comparable to Triazolam, but with a much longer half-life.", - "reagents": null, - "classes": { - "chemical": [ - "Benzodiazepines" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal" - ], - "addictionPotential": "extremely physically and psychologically addictive", - "tolerance": { - "full": "within a couple of days of continuous use", - "half": null, - "zero": "7 - 14 days" - }, - "crossTolerances": [ - "benzodiazepines" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "50 \u00b5g" - }, - { - "name": "Light", - "value": "75 - 200 \u00b5g" - }, - { - "name": "Common", - "value": "200 - 400 \u00b5g" - }, - { - "name": "Strong", - "value": "400 - 1 mg" - }, - { - "name": "Heavy", - "value": "1 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 10 hours" - }, - { - "name": "Onset", - "value": "10 - 30 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Clonidine", - "experiencesUrl": null, - "name": "Clonidine", - "aliases": [ - "catapres", - "catapres-tts", - "duraclon", - "kapvay", - "nexiclon xr" - ], - "aliasesStr": "catapres,catapres-tts,duraclon,kapvay,nexiclon xr", - "summary": "Is a medication that is used to treat high blood pressure, anxiety, withdrawal (Typically from Alcohol, Opioids, Smoking) and many other uses.", - "reagents": null, - "classes": { - "chemical": [ - "Imidazoline" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": null, - "addictionPotential": "not addictive and has a low potential for abuse", - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "25 \u03bcg" - }, - { - "name": "Light", - "value": "50 - 75 \u03bcg" - }, - { - "name": "Common", - "value": "75 - 100 \u03bcg" - }, - { - "name": "Strong", - "value": "100 - 300 \u03bcg" - }, - { - "name": "Heavy", - "value": "300 \u03bcg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 8 hours" - }, - { - "name": "Onset", - "value": "15 - 45 minutes" - }, - { - "name": "Peak", - "value": "60 - 90 minutes" - }, - { - "name": "Offset", - "value": "6 - 8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/cloniprazepam", - "experiencesUrl": null, - "name": "Cloniprazepam", - "aliases": [], - "aliasesStr": "", - "summary": "Prodrug for Clonazepam.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": ".5-1mg" - }, - { - "name": "Common", - "value": "1-2mg" - }, - { - "name": "Strong", - "value": "2-4mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "6-9 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/clonitazene", - "experiencesUrl": null, - "name": "Clonitazene", - "aliases": [], - "aliasesStr": "", - "summary": "An opioid that is roughly three times as potent as Morphine. Is related to Etonitazene, which is about 1000-1500x the potency of Morphine.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "2.5-5mg" - }, - { - "name": "Strong", - "value": "10-15mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/clorazepate", - "experiencesUrl": null, - "name": "Clorazepate", - "aliases": [ - "novo-clopate", - "tranxene", - "tranzene" - ], - "aliasesStr": "novo-clopate,tranxene,tranzene", - "summary": "Is a prodrug for Desmethyldiazepam which is responsible for most of the therapeutic effects. Has a long half life, with the addition of Desmethyldiazepam as the main metabolite, which makes it much longer.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "10-20mg" - }, - { - "name": "Strong", - "value": "20-40mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-80 minutes" - }, - { - "name": "Duration", - "value": "8-12 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ], - "bioavailability": "91%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/clotiazepam", - "experiencesUrl": null, - "name": "Clotiazepam", - "aliases": [ - "clozan", - "distensan", - "rize", - "rizen", - "trecalmo", - "veratran" - ], - "aliasesStr": "clozan,distensan,rize,rizen,trecalmo,veratran", - "summary": "Is a thienodiazepine substance. It differs from most other benzodiazepines in which the benzene ring has been replaced by a thiophene ring.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "2.5-5mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10-15mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "4-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/cloxazolam", - "experiencesUrl": null, - "name": "Cloxazolam", - "aliases": [], - "aliasesStr": "", - "summary": "Benzodiazepine derivate that is metabolised into Delorazepam. Which is where most of its effects come from.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "1.5-3mg" - }, - { - "name": "Common", - "value": "3-6mg" - }, - { - "name": "Strong", - "value": "6-12mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "7-12 hours" - }, - { - "name": "After effects", - "value": "4-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Cocaine", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Cocaine.shtml", - "name": "Cocaine", - "aliases": [ - "blow", - "coca", - "coke", - "crack", - "girl", - "nose candy", - "snow", - "white" - ], - "aliasesStr": "blow,coca,coke,crack,girl,nose candy,snow,white", - "summary": "A highly popular, short acting CNS stimulant that works by blocking the reuptake of dopamine, serotonin, and norepinephrine. It is known to increase euphoria, confidence, sex-drive, focus, body temperature, and heart rate. Cocaine can cause severe vasoconstriction and is known to be cardiotoxic and have a high potential for compulsive redosing and addiction.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tropanes" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": [ - "individuals have died from as little as 30 mg applied to mucous membranes, whereas addicts may tolerate up to 5 grams daily" - ], - "addictionPotential": "highly addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Inhaled", - "dosage": null, - "duration": null - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 30 mg" - }, - { - "name": "Common", - "value": "30 - 60 mg" - }, - { - "name": "Strong", - "value": "60 - 90 mg" - }, - { - "name": "Heavy", - "value": "90 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "10 - 90 minutes" - }, - { - "name": "Onset", - "value": "1 - 10 minutes" - }, - { - "name": "Come up", - "value": "5 - 15 minutes" - }, - { - "name": "Peak", - "value": "15 - 30 minutes" - }, - { - "name": "Offset", - "value": "10 - 30 minutes" - } - ], - "bioavailability": "60-80%" - } - ], - "interactions": [ - { - "status": "Unsafe", - "note": "Cocaine and 2c-t-x both provide considerable stimulation. When combined they can result in severe vasoconstriction, tachycardia, hypertension, and in extreme cases heart failure.", - "name": "2C-T-x" - }, - { - "status": "Caution", - "note": "The anxiogenic and focusing effects of stimulants increase the chance of unpleasant thought loops. The combination is generally unnecessary because of the stimulating effects of psychedelics. Combination of the stimulating effects may be uncomfortable.", - "name": "2C-x" - }, - { - "status": "Unsafe", - "note": "The anxiogenic and focusing effects of stimulants increase the chance of unpleasant thought loops. The combination is generally unnecessary because of the stimulating effects of psychedelics. ", - "name": "5-MeO-xxT" - }, - { - "status": "Unsafe", - "note": "Drinking on stimulants is risky because the sedative effects of the alcohol are reduced, and these are what the body uses to gauge drunkenness. This typically leads to excessive drinking with greatly reduced inhibitions, high risk of liver damage and increased dehydration. They will also allow you to drink past a point where you might normally pass out, increasing the risk. If you do decide to do this then you should set a limit of how much you will drink each hour and stick to it, bearing in mind that you will feel the alcohol less. Cocaine is potentiated somewhat by alcohol because of the formation of cocaethylene.", - "name": "Alcohol" - }, - { - "status": "Caution", - "note": "This combination of stimulants will increase strain on the heart. It is not generally worth it as cocaine has a mild blocking effect on dopamine releasers like amphetamine", - "name": "Amphetamines" - }, - { - "status": "Low Risk & Decrease", - "name": "Benzodiazepines" - }, - { - "status": "Caution", - "note": "Both stimulants, risk of tachycardia, hypertension, and in extreme cases heart failure.", - "name": "Caffeine" - }, - { - "status": "Caution", - "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", - "name": "Cannabis" - }, - { - "status": "Caution", - "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", - "name": "DMT" - }, - { - "status": "Unsafe", - "note": "The combined stimulating effects of the two can lead to an uncomfortable body-load, while the focusing effects of cocaine can easily lead to thought loops. Coming down from cocaine while the DOx is still active can be quite anxiogenic", - "name": "DOx" - }, - { - "status": "Unsafe", - "note": "Both substances raise heart rate, in extreme cases, panic attacks caused by these drugs have led to more serious heart issues", - "name": "DXM" - }, - { - "status": "Caution", - "note": "Stimulants increase respiration rate allowing a higher dose of sedatives. If the stimulant wears off first then the opiate may overcome the patient and cause respiratory arrest. Likewise the G can wear off and leave a dangerous concentration of cocaine behind", - "name": "GHB/GBL" - }, - { - "status": "Caution", - "note": "No unexpected interactions, though likely to increase blood pressure but not an issue with sensible doses. Moving around on high doses of this combination may be ill advised due to risk of physical injury.", - "name": "Ketamine" - }, - { - "status": "Caution", - "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", - "name": "LSD" - }, - { - "status": "Dangerous", - "note": "This combination is poorly explored", - "name": "MAOIs" - }, - { - "status": "Caution", - "note": "Cocaine blocks some of the desirable effects of MDMA while increasing the risk of heart attack.", - "name": "MDMA" - }, - { - "status": "Caution", - "note": "Stimulants taken with MXE can lead to hypermanic states much more easily, especially if sleep is avoided.", - "name": "MXE" - }, - { - "status": "Caution", - "note": "The focus and anxiety caused by stimulants is magnified by psychedelics and results in an increased risk of thought loops", - "name": "Mescaline" - }, - { - "status": "Caution", - "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", - "name": "Mushrooms" - }, - { - "status": "Unsafe", - "note": "Cocaine and NBOMes both provide considerable stimulation. When combined they can result in severe vasoconstriction, tachycardia, hypertension, and in extreme cases heart failure.", - "name": "NBOMes" - }, - { - "status": "Low Risk & Synergy", - "name": "Nitrous" - }, - { - "status": "Dangerous", - "note": "Stimulants increase respiration rate allowing a higher dose of opiates. If the stimulant wears off first then the opiate may overcome the patient and cause respiratory arrest.", - "name": "Opioids" - }, - { - "status": "Unsafe", - "note": "This combination can easily lead to hypermanic states", - "name": "PCP" - }, - { - "status": "Low Risk & No Synergy", - "note": "May reduce each others' effectiveness. Cocaine can reduce mental stability and therefore exacerbate conditions which SSRIs are used to treat.", - "name": "SSRIs" - }, - { - "status": "Dangerous", - "note": "Tramadol and stimulants both increase the risk of seizures.", - "name": "Tramadol" - }, - { - "status": "Dangerous", - "name": "aMT" - } - ] - }, - { - "url": "https://psychonautwiki.org/wiki/Codeine", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Codeine.shtml", - "name": "Codeine", - "aliases": [], - "aliasesStr": "", - "summary": "Codeine is a weaker opioid used to treat mild to moderate pain and to relieve cough. In many countries it is available over the counter in combination with paracetamol, which can easily be extracted to retrieve near-pure codeine. For this reason, it is used widely as a recreational opioid. It is metabolised into morphine in the body at a rate of 5% mg for mg.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted morphinans" - ], - "psychoactive": [ - "Opioids" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol or benzodiazepines" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "opioids" - ], - "roas": [ - { - "name": "Smoked", - "dosage": null, - "duration": null, - "bioavailability": "49.9 - 59.7%" - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "30 mg" - }, - { - "name": "Light", - "value": "50 - 100 mg" - }, - { - "name": "Common", - "value": "100 - 150 mg" - }, - { - "name": "Strong", - "value": "150 - 200 mg" - }, - { - "name": "Heavy", - "value": "200 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 6 hours" - }, - { - "name": "Onset", - "value": "30 - 45 minutes" - }, - { - "name": "Come up", - "value": "1 - 2 hours" - }, - { - "name": "Peak", - "value": "3 - 5 hours" - }, - { - "name": "Offset", - "value": "2 - 4 hours" - } - ], - "bioavailability": "90%" - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Coluracetam", - "experiencesUrl": null, - "name": "Coluracetam", - "aliases": [], - "aliasesStr": "", - "summary": "A nootropic drug of the racetam class, originally developed to treat Alzheimer's disease, it is currently being investigated as a treatment for major depressive disorder and generalised anxiety disorder. May be a modulator of the AMPA receptor. Limited recreational value.", - "reagents": null, - "classes": { - "chemical": [ - "Racetams" - ], - "psychoactive": [ - "Nootropic" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "not addictive with a low potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "racetam", - "nootropic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "3 - 5 mg" - }, - { - "name": "Common", - "value": "5 - 10 mg" - }, - { - "name": "Strong", - "value": "10 - 20 mg" - }, - { - "name": "Heavy", - "value": "20 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 6 hours" - }, - { - "name": "Onset", - "value": "15 - 30 minutes" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "2 - 5 mg" - }, - { - "name": "Common", - "value": "5 - 10 mg" - }, - { - "name": "Strong", - "value": "10 - 20 mg" - }, - { - "name": "Heavy", - "value": "20 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 6 hours" - }, - { - "name": "Onset", - "value": "1 - 5 minutes" - } - ] - }, - { - "name": "Sublingual/Insufflated", - "dosage": [ - { - "name": "Light", - "value": "2-5mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10mg+" - } - ], - "duration": [ - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - }, - { - "name": "Sublingual", - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - }, - { - "name": "Intranasal", - "duration": [ - { - "name": "Onset", - "value": "1-5 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/coronaridine", - "experiencesUrl": null, - "name": "Coronaridine", - "aliases": [], - "aliasesStr": "", - "summary": "Alkaloid found in Tabernanthe iboga and related species. Persistently reduces the self-administration of Cocaine and Morphine in rats.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Creatine", - "experiencesUrl": null, - "name": "Creatine", - "aliases": [ - "methylguanidoacetic acid", - "n-carbamimidoyl-n-methylglycine" - ], - "aliasesStr": "methylguanidoacetic acid,n-carbamimidoyl-n-methylglycine", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Nitrogenous organic acid" - ], - "psychoactive": [ - "Nootropic" - ] - }, - "toxicity": null, - "addictionPotential": "not habit-forming with a low potential for abuse", - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.25 g" - }, - { - "name": "Light", - "value": "1 - 5 g" - }, - { - "name": "Common", - "value": "5 - 10 g" - }, - { - "name": "Strong", - "value": "10 - 20 g" - }, - { - "name": "Heavy", - "value": "20 g +" - } - ], - "duration": [ - { - "name": "Total", - "value": "30 - 36 hours" - }, - { - "name": "Onset", - "value": "30 - 90 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/crl-40-940", - "experiencesUrl": null, - "name": "CRL-40-940", - "aliases": [ - "bisfluoromodafinil", - "flmodafinil", - "lauflumide" - ], - "aliasesStr": "bisfluoromodafinil,flmodafinil,lauflumide", - "summary": "Bisfluoro analogue Modafinil. Has been sold online as a research chemical. Was patented in 2013. Is slightly more potent than Armodafinil.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "20-40mg" - }, - { - "name": "Common", - "value": "40-75mg" - }, - { - "name": "Strong", - "value": "75-150mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-45 minutes" - }, - { - "name": "Duration", - "value": "6-12 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/crl-40-941", - "experiencesUrl": null, - "name": "CRL-40-941", - "aliases": [ - "fladrafinil", - "fluoromodafinil" - ], - "aliasesStr": "fladrafinil,fluoromodafinil", - "summary": "A substance closely related to Adrafinil and Modafinil. It is the bis(p-fluoro) ring derivative of Adrafinil.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50-100mg" - }, - { - "name": "Common", - "value": "100-250mg" - }, - { - "name": "Strong", - "value": "250-350mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-90 minutes" - }, - { - "name": "Duration", - "value": "6-14 hours" - }, - { - "name": "After effects", - "value": "1-10 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Cyclazodone", - "experiencesUrl": null, - "name": "Cyclazodone", - "aliases": [], - "aliasesStr": "", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "4-oxazolidinone", - "Substituted aminorexes" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": null, - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "5 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 25 mg" - }, - { - "name": "Strong", - "value": "25 - 40 mg" - }, - { - "name": "Heavy", - "value": "40 mg +", - "note": "Liver damage may result from heavy or sustained usage." - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 7 hours" - }, - { - "name": "Onset", - "value": "20 - 45 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/cyclizine", - "experiencesUrl": null, - "name": "Cyclizine", - "aliases": [], - "aliasesStr": "", - "summary": "First generation antihistamine and anticholinergic drug used to combat nausea and vomiting. Causes drowsiness. Like most antihistamines in high doses it induces delirium and vivid realistic hallucinations. Probably uncomfortable and not enjoyable.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "25-50mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "Oral hours" - }, - { - "name": "After effects", - "value": "14 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/cyclo-methiodrone", - "experiencesUrl": null, - "name": "Cyclo-Methiodrone", - "aliases": [], - "aliasesStr": "", - "summary": "Empathogen with strong stimulant effects, very loosely related to benzylpiperidine.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "30-45mg" - }, - { - "name": "Common", - "value": "45-65mg" - }, - { - "name": "Strong", - "value": "65-90mg" - }, - { - "name": "Heavy", - "value": "90+mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "25-45 minutes" - }, - { - "name": "Duration", - "value": "3-5 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/cyclobenzaprine", - "experiencesUrl": null, - "name": "Cyclobenzaprine", - "aliases": [ - "apo-cyclobenzaprin", - "fexmid", - "flexeril", - "novo-cycloprine" - ], - "aliasesStr": "apo-cyclobenzaprin,fexmid,flexeril,novo-cycloprine", - "summary": "Muscle relaxant and CNS depressant used to relieve skeletal muscle spasms and associated pain in acute musculoskeletal conditions. Sometimes prescribed off-label for treatment of fibromyalgia or as a sleep aid. Has little recreational value alone, but may potentiate some opioids. May cause drowsiness, dry mouth and dizziness.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "2-5mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10-15mg" - }, - { - "name": "Heavy", - "value": "15mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "6-12 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/cyclopentyl-fentanyl", - "experiencesUrl": null, - "name": "CYCLOPENTYL-FENTANYL", - "aliases": [ - "cp-f", - "cpf" - ], - "aliasesStr": "cp-f,cpf", - "summary": "An analogue of fentanyl that is unknown in literature, seems to be less potent than its former being Acetyl-Fentanyl. Yet reports have yet to surface. Be careful.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/cyclopropylmescaline", - "experiencesUrl": null, - "name": "Cyclopropylmescaline", - "aliases": [ - "4-cyclopropylmethoxy-3", - "cpm" - ], - "aliasesStr": "4-cyclopropylmethoxy-3,cpm", - "summary": "Cyclopropylmescaline, AKA CPM, is a psychedelic/hallucinogenic that was produced by Alexander Shulgin. It causes visual and auditory hallucinations and lasts quite a long time. Little is known about it so caution must be used when trying out this substance.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50-60mg" - }, - { - "name": "Common", - "value": "60-70mg" - }, - { - "name": "Strong", - "value": "70-80mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "12-18 hours" - }, - { - "name": "After effects", - "value": "6-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/d2pm", - "experiencesUrl": null, - "name": "D2PM", - "aliases": [ - "diphenylprolinol" - ], - "aliasesStr": "diphenylprolinol", - "summary": "An NDRI, which is reported as being rather lackluster.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Light:", - "dosage": [ - { - "name": "Light", - "value": "15-20mg" - }, - { - "name": "Common", - "value": "20-35mg" - }, - { - "name": "Strong", - "value": "35-50mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-30 minutes" - }, - { - "name": "Duration", - "value": "2-5 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/dalt", - "experiencesUrl": null, - "name": "DALT", - "aliases": [ - "diallyltryptamine", - "n,n-diallyltryptamine" - ], - "aliasesStr": "diallyltryptamine,n,n-diallyltryptamine", - "summary": "Psychedelic drug of the tryptamine class.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "none", - "dosage": [ - { - "name": "Light", - "value": "20-40mg" - }, - { - "name": "Common", - "value": "40-60mg" - }, - { - "name": "Strong", - "value": "60mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Datura", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Datura.shtml", - "name": "Datura", - "aliases": [ - "jimson weed" - ], - "aliasesStr": "jimson weed", - "summary": "A family of plants containing various Tropane alkaloids. Produces long-lasting deliriant effects including very realistic and often unpleasant hallucinations along with short-term amnesia. Datura plants are toxic to humans, and potency varies greatly from plant-to-plant, making the drug extremely difficult to dose safely. Not typically regarded as recreational.", - "reagents": null, - "classes": { - "chemical": null, - "psychoactive": [ - "Deliriant" - ] - }, - "toxicity": [ - "toxic dosage is unknown" - ], - "addictionPotential": "mildly addictive with a high potential for adverse side effects such as psychosis", - "tolerance": { - "full": "with repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": null, - "duration": [ - { - "name": "Total", - "value": "8 - 18 hours" - }, - { - "name": "Onset", - "value": "20 - 120 minutes" - }, - { - "name": "Come up", - "value": "60 - 120 minutes" - }, - { - "name": "Peak", - "value": "5 - 12 hours" - }, - { - "name": "Offset", - "value": "2 - 3 hours" - }, - { - "name": "After effects", - "value": "6 - 24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/db-mdbp", - "experiencesUrl": null, - "name": "DB-MDBP", - "aliases": [], - "aliasesStr": "", - "summary": "Inactive.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/N-Methylbisfluoromodafinil", - "experiencesUrl": null, - "name": "Dehydroxyfluorafinil", - "aliases": [ - "modafiendz", - "n-methylbisfluoromodafinil" - ], - "aliasesStr": "modafiendz,n-methylbisfluoromodafinil", - "summary": "Nootropic of the benzhydryl class. Closely related to Adrafinil and Modafinil. Was branded as \"Modafiendz\" through some research chemical vendors.", - "reagents": null, - "classes": { - "chemical": [ - "Benzhydryl" - ], - "psychoactive": [ - "Nootropic" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "mildly addictive with a low potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "modafanil", - "analog" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "25 mg" - }, - { - "name": "Light", - "value": "50 - 100 mg" - }, - { - "name": "Common", - "value": "100 - 150 mg" - }, - { - "name": "Strong", - "value": "150 - 200 mg" - }, - { - "name": "Heavy", - "value": "200 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 8 hours" - } - ] - }, - { - "name": "Threshold", - "dosage": [ - { - "name": "Light", - "value": "50-100mg" - }, - { - "name": "Common", - "value": "100-150mg" - }, - { - "name": "Strong", - "value": "150-200mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-60 minutes" - }, - { - "name": "Duration", - "value": "5-8 hours" - }, - { - "name": "After effects", - "value": "2-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/delorazepam", - "experiencesUrl": null, - "name": "Delorazepam", - "aliases": [ - "nordiclazepam" - ], - "aliasesStr": "nordiclazepam", - "summary": "Also known as chlordesmethyldiazepam, this uncommon benzodiazepine compound is primarily used for treatment of anxiety and alcohol withdrawal, due to its long half-life (60-140 hours). It is also the active metabolite of diclazepam and cloxazolam.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "0.25-0.5mg" - }, - { - "name": "Common", - "value": "0.5-1.5mg" - }, - { - "name": "Strong", - "value": "1.5-2mg" - }, - { - "name": "Heavy", - "value": "2-3mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-60 minutes" - }, - { - "name": "Duration", - "value": "12-16 hours" - }, - { - "name": "After effects", - "value": "72 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Pethidine", - "experiencesUrl": null, - "name": "Pethidine", - "aliases": [ - "demerol", - "dolantin", - "dolcontral", - "meperidine" - ], - "aliasesStr": "demerol,dolantin,dolcontral,meperidine", - "summary": "A phenylpiperidine opioid first synthesised by Otto Eisleb in 1939, better known by the names meperidine and pethidine. An analgesic, once widely prescribed it has since declined in usage due to the discovery of a toxic metabolite - norpethidine. Also reacts dangerously with many drugs.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted piperidines" - ], - "psychoactive": [ - "Opioids" - ] - }, - "toxicity": [ - "high toxicity", - "potentially lethal when mixed with depressants like alcohol or benzodiazepines" - ], - "addictionPotential": "extremely addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "opioids" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "25 - 50 mg" - }, - { - "name": "Light", - "value": "50 - 100 mg" - }, - { - "name": "Common", - "value": "100 - 200 mg" - }, - { - "name": "Strong", - "value": "200 - 400 mg" - }, - { - "name": "Heavy", - "value": "400 mg +" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "4 - 6 hours" - }, - { - "name": "After effects", - "value": "2 - 10 hours" - } - ], - "bioavailability": "50-60%" - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Deschloroetizolam", - "experiencesUrl": null, - "name": "Deschloroetizolam", - "aliases": [ - "etizolam-2" - ], - "aliasesStr": "etizolam-2", - "summary": "A Thienodiazepine which is close to its parent compound, Etizolam, whilst being significantly weaker and longer lasting.", - "reagents": null, - "classes": { - "chemical": [ - "Thienodiazepines" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol or opioids" - ], - "addictionPotential": "extremely physically and psychologically addictive", - "tolerance": { - "full": "within a couple of days of continuous use", - "half": null, - "zero": "7 - 14 days" - }, - "crossTolerances": [ - "benzodiazepine", - "thienodiazepine" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "2 - 4 mg" - }, - { - "name": "Common", - "value": "4 - 6 mg" - }, - { - "name": "Strong", - "value": "6 - 12 mg" - }, - { - "name": "Heavy", - "value": "12 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 10 hours" - }, - { - "name": "Onset", - "value": "1 - 5 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "2 - 3 hours" - }, - { - "name": "After effects", - "value": "3 - 6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Deschloroketamine", - "experiencesUrl": null, - "name": "Deschloroketamine", - "aliases": [ - "2'-oxo-pcm", - "2-oxo-pcm", - "dck", - "dxe", - "o-pcm", - "opcm" - ], - "aliasesStr": "2'-oxo-pcm,2-oxo-pcm,dck,dxe,o-pcm,opcm", - "summary": "A novel analogue of Ketamine which is much more potent and has a longer duration.", - "reagents": null, - "classes": { - "chemical": [ - "Arylcyclohexylamines" - ], - "psychoactive": [ - "Dissociatives" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dissociative" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 20 mg" - }, - { - "name": "Strong", - "value": "20 - 40 mg" - }, - { - "name": "Heavy", - "value": "40 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "30 - 90 minutes" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "10 mg" - }, - { - "name": "Light", - "value": "10 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 30 mg" - }, - { - "name": "Strong", - "value": "30 - 50 mg" - }, - { - "name": "Heavy", - "value": "50 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "10 - 30 minutes" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "1.5 - 2.5 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "3 - 24 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 25 mg" - }, - { - "name": "Strong", - "value": "25 - 40 mg" - }, - { - "name": "Heavy", - "value": "40 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 6 hours" - }, - { - "name": "Onset", - "value": "5 - 15 minutes" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "1.5 - 2.5 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "3 - 24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/desmethylflunitrazepam", - "experiencesUrl": null, - "name": "Desmethylflunitrazepam", - "aliases": [ - "fonazepam", - "norflunitrazepam", - "ro05-4435" - ], - "aliasesStr": "fonazepam,norflunitrazepam,ro05-4435", - "summary": "Benzodiazepine that is a metabolite of Flunitrazepam, and has been sold as a research chemical.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "0.5-1mg" - }, - { - "name": "Common", - "value": "1-2mg" - }, - { - "name": "Strong", - "value": "2-4mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-60 minutes" - }, - { - "name": "Duration", - "value": "5-10 hours" - }, - { - "name": "After effects", - "value": "2-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Desomorphine", - "experiencesUrl": null, - "name": "Desomorphine", - "aliases": [ - "krok", - "krokodil" - ], - "aliasesStr": "krok,krokodil", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Substituted morphinans" - ], - "psychoactive": [ - "Opioids" - ] - }, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": [ - "opioids" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "< 10 mg" - }, - { - "name": "Light", - "value": "10 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 20 mg" - }, - { - "name": "Strong", - "value": "20 - 30 mg" - }, - { - "name": "Heavy", - "value": "30 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/DET", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DET.shtml", - "name": "DET", - "aliases": [ - "diethyltryptamine" - ], - "aliasesStr": "diethyltryptamine", - "summary": "A surprisingly uncommon analogue of DMT with similar effects and reported oral activity without the aid of an MAOI.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "10 mg" - }, - { - "name": "Light", - "value": "20 - 40 mg" - }, - { - "name": "Common", - "value": "40 - 70 mg" - }, - { - "name": "Strong", - "value": "70 - 100 mg" - }, - { - "name": "Heavy", - "value": "100 mg +" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30 - 90 minutes" - }, - { - "name": "Peak", - "value": "2 - 4 hours" - }, - { - "name": "After effects", - "value": "2 - 8 hours" - } - ] - }, - { - "name": "Vapourized", - "dosage": [ - { - "name": "Light", - "value": "15-25mg" - }, - { - "name": "Common", - "value": "30-50mg" - }, - { - "name": "Strong", - "value": "50mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-5 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/dexedrine", - "experiencesUrl": null, - "name": "Dexedrine", - "aliases": [ - "dexamfetamine", - "dextroamphetamine" - ], - "aliasesStr": "dexamfetamine,dextroamphetamine", - "summary": "A highly abusable stimulant. It is rarely prescribed in the US to treat ADHD, and is very similar in effects to Adderall, as its main ingredient is 75% of what adderall is.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-20mg" - }, - { - "name": "Strong", - "value": "20-30mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-60 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "2-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Dextromethorphan", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DXM.shtml", - "name": "DXM", - "aliases": [ - "delsym", - "dex", - "dexalone", - "dextromethorphan", - "dm", - "dmo", - "duract", - "robitussin", - "robo", - "robotussin", - "syrup" - ], - "aliasesStr": "delsym,dex,dexalone,dextromethorphan,dm,dmo,duract,robitussin,robo,robotussin,syrup", - "summary": "Commonly found in certain over the counter cough medicines. Has dissociative effects similar to ketamine or MXE, though also shares properties with opioids and alcohol. Make sure DXM is the only active ingredient in the preparation.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted morphinans" - ], - "psychoactive": [ - "Dissociatives" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "produces dependence with chronic use and has moderate abuse potential", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dissociatives" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "75 mg" - }, - { - "name": "Light", - "value": "100 - 200 mg" - }, - { - "name": "Common", - "value": "200 - 400 mg" - }, - { - "name": "Strong", - "value": "400 - 700 mg" - }, - { - "name": "Heavy", - "value": "700 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 12 hours" - }, - { - "name": "Onset", - "value": "30 - 120 minutes" - }, - { - "name": "Come up", - "value": "60 - 120 minutes" - }, - { - "name": "Peak", - "value": "3 - 6 hours" - }, - { - "name": "Offset", - "value": "2 - 4 hours" - }, - { - "name": "After effects", - "value": "4 - 24 hours" - } - ] - } - ], - "interactions": [ - { - "status": "Unsafe", - "name": "2C-T-x" - }, - { - "status": "Low Risk & Synergy", - "name": "2C-x" - }, - { - "status": "Unsafe", - "note": "Little information exists about this combination.", - "name": "5-MeO-xxT" - }, - { - "status": "Dangerous", - "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place affected patients in the recovery position to prevent vomit aspiration from excess. Additionally CNS depression can lead to difficulty breathing. Avoid on anything higher than 1st plateau.", - "name": "Alcohol" - }, - { - "status": "Unsafe", - "note": "Both substances raise heart rate, in extreme cases, panic attacks caused by these drugs have led to more serious heart issues.", - "name": "Amphetamines" - }, - { - "status": "Caution", - "note": "Small doses of benzos can end a bad trip, but both substances potentiate the ataxia and sedation caused by the other and this can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position.", - "name": "Benzodiazepines" - }, - { - "status": "Low Risk & No Synergy", - "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.", - "name": "Caffeine" - }, - { - "status": "Low Risk & Synergy", - "name": "Cannabis" - }, - { - "status": "Unsafe", - "note": "Both substances raise heart rate, in extreme cases, panic attacks caused by these drugs have led to more serious heart issues", - "name": "Cocaine" - }, - { - "status": "Low Risk & Synergy", - "name": "DMT" - }, - { - "status": "Unsafe", - "note": "The DOx class as psychedelic stimulants have the potential to mask the effects of DXM and could lead to redosing to an unsafe level. DXM can also potentiate DOx resulting in an unpleasantly intense experience.", - "name": "DOx" - }, - { - "status": "Dangerous", - "note": "Both substances cause ataxia and bring a risk of vomiting and unconsciousness. If the patient falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position. This combination is hard to predict", - "name": "GHB/GBL" - }, - { - "status": "Low Risk & No Synergy", - "name": "Ketamine" - }, - { - "status": "Low Risk & Synergy", - "name": "LSD" - }, - { - "status": "Dangerous", - "note": "High risk of serotonin syndrome", - "name": "MAOIs" - }, - { - "status": "Dangerous", - "name": "MDMA" - }, - { - "status": "Low Risk & No Synergy", - "name": "MXE" - }, - { - "status": "Low Risk & Synergy", - "name": "Mescaline" - }, - { - "status": "Low Risk & Synergy", - "name": "Mushrooms" - }, - { - "status": "Unsafe", - "name": "NBOMes" - }, - { - "status": "Low Risk & Synergy", - "name": "Nitrous" - }, - { - "status": "Dangerous", - "note": "CNS depression, difficult breathing, heart issues, hepatoxic, just very unsafe combination all around. Additionally if one takes dxm, their tolerance of opiates goes down slightly, thus causing additional synergistic effects.", - "name": "Opioids" - }, - { - "status": "Dangerous", - "name": "PCP" - }, - { - "status": "Dangerous", - "note": "High risk of serotonin syndrome.", - "name": "SSRIs" - }, - { - "status": "Dangerous", - "name": "Tramadol" - }, - { - "status": "Dangerous", - "name": "aMT" - } - ] - }, - { - "url": "https://psychonautwiki.org/wiki/Dextropropoxyphene", - "experiencesUrl": null, - "name": "Dextropropoxyphene", - "aliases": [ - "capadex", - "co-proxamol", - "coproxamol", - "darvocet", - "darvon", - "di-gesic", - "propoxyphene" - ], - "aliasesStr": "capadex,co-proxamol,coproxamol,darvocet,darvon,di-gesic,propoxyphene", - "summary": "An opioid analgesic that is an optical isomer of levopropoxyphene. Used to treat mild pain and often used for its antitussive properties. It has been taken off the market in Europe and US due to concerns of health issues relating to the Kidney, Liver, Heart and Respiratory Disorders. Just a bit stronger than Tramadol.", - "reagents": null, - "classes": { - "chemical": [ - "Phenylpropylamine" - ], - "psychoactive": [ - "Opioids" - ] - }, - "toxicity": [ - "high toxicity", - "potentially lethal when mixed with depressants like alcohol or benzodiazepines", - "known to cause potentially fatal heart arrhythmias" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "opioids" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "15 mg" - }, - { - "name": "Light", - "value": "30 - 65 mg" - }, - { - "name": "Common", - "value": "65 - 100 mg" - }, - { - "name": "Strong", - "value": "100 - 200 mg" - }, - { - "name": "Heavy", - "value": "200 mg +" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20 - 30 minutes" - }, - { - "name": "Peak", - "value": "1 - 4 hours" - }, - { - "name": "After effects", - "value": "1 - 6 hours" - } - ], - "bioavailability": "40%" - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Diazepam", - "experiencesUrl": null, - "name": "Diazepam", - "aliases": [ - "apaurin", - "diastat", - "mother's little helper", - "valium" - ], - "aliasesStr": "apaurin,diastat,mother's little helper,valium", - "summary": "A very common and widely prescribed benzodiazepine with hypnotic and sedative qualities. The metre by which other benzodiazepines are compared. May cause amnesia and lowered inhibitions in excess. Has a relatively long half-life in comparison with other benzodiazepines.", - "reagents": null, - "classes": { - "chemical": [ - "Benzodiazepines" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol or opioids" - ], - "addictionPotential": "extremely physically and psychologically addictive", - "tolerance": { - "full": "within a couple of days of continuous use", - "half": null, - "zero": "7-14 days" - }, - "crossTolerances": [ - "benzodiazepines" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "2.5 - 5 mg" - }, - { - "name": "Common", - "value": "5 - 15 mg" - }, - { - "name": "Strong", - "value": "15 - 30 mg" - }, - { - "name": "Heavy", - "value": "30 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - }, - { - "name": "Peak", - "value": "60 - 90 minutes" - }, - { - "name": "After effects", - "value": "12 - 36 hours" - } - ], - "bioavailability": "85-100%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/dibutylone", - "experiencesUrl": null, - "name": "Dibutylone", - "aliases": [], - "aliasesStr": "", - "summary": "Inactive.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Dichloropane", - "experiencesUrl": null, - "name": "RTI-111", - "aliases": [ - "dichloropane" - ], - "aliasesStr": "dichloropane", - "summary": "Stimulant of the Phenyltropane class that acts as a SNDRI. Presumably it will have a slightly slower onset and bit longer duration than its parent compound Cocaine. Yet being the Tropane analogue of 3,4-CTMP.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tropanes" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": null, - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "2 - 4 days", - "zero": "1 - 1.5 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "2.5 mg" - }, - { - "name": "Light", - "value": "2.5 - 7.5 mg" - }, - { - "name": "Common", - "value": "7.5 - 20 mg" - }, - { - "name": "Strong", - "value": "20 - 50 mg" - }, - { - "name": "Heavy", - "value": "50 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "40 - 75 minutes" - }, - { - "name": "Onset", - "value": "15 - 60 seconds" - }, - { - "name": "Come up", - "value": "15 - 60 seconds" - }, - { - "name": "Peak", - "value": "15 - 30 minutes" - }, - { - "name": "Offset", - "value": "20 - 40 minutes" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "3 mg" - }, - { - "name": "Light", - "value": "10 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 40 mg" - }, - { - "name": "Strong", - "value": "40 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 4 hours" - }, - { - "name": "Onset", - "value": "15 - 30 minutes" - }, - { - "name": "Come up", - "value": "15 - 30 minutes" - }, - { - "name": "Peak", - "value": "60 - 90 minutes" - }, - { - "name": "Offset", - "value": "60 - 90 minutes" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "10-15mg" - }, - { - "name": "Common", - "value": "15-30mg" - }, - { - "name": "Strong", - "value": "30-50mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Diclazepam", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Diclazepam.shtml", - "name": "Diclazepam", - "aliases": [], - "aliasesStr": "", - "summary": "A benzodiazepine drug and analogue of diazepam first synthesised by Leo Sternbach at Hoffman-LaRoche in 1960, it has become prominent as an RC benzodiazepine on the grey market in recent years, particularly with the decline in etizolam availability. A sedative and hypnotic it is of intermediate to long half life with similar effects to diazepam, though 10x more potent.", - "reagents": null, - "classes": { - "chemical": [ - "Benzodiazepines" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol or opioids" - ], - "addictionPotential": "extremely physically and psychologically addictive", - "tolerance": { - "full": "within 3-4 days of continuous use", - "half": null, - "zero": "7 - 14 days" - }, - "crossTolerances": [ - "GABAergic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.5 mg" - }, - { - "name": "Light", - "value": "0.5 - 1 mg" - }, - { - "name": "Common", - "value": "1 - 3 mg" - }, - { - "name": "Strong", - "value": "3 - 4 mg" - }, - { - "name": "Heavy", - "value": "4 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 12 hours" - }, - { - "name": "Onset", - "value": "10 - 45 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/diclofensine", - "experiencesUrl": null, - "name": "Diclofensine", - "aliases": [ - "ro8-4650" - ], - "aliasesStr": "ro8-4650", - "summary": "A triple monoamine reuptake inhibitor developed by Hoffman-LaRoche in the 1970s as an antidepressant but discontinued, probably due to high abuse potential. Has not become popular as a recreational drug at this time. Acts as an SNDRI, mostly inhibits dopamine and noradrenaline.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Threshold:", - "dosage": [ - { - "name": "Threshold", - "value": "12-15mg" - }, - { - "name": "Common", - "value": "40-60mg" - }, - { - "name": "Heavy", - "value": "60-80mg" - } - ], - "duration": [ - { - "name": "Duration", - "value": "4-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/diethyl-ether", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Ether.shtml", - "name": "Diethyl ether", - "aliases": [ - "ether" - ], - "aliasesStr": "ether", - "summary": "An industrial solvent which is sometimes used recreationally as a dissociative anaesthetic, with a short length of action. Effects are similar to alcohol. Leaves one's breath tasting and smelling strongly of ether for much longer than the experience lasts.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "6", - "duration": [ - { - "name": "After effects", - "value": "hours hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Dihydrocodeine", - "experiencesUrl": null, - "name": "Dihydrocodeine", - "aliases": [ - "dhc" - ], - "aliasesStr": "dhc", - "summary": "A weak semi-synthetic opioid analgesic and antitussive (anti-cough) drug. Often sold as a syrup in combination with aspirin or paracetamol. Not to be confused with the slightly less potent codeine.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted morphinans" - ], - "psychoactive": [ - "Opioids" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol or benzodiazepines" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "opioids" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "20 mg" - }, - { - "name": "Light", - "value": "50 - 100 mg" - }, - { - "name": "Common", - "value": "100 - 150 mg" - }, - { - "name": "Strong", - "value": "150 - 200 mg" - }, - { - "name": "Heavy", - "value": "200 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 4 hours" - }, - { - "name": "Onset", - "value": "30 - 45 minutes" - } - ] - }, - { - "name": "Light:", - "dosage": [ - { - "name": "Light", - "value": "50-100mg" - }, - { - "name": "Common", - "value": "100-150mg" - }, - { - "name": "Heavy", - "value": "150-200mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-45 minutes" - }, - { - "name": "Duration", - "value": "3-4 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/dimemebfe", - "experiencesUrl": null, - "name": "Dimemebfe", - "aliases": [ - "5-meo-bfe" - ], - "aliasesStr": "5-meo-bfe", - "summary": "Related in structure to 5-MeO-DMT, yet much less potent. Described as feeling somewhat similar to mushrooms, with some empathogenic effects.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "25-50mg" - }, - { - "name": "Common", - "value": "50-75mg" - }, - { - "name": "Strong", - "value": "75-125mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-40 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/dimethylone", - "experiencesUrl": null, - "name": "Dimethylone", - "aliases": [], - "aliasesStr": "", - "summary": "Inactive.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Diphenhydramine", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Diphenhydramine.shtml", - "name": "DPH", - "aliases": [ - "benadryl", - "diphenhydramine", - "nytol", - "sominex", - "unisom sleepmelts", - "zzzquil" - ], - "aliasesStr": "benadryl,diphenhydramine,nytol,sominex,unisom sleepmelts,zzzquil", - "summary": "An antihistamine which, when taken in smaller doses relieves allergies and insomnia. In larger doses works as a deliriant and can actually keep the user awake. Generally the 'high' of this drug is reported as dysphoric, potentially causing hallucinations indistinguishable from reality.", - "reagents": null, - "classes": { - "chemical": [ - "Ethanolamine" - ], - "psychoactive": [ - "Deliriant", - "Depressant" - ] - }, - "toxicity": [ - "fatal at amounts close to or exceeding 2 grams" - ], - "addictionPotential": "produces dependence with chronic use", - "tolerance": { - "full": "with repeated use", - "half": null, - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "deliriant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "25 mg" - }, - { - "name": "Light", - "value": "100 - 200 mg" - }, - { - "name": "Common", - "value": "200 - 400 mg" - }, - { - "name": "Strong", - "value": "400 - 700 mg" - }, - { - "name": "Heavy", - "value": "700 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 10 hours" - }, - { - "name": "Onset", - "value": "30 - 90 minutes" - }, - { - "name": "Come up", - "value": "45 - 90 minutes" - }, - { - "name": "Peak", - "value": "1 - 4 hours" - }, - { - "name": "Offset", - "value": "2 - 6 hours" - }, - { - "name": "After effects", - "value": "up to 24 hours" - } - ], - "bioavailability": "40-60%" - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Diphenidine", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Diphenidine.shtml", - "name": "Diphenidine", - "aliases": [ - "dpd" - ], - "aliasesStr": "dpd", - "summary": "A dissociative anaesthetic related to ephenidine with similar qualities to PCP and ketamine. Has seen some popularity as a recreational RC. Dosage curve has been reported as particularly steep, so care should be taken.", - "reagents": null, - "classes": { - "chemical": [ - "Diarylethylamines" - ], - "psychoactive": [ - "Dissociatives" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dissociative" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "?? mg", - "note": "\"??\" is not a number." - }, - { - "name": "Light", - "value": "?? - 20 mg", - "note": "\"??\" is not a number." - }, - { - "name": "Common", - "value": "20 - 40 mg" - }, - { - "name": "Strong", - "value": "40 - 55 mg" - }, - { - "name": "Heavy", - "value": "> 55 mg" - } - ], - "duration": [ - { - "name": "Total", - "value": "1 - 3 hours" - }, - { - "name": "Onset", - "value": "30 - 90 seconds" - }, - { - "name": "Peak", - "value": "0.5 - 2 hours" - }, - { - "name": "Offset", - "value": "20 - 40 minutes" - }, - { - "name": "After effects", - "value": "2 - 5 hours" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "30 mg" - }, - { - "name": "Light", - "value": "40 - 65 mg" - }, - { - "name": "Common", - "value": "65 - 100 mg" - }, - { - "name": "Strong", - "value": "100 - 130 mg" - }, - { - "name": "Heavy", - "value": "> 130 mg" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 5 hours" - }, - { - "name": "Onset", - "value": "15 - 30 minutes" - }, - { - "name": "After effects", - "value": "4 - 24 Hours" - } - ] - }, - { - "name": "Rectal", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 40 mg" - }, - { - "name": "Strong", - "value": "40 - 80 mg" - }, - { - "name": "Heavy", - "value": "80 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 7 hours" - }, - { - "name": "Onset", - "value": "10 - 30 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/dipipanone", - "experiencesUrl": null, - "name": "Dipipanone", - "aliases": [ - "diconal" - ], - "aliasesStr": "diconal", - "summary": "A powerful opioid of equivalent strength to morphine, rarely seen outside of medical environments. Often used to treat severe pain where morphine is contraindicated. Usually found in combination with the antihistamine Cyclizine, which potentiates it.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "3-5mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10-20mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "5-15 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "Intravenous", - "duration": [ - { - "name": "Onset", - "value": "0-1 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/DiPT", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DiPT.shtml", - "name": "DiPT", - "aliases": [ - "diisopropyltryptamine" - ], - "aliasesStr": "diisopropyltryptamine", - "summary": "A rare tryptamine psychedelic closely related to DMT, with the interesting property of having little visual hallucinations, but strong auditory effects.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 20 mg" - }, - { - "name": "Strong", - "value": "20 - 30 mg" - }, - { - "name": "Heavy", - "value": "30 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "15 - 60 minutes" - }, - { - "name": "Onset", - "value": "5 - 15 minutes" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "15 mg" - }, - { - "name": "Light", - "value": "15 - 30 mg" - }, - { - "name": "Common", - "value": "30 - 75 mg" - }, - { - "name": "Strong", - "value": "75 - 150 mg" - }, - { - "name": "Heavy", - "value": "150 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 6 hours" - }, - { - "name": "Onset", - "value": "30 - 60 minutes" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - }, - { - "name": "Threshold:", - "dosage": [ - { - "name": "Threshold", - "value": "15mg" - }, - { - "name": "Light", - "value": "15-25mg" - }, - { - "name": "Common", - "value": "30-50mg" - }, - { - "name": "Heavy", - "value": "50mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-60 minutes" - }, - { - "name": "Duration", - "value": "3-5 hours" - }, - { - "name": "After effects", - "value": "12-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/dmaa", - "experiencesUrl": null, - "name": "DMAA", - "aliases": [], - "aliasesStr": "", - "summary": "Also known as methylhexanamine, this sympathetomimetic drug was developed as a nasal decongestant by Eli Lilly in the 1940s. It has been used as a weight loss aid and missold as a dietary supplement and component of some energy drinks. Carries a risk of heart attack, stroke and other life-threatening cardiovascular issues.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "20-50mg" - }, - { - "name": "Strong", - "value": "50-100mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "Rapid." - }, - { - "name": "Duration", - "value": "2-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/DMT", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DMT.shtml", - "name": "DMT", - "aliases": [ - "dimethyltryptamine", - "dmitry", - "n,n-dmt", - "the glory", - "the spirit molecule" - ], - "aliasesStr": "dimethyltryptamine,dmitry,n,n-dmt,the glory,the spirit molecule", - "summary": "A popular and powerful psychedelic, typically used in two ways; either it is vapourised for a short 'breakthrough' experience, or it is taken in combination with an enzyme inhibitor for a long, intense trip (this is also known as ayahuasca or pharmahuasca).", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "extremely low toxicity" - ], - "addictionPotential": "non-addictive with a low abuse potential", - "tolerance": { - "full": "does not appear to occur", - "half": null, - "zero": null - }, - "crossTolerances": [ - "psychedelics" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "2 mg" - }, - { - "name": "Light", - "value": "10 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 40 mg" - }, - { - "name": "Strong", - "value": "40 - 60 mg" - }, - { - "name": "Heavy", - "value": "60+ mg" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 20 minutes" - }, - { - "name": "Onset", - "value": "20 - 40 seconds" - }, - { - "name": "Come up", - "value": "1 - 3 minutes" - }, - { - "name": "Peak", - "value": "2 - 8 minutes" - }, - { - "name": "Offset", - "value": "1 - 6 minutes" - }, - { - "name": "After effects", - "value": "10 - 60 minutes" - } - ] - }, - { - "name": "Intravenous", - "dosage": [ - { - "name": "Threshold", - "value": "4 mg" - }, - { - "name": "Light", - "value": "4 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 15 mg" - }, - { - "name": "Strong", - "value": "15 - 20 mg" - }, - { - "name": "Heavy", - "value": "20 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "15 - 30 minutes" - }, - { - "name": "Onset", - "value": "2 - 10 seconds" - }, - { - "name": "Come up", - "value": "70 - 100 seconds" - }, - { - "name": "Peak", - "value": "2 - 5 minutes" - }, - { - "name": "Offset", - "value": "10 - 20 minutes" - } - ] - }, - { - "name": "Vapourised", - "dosage": [ - { - "name": "Threshold", - "value": "5-10mg" - }, - { - "name": "Light", - "value": "10-15mg" - }, - { - "name": "Common", - "value": "15-25mg" - }, - { - "name": "Strong", - "value": "25-35mg" - }, - { - "name": "Heavy", - "value": "35mg+" - } - ], - "duration": [ - { - "name": "After effects", - "value": "15-60 minutes" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "10-25mg" - }, - { - "name": "Common", - "value": "25-50mg" - }, - { - "name": "Strong", - "value": "50-125mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "3-5 minutes" - }, - { - "name": "Duration", - "value": "45-60 minutes" - }, - { - "name": "After effects", - "value": "15-60 minutes" - } - ] - }, - { - "name": "Vaporized/smoked", - "duration": [ - { - "name": "Onset", - "value": "0-2 minutes" - }, - { - "name": "Duration", - "value": "3-10 minutes" - }, - { - "name": "After effects", - "value": "15-60 minutes" - } - ] - }, - { - "name": "Oral_MAOI", - "duration": [ - { - "name": "Onset", - "value": "20-45 minutes" - }, - { - "name": "Duration", - "value": "180-420 minutes" - }, - { - "name": "After effects", - "value": "15-60 minutes" - } - ] - } - ], - "interactions": [ - { - "status": "Low Risk & Synergy", - "name": "2C-T-x" - }, - { - "status": "Low Risk & Synergy", - "name": "2C-x" - }, - { - "status": "Low Risk & Synergy", - "name": "5-MeO-xxT" - }, - { - "status": "Low Risk & Decrease", - "name": "Alcohol" - }, - { - "status": "Caution", - "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", - "name": "Amphetamines" - }, - { - "status": "Low Risk & Decrease", - "name": "Benzodiazepines" - }, - { - "status": "Low Risk & No Synergy", - "name": "Caffeine" - }, - { - "status": "Caution", - "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", - "name": "Cannabis" - }, - { - "status": "Caution", - "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", - "name": "Cocaine" - }, - { - "status": "Low Risk & Synergy", - "name": "DOx" - }, - { - "status": "Low Risk & Synergy", - "name": "DXM" - }, - { - "status": "Low Risk & Decrease", - "name": "GHB/GBL" - }, - { - "status": "Low Risk & Synergy", - "name": "Ketamine" - }, - { - "status": "Low Risk & Synergy", - "name": "LSD" - }, - { - "status": "Low Risk & Synergy", - "name": "MAOIs" - }, - { - "status": "Low Risk & Synergy", - "name": "MDMA" - }, - { - "status": "Low Risk & Synergy", - "name": "MXE" - }, - { - "status": "Low Risk & Synergy", - "name": "Mescaline" - }, - { - "status": "Low Risk & Synergy", - "name": "Mushrooms" - }, - { - "status": "Low Risk & Synergy", - "name": "NBOMes" - }, - { - "status": "Low Risk & Synergy", - "name": "Nitrous" - }, - { - "status": "Low Risk & No Synergy", - "name": "Opioids" - }, - { - "status": "Low Risk & Synergy", - "name": "PCP" - }, - { - "status": "Low Risk & Decrease", - "name": "SSRIs" - }, - { - "status": "Unsafe", - "note": "Tramadol is well known to lower seizure threshold and psychedelics also cause occasional seizures.", - "name": "Tramadol" - }, - { - "status": "Low Risk & Synergy", - "name": "aMT" - } - ] - }, - { - "url": "https://psychonautwiki.org/wiki/DOB", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DOB.shtml", - "name": "DOB", - "aliases": [ - "brolamfetamine", - "bromo-dma" - ], - "aliasesStr": "brolamfetamine,bromo-dma", - "summary": "DOB is a relatively uncommon synthetic psychedelic. It is best known for its very low doses and long duration. Historically it has rarely been taken deliberately, but in place of LSD, however it has recently found its own place in the research chemical scene.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted amphetamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "4-7 days", - "zero": "7-10 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.2 mg" - }, - { - "name": "Light", - "value": "0.2 - 0.75 mg" - }, - { - "name": "Common", - "value": "0.75 - 1.75 mg" - }, - { - "name": "Strong", - "value": "1.75 - 3 mg" - }, - { - "name": "Heavy", - "value": "3 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "14 - 24 hours" - }, - { - "name": "Onset", - "value": "30 - 90 minutes" - }, - { - "name": "Come up", - "value": "2 - 4 hours" - }, - { - "name": "Peak", - "value": "6 - 10 hours" - }, - { - "name": "Offset", - "value": "4 - 8 hours" - }, - { - "name": "After effects", - "value": "4 - 16 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/DOC", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DOC.shtml", - "name": "DOC", - "aliases": [], - "aliasesStr": "", - "summary": "A potent stimulating psychedelic with a long action, a phenethylamine and substituted amphetamine. Sometimes sold as LSD but also enjoyed on its own merits by many. Usually sold on blotters slightly larger than those LSD is found on, but can also be bought in powder form.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted amphetamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.5 mg" - }, - { - "name": "Light", - "value": "1 - 2 mg" - }, - { - "name": "Common", - "value": "2 - 4 mg" - }, - { - "name": "Strong", - "value": "4 - 6 mg" - }, - { - "name": "Heavy", - "value": "6 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "12 - 24 hours" - }, - { - "name": "Onset", - "value": "1 - 2 hours" - }, - { - "name": "Come up", - "value": "2 - 3 hours" - }, - { - "name": "Peak", - "value": "6 - 12 hours" - }, - { - "name": "Offset", - "value": "2 - 8 hours" - }, - { - "name": "After effects", - "value": "6 - 24 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "0.25 mg" - }, - { - "name": "Light", - "value": "0.25 - 1 mg" - }, - { - "name": "Common", - "value": "1 - 2 mg" - }, - { - "name": "Strong", - "value": "2 - 3.5 mg" - }, - { - "name": "Heavy", - "value": "3.5 mg +" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1 - 5 minutes" - }, - { - "name": "Come up", - "value": "10 - 30 minutes" - }, - { - "name": "Peak", - "value": "2 - 6 hours" - }, - { - "name": "Offset", - "value": "2 - 8 hours" - }, - { - "name": "After effects", - "value": "2 - 24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/doet", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DOET.shtml", - "name": "DOET", - "aliases": [ - "doe" - ], - "aliasesStr": "doe", - "summary": "A potent and long acting psychedelic stimulant and substituted amphetamine, similar in effects to other DOx compounds. First synthesised by Alexander Shulgin.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "1mg" - }, - { - "name": "Light", - "value": "2-4mg" - }, - { - "name": "Common", - "value": "4-6mg" - }, - { - "name": "Strong", - "value": "6-10mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-3 hours" - }, - { - "name": "Duration", - "value": "12-30 hours" - }, - { - "name": "After effects", - "value": "12-72 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/DOI", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DOI.shtml", - "name": "DOI", - "aliases": [], - "aliasesStr": "", - "summary": "A potent, long-acting psychedelic stimulant. Historically, it has rarely been consumed deliberately, but occasionally sold as LSD. However, it has recently found its own little nest in the research chemical community.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted amphetamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "5-7 days", - "zero": "10-14 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.5 mg" - }, - { - "name": "Light", - "value": "0.5 - 1 mg" - }, - { - "name": "Common", - "value": "1 - 2 mg" - }, - { - "name": "Strong", - "value": "2 - 3 mg" - }, - { - "name": "Heavy", - "value": "3 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "16 - 24 hours" - }, - { - "name": "Onset", - "value": "1 - 2 hours" - }, - { - "name": "Come up", - "value": "1.5 - 3 hours" - }, - { - "name": "Peak", - "value": "6 - 10 hours" - }, - { - "name": "Offset", - "value": "4 - 8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/doip", - "experiencesUrl": null, - "name": "DOIP", - "aliases": [], - "aliasesStr": "", - "summary": "A rare psychedelic ampthetamine of the same class as the likes of DOM. Is a quite powerful and potent psychedelic that has very strong amphetamine effects. Not for the faint of heart.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Threshold:", - "dosage": [ - { - "name": "Threshold", - "value": "800ug" - }, - { - "name": "Light", - "value": "800-1500ug" - }, - { - "name": "Common", - "value": "1.5-3mg" - }, - { - "name": "Strong", - "value": "3mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "45-120 minutes" - }, - { - "name": "Duration", - "value": "18-30 hours" - }, - { - "name": "After effects", - "value": "1-48 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/DOM", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DOM.shtml", - "name": "DOM", - "aliases": [ - "and peace)", - "stp", - "stp (serenity", - "tranquility" - ], - "aliasesStr": "and peace),stp,stp (serenity,tranquility", - "summary": "The most popular psychedelic amphetamine due to its pleasant effects, lower potency and shorter duration. Effects have been described as 'sillier' than LSD and related DOX chemicals", - "reagents": null, - "classes": { - "chemical": [ - "Substituted amphetamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.5 mg" - }, - { - "name": "Light", - "value": "1 - 3 mg" - }, - { - "name": "Common", - "value": "3 - 5 mg" - }, - { - "name": "Strong", - "value": "5 - 10 mg" - }, - { - "name": "Heavy", - "value": "10 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "12 - 16 hours" - }, - { - "name": "Onset", - "value": "1 - 2 hours" - }, - { - "name": "Come up", - "value": "2 - 3 hours" - }, - { - "name": "Peak", - "value": "6 - 8 hours" - }, - { - "name": "Offset", - "value": "3 - 5 hours" - }, - { - "name": "After effects", - "value": "4 - 16 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/don", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DON.shtml", - "name": "DON", - "aliases": [], - "aliasesStr": "", - "summary": "A very rare psychedelic Amphetamine. That is more rough on the body then other DOx compounds. Making it physically painful in some cases.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Threshold:", - "dosage": [ - { - "name": "Threshold", - "value": "2mg" - }, - { - "name": "Light", - "value": "3mg" - }, - { - "name": "Common", - "value": "3-5mg" - }, - { - "name": "Heavy", - "value": "5mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-120 minutes" - }, - { - "name": "Duration", - "value": "14-22 hours" - }, - { - "name": "After effects", - "value": "12-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/dopr", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DOPR.shtml", - "name": "DOPR", - "aliases": [], - "aliasesStr": "", - "summary": "A rare psychedelic amphetamine of the same class as DOM. This is a powerful and potent psychedelic with all the effects you would expect from an amphetamine. Described by Shulgin as a 'heavy duty psychedelic'. Analogue of 2C-P.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "1.25mg" - }, - { - "name": "Light", - "value": "2.5mg" - }, - { - "name": "Common", - "value": "2.5-3.5mg" - }, - { - "name": "Heavy", - "value": "3.5-5mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "90-240 minutes" - }, - { - "name": "Duration", - "value": "18-30 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/doxylamine", - "experiencesUrl": null, - "name": "Doxylamine", - "aliases": [], - "aliasesStr": "", - "summary": "A first generation antihistamine and anticholinergic, originally used to treat nausea and itching, and later as a sleep aid. Causes drowsiness, and delirium in overdose. Sometimes used with opioids to combat nausea and potentiate effects.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "10mg" - }, - { - "name": "Light", - "value": "75-200mg" - }, - { - "name": "Common", - "value": "200-350mg" - }, - { - "name": "Heavy", - "value": "350mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-30 minutes" - }, - { - "name": "Duration", - "value": "6-8 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/DPT", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_DPT.shtml", - "name": "DPT", - "aliases": [ - "dipropyltryptamine", - "the light" - ], - "aliasesStr": "dipropyltryptamine,the light", - "summary": "N,N-Dipropyltryptamine, a psychedelic tryptamine compound and lesser-known analogue of DMT, with similar psychedelic effects. Like DMT it is a partial serotonin receptor agonist.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "10 mg" - }, - { - "name": "Light", - "value": "15 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 50 mg" - }, - { - "name": "Strong", - "value": "50 - 100 mg" - }, - { - "name": "Heavy", - "value": "100 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "30 - 90 minutes" - }, - { - "name": "Onset", - "value": "0 - 1 minutes" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "50 mg" - }, - { - "name": "Light", - "value": "75 - 150 mg" - }, - { - "name": "Common", - "value": "150 - 250 mg" - }, - { - "name": "Strong", - "value": "250 - 350 mg" - }, - { - "name": "Heavy", - "value": "350 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 4 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "After effects", - "value": "2 - 3 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "20 - 50 mg" - }, - { - "name": "Common", - "value": "50 - 100 mg" - }, - { - "name": "Strong", - "value": "100 - 200 mg" - }, - { - "name": "Heavy", - "value": "200 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 5 hours" - }, - { - "name": "Onset", - "value": "5 - 20 minutes" - }, - { - "name": "Peak", - "value": "30 - 46 minutes" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - }, - { - "name": "IM", - "dosage": [ - { - "name": "Threshold", - "value": "5-10mg" - }, - { - "name": "Light", - "value": "10-35mg" - }, - { - "name": "Common", - "value": "35-60mg" - }, - { - "name": "Strong", - "value": "60-100mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "2-10 minutes" - }, - { - "name": "Duration", - "value": "3-4 hours" - }, - { - "name": "After effects", - "value": "2-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/dramamine", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Dimenhydrinate.shtml", - "name": "Dimenhydrinate", - "aliases": [ - "gravol" - ], - "aliasesStr": "gravol", - "summary": "A combination of diphenhydramine and a mild stimulant to counteract the drowsiness accompanied by typical medical use of diphenhydramine. Roughly half the potency of DPH. Small doses can relieve motion sickness, reduce body load from opioids or DXM. Becomes a deliriant in high doses, keeping the user awake and often causing dysphoric, realistic hallucinations.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "100-250mg" - }, - { - "name": "Common", - "value": "250mg-400mg" - }, - { - "name": "Strong", - "value": "400mg-600mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-90 minutes" - }, - { - "name": "Duration", - "value": "5-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Efavirenz", - "experiencesUrl": null, - "name": "Efavirenz", - "aliases": [ - "sustiva" - ], - "aliasesStr": "sustiva", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Benzoxazine" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "low toxicity", - "may cause liver toxicity at high doses or after chronic use" - ], - "addictionPotential": "not known to be habit-forming", - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Common", - "value": "600 - 1800 mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1 - 5 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "6 - 12 hours" - } - ], - "bioavailability": "50%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/eflea", - "experiencesUrl": null, - "name": "EFLEA", - "aliases": [], - "aliasesStr": "", - "summary": "Prodrug for EDMA. May be inactive.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/ephedrine", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Ephedrine.shtml", - "name": "Ephedrine", - "aliases": [], - "aliasesStr": "", - "summary": "Ephedrine is a sympathomimetic amine commonly used as a stimulant, concentration aid, decongestant, appetite suppressant, and to treat hypotension associated with anaesthesia. A methamphetamine analogue and commonly used in the production of methamphetamine.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5-10mg" - }, - { - "name": "Light", - "value": "10-20mg" - }, - { - "name": "Common", - "value": "20-30mg" - }, - { - "name": "Strong", - "value": "30-50mg" - }, - { - "name": "Heavy", - "value": "50mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-20 minutes" - }, - { - "name": "Duration", - "value": "3 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Ephenidine", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Ephenidine.shtml", - "name": "Ephenidine", - "aliases": [ - "nedpa" - ], - "aliasesStr": "nedpa", - "summary": "A dissociative drug which is less potent and less confusing than MXE but with otherwise similar properties. Reported as causing light stimulant effects at lower doses.", - "reagents": null, - "classes": { - "chemical": [ - "Diarylethylamines" - ], - "psychoactive": [ - "Dissociatives" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dissociative" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "30 mg" - }, - { - "name": "Light", - "value": "30 - 70 mg" - }, - { - "name": "Common", - "value": "70 - 100 mg" - }, - { - "name": "Strong", - "value": "100 - 150 mg" - }, - { - "name": "Heavy", - "value": "150 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 7 hours" - }, - { - "name": "Onset", - "value": "10 - 30 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Ephylone", - "experiencesUrl": null, - "name": "Ephylone", - "aliases": [ - "bk-ebdp", - "bk-ethyl-k", - "\u03b2k-ebdp" - ], - "aliasesStr": "bk-ebdp,bk-ethyl-k,\u03b2k-ebdp", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Khat#1#" - ], - "psychoactive": [ - "Stimulants", - "Entactogens" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": null, - "zero": null - }, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 40 mg" - }, - { - "name": "Strong", - "value": "40 - 80 mg" - }, - { - "name": "Heavy", - "value": null, - "note": "Ephylone may be fatal at heavy doses." - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours" - }, - { - "name": "Onset", - "value": "15 - 30 minutes" - }, - { - "name": "After effects", - "value": "6 - 24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/EPT", - "experiencesUrl": null, - "name": "EPT", - "aliases": [ - "ethylpropyltryptamine", - "n,n-ethylpropyltryptamine" - ], - "aliasesStr": "ethylpropyltryptamine,n,n-ethylpropyltryptamine", - "summary": "Ethylpropyltryptamine a novel tryptamine, that is the structural homologue of DMT.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "does not produce dependence and has low abuse potential", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "20 - 40 mg" - }, - { - "name": "Common", - "value": "40 - 80 mg" - }, - { - "name": "Strong", - "value": "80 - 110 mg" - }, - { - "name": "Heavy", - "value": "110 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 4 hours" - }, - { - "name": "Onset", - "value": "5 - 20 minutes" - }, - { - "name": "After effects", - "value": "1 - 3 hours" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50-75mg" - }, - { - "name": "Common", - "value": "75-100mg" - }, - { - "name": "Strong", - "value": "100mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-60 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Escaline", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Escaline.shtml", - "name": "Escaline", - "aliases": [], - "aliasesStr": "", - "summary": "First synthesised in the 50s, this uncommon drug was reexamined by David Nichols in the 1990s. It is an analogue of mescaline which is roughly six times more potent, and is thus a powerful psychedelic phenethylamine. Subjective effects may include stimulation and hallucinations.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "20 mg" - }, - { - "name": "Light", - "value": "30 - 50 mg" - }, - { - "name": "Common", - "value": "50 - 100 mg" - }, - { - "name": "Strong", - "value": "100 - 150 mg" - }, - { - "name": "Heavy", - "value": "150 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 12 hours" - }, - { - "name": "Onset", - "value": "90 - 120 minutes" - }, - { - "name": "After effects", - "value": "3 - 5 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/escitalopram", - "experiencesUrl": null, - "name": "Escitalopram", - "aliases": [ - "cipralex", - "lexapro" - ], - "aliasesStr": "cipralex,lexapro", - "summary": null, - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/estazolam", - "experiencesUrl": null, - "name": "Estazolam", - "aliases": [ - "elprazolam", - "eurodin", - "prosom" - ], - "aliasesStr": "elprazolam,eurodin,prosom", - "summary": "A rarely prescribed medium-duration prescription benzodiazepine. Mainly used as a hypnotic, it can cause amnesia and lowered inhibitions in excess.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "0.5-1mg" - }, - { - "name": "Common", - "value": "1-2mg" - }, - { - "name": "Strong", - "value": "2-4mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-60 minutes" - }, - { - "name": "Duration", - "value": "7-12 hours" - }, - { - "name": "After effects", - "value": "2-24 hours" - } - ], - "bioavailability": "93%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/eszopiclone", - "experiencesUrl": null, - "name": "Eszopiclone", - "aliases": [], - "aliasesStr": "", - "summary": "The d-isomer of Zopiclone, this drug is a potent hypnotic 'Z' drug often used to treat insomnia. High doses may cause amnesia, delirium and lowered inhibitions. Should not be combined with any depressants. Limited recreational value.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "0.5-1mg" - }, - { - "name": "Common", - "value": "1-2mg" - }, - { - "name": "Strong", - "value": "2-4mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "6-10 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/ETH-CAT", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Ethylcathinone.shtml", - "name": "ETH-CAT", - "aliases": [ - "e-cat", - "ethcathinone", - "ethylcathinone", - "ethylpropion" - ], - "aliasesStr": "e-cat,ethcathinone,ethylcathinone,ethylpropion", - "summary": "Ethylcathinone is a synthetic stimulant. It is similar to ecstasy in the sense that it provides euphoria, feelings of empathy and openness, and a desire to talk with others. It also carries over to some of the negative effects of ecstasy, such as insomnia, tightened jaw muscles, and grinding of the teeth.", - "reagents": null, - "classes": { - "chemical": [ - "Khat#1#" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "mildly addictive with a comparatively low potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "2 - 3 days", - "zero": "3-5 days" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "60 mg" - }, - { - "name": "Light", - "value": "100 - 150 mg" - }, - { - "name": "Common", - "value": "150 - 225 mg" - }, - { - "name": "Strong", - "value": "225 - 325 mg" - }, - { - "name": "Heavy", - "value": "325 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 5 hours" - }, - { - "name": "Onset", - "value": "15 - 40 minutes" - }, - { - "name": "Come up", - "value": "15 - 30 minutes" - }, - { - "name": "Peak", - "value": "60 - 90 minutes" - }, - { - "name": "Offset", - "value": "60 - 120 minutes" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "15 - 35 mg" - }, - { - "name": "Common", - "value": "35 - 70 mg" - }, - { - "name": "Strong", - "value": "70 - 100 mg" - }, - { - "name": "Heavy", - "value": "100 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 3 hours" - }, - { - "name": "Onset", - "value": "1 - 5 minutes" - }, - { - "name": "Come up", - "value": "15 - 30 minutes" - }, - { - "name": "Peak", - "value": "60 - 90 minutes" - }, - { - "name": "Offset", - "value": "30 - 60 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/ETH-LAD", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_ETHLAD.shtml", - "name": "ETH-LAD", - "aliases": [ - "ethlad" - ], - "aliasesStr": "ethlad", - "summary": "A psychedelic drug and slightly more potent analogue of LSD, first synthesised by Alexander Shulgin - sometimes described as being less 'abrasive' than LSD. Less common than the associated AL-LAD, though has seen some popularity since its release on the Internet research chemical scene in 2015.", - "reagents": null, - "classes": { - "chemical": [ - "Lysergamides" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "5-7 days", - "zero": "14 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "15 \u00b5g" - }, - { - "name": "Light", - "value": "30 - 60 \u00b5g" - }, - { - "name": "Common", - "value": "60 - 150 \u00b5g" - }, - { - "name": "Strong", - "value": "150 - 225 \u00b5g" - }, - { - "name": "Heavy", - "value": "225 \u00b5g +" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 12 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - }, - { - "name": "Come up", - "value": "45 - 90 minutes" - }, - { - "name": "Peak", - "value": "4 - 6 hours" - }, - { - "name": "Offset", - "value": "2 - 4 hours" - }, - { - "name": "After effects", - "value": "8 - 48 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/ethaqualone", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Etaqualone.shtml", - "name": "Ethaqualone", - "aliases": [ - "etaqualone" - ], - "aliasesStr": "etaqualone", - "summary": "Analogue of Methaqualone that was mostly marketed in France. Slightly weaker and shorter acting than the prior.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "100-175mg" - }, - { - "name": "Common", - "value": "175-300mg" - }, - { - "name": "Strong", - "value": "300-450mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-45 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "2-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/ethketamine", - "experiencesUrl": null, - "name": "Ethketamine", - "aliases": [ - "n-ethyl-norketamine", - "n-ethylnorketamine", - "nek" - ], - "aliasesStr": "n-ethyl-norketamine,n-ethylnorketamine,nek", - "summary": "Ethketamine is a research chemical with properties similar to ketamine. While ketamine is a dissociative anesthetic producing hallucinogenic and sedative effects, recreational users have reported euphoria and dissociation when using NENK.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "15-40mg" - }, - { - "name": "Common", - "value": "40-90mg" - }, - { - "name": "Strong", - "value": "90-160mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "1-3 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "5-15 minutes" - }, - { - "name": "Duration", - "value": "1-3 hours" - }, - { - "name": "After effects", - "value": "1-2 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/NEP", - "experiencesUrl": null, - "name": "NEP", - "aliases": [ - "ethyl-pentedrone", - "n-ethylpentedrone" - ], - "aliasesStr": "ethyl-pentedrone,n-ethylpentedrone", - "summary": "A stimulant that came out around the same time as Ethyl-Hexedrone, not much information on it. Is in the cathinone family of substances. Related to Pentedrone.", - "reagents": null, - "classes": { - "chemical": [ - "Khat#1#" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "5 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 30 mg" - }, - { - "name": "Strong", - "value": "30 - 50 mg" - }, - { - "name": "Heavy", - "value": "50 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1.5 - 3 hours" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "10 mg" - }, - { - "name": "Light", - "value": "10 - 25 mg" - }, - { - "name": "Common", - "value": "25 - 40 mg" - }, - { - "name": "Strong", - "value": "40 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "10 mg" - }, - { - "name": "Light", - "value": "10 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 40 mg" - }, - { - "name": "Strong", - "value": "40 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Ethylmorphine", - "experiencesUrl": null, - "name": "Ethylmorphine", - "aliases": [ - "codethyline", - "dionine" - ], - "aliasesStr": "codethyline,dionine", - "summary": "A medium-strength opioid analgesic and analogue of morphine. Considered less potent than morphine but more potent than codeine, and has been used in Germany for this reason. Said to have a 'ceiling' effect where no more euphoria occurs with increased dosage. Under investigation as a maintainance drug in opioid dependence therapy.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted morphinans" - ], - "psychoactive": [ - "Opioids" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol or benzodiazepines" - ], - "addictionPotential": "very addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "opioids" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "20 mg" - }, - { - "name": "Light", - "value": "40 - 50 mg" - }, - { - "name": "Common", - "value": "50 - 100 mg" - }, - { - "name": "Strong", - "value": "100 - 200 mg" - }, - { - "name": "Heavy", - "value": "200 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 5 hours" - }, - { - "name": "Onset", - "value": "15 - 30 minutes" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Ethylone", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_bkMDEA.shtml", - "name": "Ethylone", - "aliases": [ - "bk-mdea", - "mdec" - ], - "aliasesStr": "bk-mdea,mdec", - "summary": "A euphoric stimulant often sold in place of MDMA since methylone was banned. Slightly less potent and empathogenic than methylone, it is often described as more of a 'straight stimulant.'", - "reagents": null, - "classes": { - "chemical": null, - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "75 mg" - }, - { - "name": "Light", - "value": "75 - 150 mg" - }, - { - "name": "Common", - "value": "150 - 225 mg" - }, - { - "name": "Strong", - "value": "225 - 325 mg" - }, - { - "name": "Heavy", - "value": "325 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 4 hours" - }, - { - "name": "Onset", - "value": "15 - 45 minutes" - }, - { - "name": "Peak", - "value": "60 - 90 minutes" - }, - { - "name": "Offset", - "value": "60 - 120 minutes" - }, - { - "name": "After effects", - "value": "2 - 12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Ethylphenidate", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Ethylphenidate.shtml", - "name": "Ethylphenidate", - "aliases": [ - "eph" - ], - "aliasesStr": "eph", - "summary": "Potent psychostimulant, similar to Methylphenidate. \u0002Note: Ethylphenidate should \u0016NOT\u0016 be insufflated as it is known to be highly caustic and will cause serious harm to your nasal septum, even with light usage.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted phenidates" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopaminergic", - "stimulants" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "10 mg" - }, - { - "name": "Light", - "value": "20 - 40 mg" - }, - { - "name": "Common", - "value": "40 - 80 mg" - }, - { - "name": "Strong", - "value": "80 - 120 mg" - }, - { - "name": "Heavy", - "value": "120 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 7 hours" - }, - { - "name": "Onset", - "value": "40 - 120 minutes" - } - ] - }, - { - "name": "Rectal", - "dosage": [ - { - "name": "Threshold", - "value": "< 5 mg" - }, - { - "name": "Light", - "value": "5 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 30 mg" - }, - { - "name": "Strong", - "value": "30 - 50 mg" - }, - { - "name": "Heavy", - "value": "50 mg+" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 6 hours" - }, - { - "name": "Onset", - "value": "5 - 20 minutes" - } - ] - }, - { - "name": "Plugged/Rectal", - "dosage": [ - { - "name": "Light", - "value": "5-15mg" - }, - { - "name": "Common", - "value": "15-30mg" - }, - { - "name": "Strong", - "value": "30-50mg" - }, - { - "name": "Heavy", - "value": "50-75mg" - } - ], - "duration": [ - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "1-10 minutes" - }, - { - "name": "Duration", - "value": "2-6 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "Plugged", - "duration": [ - { - "name": "Onset", - "value": "5-20 minutes" - }, - { - "name": "Duration", - "value": "2-6 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Etizolam", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Etizolam.shtml", - "name": "Etizolam", - "aliases": [ - "depas", - "etilaam", - "etiz", - "etizest", - "etizola", - "inxity", - "lamet", - "sedekopan", - "towa", - "zoly" - ], - "aliasesStr": "depas,etilaam,etiz,etizest,etizola,inxity,lamet,sedekopan,towa,zoly", - "summary": "A thienodiazepine anxiolytic. Similar in action to benzodiazepine drugs. Relieves anxiety, causes sedation and mild euphoria. High doses can lead to losing memory of what happened while on the drug. Users often compulsively re-dose frequently leading to accidental blackouts. Can be found in pressed pharmaceutical pills from various countries, clandestine pill presses, or as a powder", - "reagents": null, - "classes": { - "chemical": [ - "Thienodiazepines" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol or opioids" - ], - "addictionPotential": "highly addictive with a high potential for abuse", - "tolerance": { - "full": "within a couple of days of continuous use", - "half": null, - "zero": "7 - 14 days" - }, - "crossTolerances": [ - "benzodiazepine", - "thienodiazepine" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.2 mg" - }, - { - "name": "Light", - "value": "0.5 - 1 mg" - }, - { - "name": "Common", - "value": "1 - 2 mg" - }, - { - "name": "Strong", - "value": "2 - 5 mg" - }, - { - "name": "Heavy", - "value": "5 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 7 hours" - }, - { - "name": "Onset", - "value": "15 - 30 minutes" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "1.5 - 2.5 hours" - }, - { - "name": "After effects", - "value": "6 - 24 hours" - } - ], - "bioavailability": "93%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/etodesnitazene", - "experiencesUrl": null, - "name": "Etodesnitazene", - "aliases": [ - "etazene" - ], - "aliasesStr": "etazene", - "summary": null, - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/F-Phenibut", - "experiencesUrl": null, - "name": "F-Phenibut", - "aliases": [ - "fluorobut", - "fluorophenibut" - ], - "aliasesStr": "fluorobut,fluorophenibut", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Gabapentinoids" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol, benzodiazepines or opioids", - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately physically and psychologically addictive", - "tolerance": { - "full": "within a couple of days of continuous use", - "half": null, - "zero": "7 - 14 days" - }, - "crossTolerances": [ - "GABA" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "50 mg" - }, - { - "name": "Light", - "value": "100 - 150 mg" - }, - { - "name": "Common", - "value": "150 - 400 mg" - }, - { - "name": "Strong", - "value": "400 - 600 mg" - }, - { - "name": "Heavy", - "value": "600 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 8 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/fasoracetam", - "experiencesUrl": null, - "name": "Fasoracetam", - "aliases": [], - "aliasesStr": "", - "summary": "A substance in the racetam family. Appears to be a GABA(B) agonist, and has shown to block memory disruptions caused by Baclofen, another GABA(B) Agonist. Similar to another compound in the racetam family Coluracetam, it enhances High affinity choline reuptake (HACU). Also research is conducted if it helps with ADHD and Congitive impairment.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10-25mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-45 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Fentanyl", - "experiencesUrl": null, - "name": "Fentanyl", - "aliases": [ - "abstral", - "actiq", - "duragesic", - "durogesic", - "fent", - "fentanil", - "fentora", - "haldid", - "instanyl", - "lazanda", - "matrifen", - "onsolis", - "sublimaze" - ], - "aliasesStr": "abstral,actiq,duragesic,durogesic,fent,fentanil,fentora,haldid,instanyl,lazanda,matrifen,onsolis,sublimaze", - "summary": "Fentanyl is a synthetic opiate analgesic with a rapid onset and short duration of action. It is a strong agonist at the \u03bc-opioid receptors and is historically used to treat breakthrough pain. Fentanyl is approximately 100 times more potent than Morphine, and is commonly used as a patch. Sometimes used as an adulterant for heroin, which has led to many overdose deaths.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted piperidines", - "Anilidopiperidine" - ], - "psychoactive": [ - "Opioids" - ] - }, - "toxicity": [ - "potentially fatal at heavy dosages", - "potentially lethal when mixed with depressants like alcohol or benzodiazepines", - "unintentionally transporting the substance from the skin by touching the mouth, nose or eyes is dangerous" - ], - "addictionPotential": "extremely addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "opioids" - ], - "roas": [ - { - "name": "Sublingual", - "dosage": [ - { - "name": "Threshold", - "value": "5 - 10 \u03bcg" - }, - { - "name": "Light", - "value": "10 - 25 \u03bcg" - }, - { - "name": "Common", - "value": "25 - 50 \u03bcg" - }, - { - "name": "Strong", - "value": "50 - 75 \u03bcg" - }, - { - "name": "Heavy", - "value": "75 \u03bcg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1 - 4 hours" - }, - { - "name": "Onset", - "value": "15 - 30 minutes" - } - ], - "bioavailability": "50%" - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "5 - 10 \u03bcg" - }, - { - "name": "Light", - "value": "10 - 25 \u03bcg" - }, - { - "name": "Common", - "value": "25 - 50 \u03bcg" - }, - { - "name": "Strong", - "value": "50 - 75 \u03bcg" - }, - { - "name": "Heavy", - "value": "75 \u03bcg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1 - 4 hours" - }, - { - "name": "Onset", - "value": "15 - 30 minutes" - } - ], - "bioavailability": "89%" - }, - { - "name": "Transdermal", - "dosage": [ - { - "name": "Threshold", - "value": "5 - 12 \u03bcg" - }, - { - "name": "Light", - "value": "12 - 25 \u03bcg" - }, - { - "name": "Common", - "value": "25 - 50 \u03bcg" - }, - { - "name": "Strong", - "value": "50 - 100 \u03bcg" - }, - { - "name": "Heavy", - "value": "100 \u03bcg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "48 - 72 hours" - }, - { - "name": "Onset", - "value": "2 - 4 hours" - } - ], - "bioavailability": "92%" - }, - { - "name": "Intranasal", - "dosage": [ - { - "name": "Light", - "value": "10-25ug" - }, - { - "name": "Common", - "value": "25-50ug" - }, - { - "name": "Strong", - "value": "50-75ug+" - } - ], - "duration": [ - { - "name": "After effects", - "value": "Risk" - } - ] - }, - { - "name": "Buccal", - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "1-4 hours" - }, - { - "name": "After effects", - "value": "Risk" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Flualprazolam", - "experiencesUrl": null, - "name": "Flualprazolam", - "aliases": [], - "aliasesStr": "", - "summary": "Fluorinated alprazolam, that likely has a longer half-life and higher potency than its parent compound.", - "reagents": null, - "classes": { - "chemical": [ - "Benzodiazepines" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "50 - 100 \u00b5g" - }, - { - "name": "Light", - "value": "0.1 - 0.3 mg" - }, - { - "name": "Common", - "value": "0.3 - 0.5 mg" - }, - { - "name": "Strong", - "value": "0.5 - 1 mg" - }, - { - "name": "Heavy", - "value": "1 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 8 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "2 - 6 hours" - }, - { - "name": "After effects", - "value": "6 - 24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Flubromazepam", - "experiencesUrl": null, - "name": "Flubromazepam", - "aliases": [], - "aliasesStr": "", - "summary": "A somewhat common benzodiazepine drug known for its extreme duration, with effects for larger doses reaching up to three days. Sedative, hypnotic and anxiolytic, this compound is an analogue of Phenazepam. First discovered in the 1960s, it was never marketed as a licit drug, but has recently become available as an RC. Not to be confused with Flubromazolam.", - "reagents": null, - "classes": { - "chemical": [ - "Benzodiazepines" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol or opioids" - ], - "addictionPotential": "extremely physically and psychologically addictive", - "tolerance": { - "full": "within a couple of days of continuous use", - "half": null, - "zero": "7 - 14 days" - }, - "crossTolerances": [ - "benzodiazepines" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "2 mg" - }, - { - "name": "Light", - "value": "3 - 5 mg" - }, - { - "name": "Common", - "value": "5 - 8 mg" - }, - { - "name": "Strong", - "value": "8 - 12 mg" - }, - { - "name": "Heavy", - "value": "12 - 16 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 12 hours" - }, - { - "name": "Onset", - "value": "40 - 90 minutes" - }, - { - "name": "After effects", - "value": "24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Flubromazolam", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Flubromazolam.shtml", - "name": "Flubromazolam", - "aliases": [ - "f-lam", - "flam" - ], - "aliasesStr": "f-lam,flam", - "summary": "A very potent benzodiazepine derivative that is related to Triazolam and Pyrazolam. Popular in the research chemical scene, it is a potent sedative, hypnotic and anxiolytic. Potential for amnesia and reduced inhibitions in higher dose. Not to be confused with Flubromazepam, which is much less potent and has a much longer half-life.", - "reagents": null, - "classes": { - "chemical": [ - "Benzodiazepines" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol or opioids" - ], - "addictionPotential": "extremely physically and psychologically addictive", - "tolerance": { - "full": "within a couple of days of continuous use", - "half": null, - "zero": "7 - 14 days" - }, - "crossTolerances": [ - "benzodiazepines" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "50 \u03bcg" - }, - { - "name": "Light", - "value": "100 - 150 \u03bcg" - }, - { - "name": "Common", - "value": "150 - 250 \u03bcg" - }, - { - "name": "Strong", - "value": "250 - 400 \u03bcg" - }, - { - "name": "Heavy", - "value": "400 \u03bcg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "12 - 18 hours" - }, - { - "name": "Onset", - "value": "30 - 60 minutes" - }, - { - "name": "After effects", - "value": "24 hours +" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/fluclotizolam", - "experiencesUrl": null, - "name": "Fluclotizolam", - "aliases": [], - "aliasesStr": "", - "summary": "A derivative of Etizolam. There are conflicting reports on its dosage, though claims have been made that it is approximately 3x the potency of Etizolam, with a shorter half-life.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "250ug" - }, - { - "name": "Common", - "value": "250-500ug" - }, - { - "name": "Strong", - "value": "500-750ug" - }, - { - "name": "Heavy", - "value": "750ug+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "1-14 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Flunitrazepam", - "experiencesUrl": null, - "name": "Flunitrazepam", - "aliases": [ - "rohypnol", - "roofies" - ], - "aliasesStr": "rohypnol,roofies", - "summary": "Known as Rohypnol or 'roofies,' this infamous drug has similar qualities to most other benzodiazepines; sedating with strong hypnotic effects. Despite being known as a 'date rape drug' has only been implicated in a small number of such crimes. Danger of respiratory depression in combination with other depressants. May cause amnesia and lowered inhibitions in overdose.", - "reagents": null, - "classes": { - "chemical": [ - "Benzodiazepines" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol or opioids" - ], - "addictionPotential": "extremely physically and psychologically addictive", - "tolerance": { - "full": "within a couple of days of continuous use", - "half": null, - "zero": "7 - 14 days" - }, - "crossTolerances": [ - "benzodiazepines" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.2 - 0.5 mg" - }, - { - "name": "Light", - "value": "0.5 - 1 mg" - }, - { - "name": "Common", - "value": "1 - 3 mg" - }, - { - "name": "Strong", - "value": "3 - 4 mg" - }, - { - "name": "Heavy", - "value": "4 - 6 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours" - }, - { - "name": "Onset", - "value": "20 - 30 minutes" - }, - { - "name": "After effects", - "value": "2 - 24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Flunitrazolam", - "experiencesUrl": null, - "name": "Flunitrazolam", - "aliases": [ - "fln" - ], - "aliasesStr": "fln", - "summary": "A very potent hypnotic Benzodiazepine. Triazolo version of Flunitrazepam.", - "reagents": null, - "classes": { - "chemical": [ - "Benzodiazepines" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol or opioids" - ], - "addictionPotential": "extremely physically and psychologically addictive", - "tolerance": { - "full": "within a couple of days of continuous use", - "half": null, - "zero": "7 - 14 days" - }, - "crossTolerances": [ - "benzodiazepines" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.1 mg" - }, - { - "name": "Light", - "value": "0.1 - 0.2 mg" - }, - { - "name": "Common", - "value": "0.2 - 0.3 mg" - }, - { - "name": "Strong", - "value": "0.3 - 0.5 mg" - }, - { - "name": "Heavy", - "value": "0.5 +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "2 - 4 hours" - }, - { - "name": "After effects", - "value": "1 - 12 hours" - } - ] - }, - { - "name": "Sublingual", - "duration": [ - { - "name": "Onset", - "value": "5-15 minutes" - }, - { - "name": "Duration", - "value": "4-5 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/fluorolintane", - "experiencesUrl": null, - "name": "Fluorolintane", - "aliases": [], - "aliasesStr": "", - "summary": "A dissociative anaesthetic also known as 2-FPPP, very little is known about this obscure and rare drug. Reported by some to be stimulating, having effects similar to other dissociative drugs such as PCP and ketamine.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "75-100mg" - }, - { - "name": "Common", - "value": "100-150mg" - }, - { - "name": "Strong", - "value": "150-250mg" - }, - { - "name": "Heavy", - "value": "250mg+." - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "2-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/fluorophenibut", - "experiencesUrl": null, - "name": "Fluorophenibut", - "aliases": [], - "aliasesStr": "", - "summary": "An anxiolytic analogue of GABA and Phenibut, with similar activity to the latter. Expected to be 5-10 times as potent as phenibut, some preliminary reports suggest tolerance builds more slowly.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50-100mg" - }, - { - "name": "Common", - "value": "100-150mg" - }, - { - "name": "Strong", - "value": "200-250mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "60-120 minutes" - }, - { - "name": "Duration", - "value": "8-12 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/fluoxetine", - "experiencesUrl": null, - "name": "Fluoxetine", - "aliases": [ - "prozac", - "sarafem" - ], - "aliasesStr": "prozac,sarafem", - "summary": null, - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/flurazepam", - "experiencesUrl": null, - "name": "Flurazepam", - "aliases": [ - "dalmane" - ], - "aliasesStr": "dalmane", - "summary": "Benzodiazepine with an extremely long half life, between 40 and 250 hours. Mainly used for general anxiety disorder. Sedating, hypnotic, anxiolytic. Potential for amnesia and reduced inhibitions in overdose.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "15-30mg" - }, - { - "name": "Strong", - "value": "30-60mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "45-90 minutes" - }, - { - "name": "Duration", - "value": "12-16 hours" - }, - { - "name": "After effects", - "value": "2-48 hours" - } - ], - "bioavailability": "83%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/flutazolam", - "experiencesUrl": null, - "name": "Flutazolam", - "aliases": [], - "aliasesStr": "", - "summary": "A benzodiazepine derivative. It was invented in Japan, and has mainly stayed in that area. Similar potency to Diazepam, yet produces a more marked sedation and impaired coordination. Usually used as a treatment for Insomnia. A hypnotic and sedative which may cause amnesia and lowered inhibitions in high doses.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "2.5-5mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10-15mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "3-8 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/flutoprazepam", - "experiencesUrl": null, - "name": "Flutoprazepam", - "aliases": [ - "restas" - ], - "aliasesStr": "restas", - "summary": "A potent benzodiazepine that is roughly 4-5x the potency of Diazepam and has a longer duration, rarely seen outside of Japan. Sedative, hypnotic and anxiolytic. May cause amnesia and loss of inhibitions in excess. Do not mix with other depressants.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "0.5-1mg" - }, - { - "name": "Common", - "value": "1.5-3mg" - }, - { - "name": "Strong", - "value": "3-5mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "12-16 hours" - }, - { - "name": "After effects", - "value": "24-36 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/fluvoxamine", - "experiencesUrl": null, - "name": "Fluvoxamine", - "aliases": [ - "faverin", - "luvox" - ], - "aliasesStr": "faverin,luvox", - "summary": null, - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/focalin", - "experiencesUrl": null, - "name": "Dexmethylphenidate", - "aliases": [ - "dextromethylphenidate" - ], - "aliasesStr": "dextromethylphenidate", - "summary": "The psychoactive isomer of methylphenidate, mostly used to treat ADHD. Twice as potent as methylphenidate, and is said to have cleaner psychostimulant effects with fewer side effects.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "10-20mg" - }, - { - "name": "Common", - "value": "20-30mg" - }, - { - "name": "Strong", - "value": "30-40mg" - }, - { - "name": "Heavy", - "value": "40-50mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "45-90" - }, - { - "name": "Duration", - "value": "9-12 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/furanylfentanyl", - "experiencesUrl": null, - "name": "Furanylfentanyl", - "aliases": [ - "fu-f", - "furanyl-fentanyl" - ], - "aliasesStr": "fu-f,furanyl-fentanyl", - "summary": "An extremely potent opioid analgesic and analogue of fentanyl. Concrete information is difficult to obtain about even basic properties like active dose, though it is believed to be slightly less potent and shorter in duration than butyrfentanyl. Exercise extreme caution. Will cause respiratory depression in overdose.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "300-500ug" - }, - { - "name": "Common", - "value": "500-900ug" - }, - { - "name": "Strong", - "value": "900-1600ug+." - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-10 minutes" - }, - { - "name": "Duration", - "value": "1-3 hours" - }, - { - "name": "After effects", - "value": "1-3 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "200-400ug" - }, - { - "name": "Common", - "value": "400-800ug" - }, - { - "name": "Strong", - "value": "800-1600ug+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-10 minutes" - }, - { - "name": "Duration", - "value": "1-3 hours" - }, - { - "name": "After effects", - "value": "1-3 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/g-130", - "experiencesUrl": null, - "name": "G-130", - "aliases": [], - "aliasesStr": "", - "summary": "Stimulant that is related to Phenmetrazine. Nearly no information on dose or effects.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/gaba", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_GABA.shtml", - "name": "GABA", - "aliases": [], - "aliasesStr": "", - "summary": "Gamma-Aminobutyric Acid. Supplement used in calming some down. Does not pass the brain blood barrier.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "200-400mg" - }, - { - "name": "Common", - "value": "400-800mg" - }, - { - "name": "Strong", - "value": "800-1600mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-60 minutes" - }, - { - "name": "Duration", - "value": "5-8 hours" - }, - { - "name": "After effects", - "value": "1-2 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Gabapentin", - "experiencesUrl": null, - "name": "Gabapentin", - "aliases": [ - "gabarone", - "gralise", - "neurontin" - ], - "aliasesStr": "gabarone,gralise,neurontin", - "summary": "An analogue of GABA also known as Neurontin, originally developed to treat epilepsy. Commonly prescribed for neuropathic pain, it also has pronounced anxiolytic effects leading to its use in treating anxiety disorders.", - "reagents": null, - "classes": { - "chemical": [ - "Gabapentinoids" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "low toxicity" - ], - "addictionPotential": null, - "tolerance": { - "full": "with prolonged continuous usage", - "half": null, - "zero": "7-14 days" - }, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "200 mg" - }, - { - "name": "Light", - "value": "200 - 900 mg" - }, - { - "name": "Common", - "value": "900 - 1500 mg" - }, - { - "name": "Strong", - "value": "1500 - 2400 mg" - }, - { - "name": "Heavy", - "value": "2400 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 10 hours" - }, - { - "name": "Onset", - "value": "30 - 120 minutes" - }, - { - "name": "Peak", - "value": "120 - 180 minutes" - } - ], - "bioavailability": "27% - 60%" - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Galantamine", - "experiencesUrl": null, - "name": "Galantamine", - "aliases": [], - "aliasesStr": "", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Benzazepine" - ], - "psychoactive": [ - "Sedative", - "Oneirogen" - ] - }, - "toxicity": [ - "extremely low toxicity" - ], - "addictionPotential": "not habit-forming", - "tolerance": null, - "crossTolerances": [], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "4 - 8 mg" - }, - { - "name": "Common", - "value": "8 - 16 mg" - }, - { - "name": "Strong", - "value": "16 - 24 mg" - }, - { - "name": "Heavy", - "value": "24 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 12 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - } - ], - "bioavailability": "90%" - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/GBL", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_GBL.shtml", - "name": "GBL", - "aliases": [ - "gamma-butyrolactone" - ], - "aliasesStr": "gamma-butyrolactone", - "summary": "A pro-drug to GHB whose rapid absorption leads it to have a faster onset and shorter duration. Used in a similar manner to GHB, as a less-toxic alternative to alcohol. Consume slowly instead of as a \"shot\" to hugely improve safety and reduce overdose risk.", - "reagents": null, - "classes": { - "chemical": [ - "Lactone" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": null, - "addictionPotential": "highly physically and moderately to highly psychologically addictive", - "tolerance": { - "full": "within several days of continuous use", - "half": null, - "zero": "7 - 14 days" - }, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.3 ml" - }, - { - "name": "Light", - "value": "0.3 - 0.9 ml" - }, - { - "name": "Common", - "value": "0.9 - 1.5 ml" - }, - { - "name": "Strong", - "value": "1.5 - 3 ml", - "note": "Warning: Doses over 2 ml can induce heavy sleep." - }, - { - "name": "Heavy", - "value": "3+ ml" - } - ], - "duration": [ - { - "name": "Total", - "value": "1 - 2 hours" - }, - { - "name": "Onset", - "value": "3 - 10 minutes" - }, - { - "name": "Come up", - "value": "5 - 15 minutes" - }, - { - "name": "Peak", - "value": "30 - 45 minutes" - }, - { - "name": "Offset", - "value": "15 - 30 minutes" - }, - { - "name": "After effects", - "value": "1 - 3 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/GHB", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_GHB.shtml", - "name": "GHB", - "aliases": [ - "g", - "sodium oxybate", - "xyrem" - ], - "aliasesStr": "g,sodium oxybate,xyrem", - "summary": "A euphoric depressant which is prescribed as a sleep aid and sometimes to help with Alcohol detox. Also used as a recreational depressant, as a non-toxic alternative to Alcohol. Despite not having Alcohol's toxicity it is risky due to among other things inconsistent concentration in commonly sold solution form, and can be very dangerous if taken with other depressants.", - "reagents": null, - "classes": { - "chemical": [ - "Butyric acid" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "Doses above 10 grams are associated with a risk of death", - "considered to be a safe and non-toxic substance when used responsibly or medically" - ], - "addictionPotential": "moderately to highly physically and moderately psychologically addictive", - "tolerance": { - "full": "within several days of continuous use", - "half": null, - "zero": "7 - 14 days" - }, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.5 g" - }, - { - "name": "Light", - "value": "0.5 - 1 g" - }, - { - "name": "Common", - "value": "1 - 2.5 g" - }, - { - "name": "Strong", - "value": "2.5 - 4 g" - }, - { - "name": "Heavy", - "value": "4 g +", - "note": "Warning: Risk of death above 10 g" - } - ], - "duration": [ - { - "name": "Total", - "value": "1.5 - 2.5 hours" - }, - { - "name": "Onset", - "value": "5 - 30 minutes" - }, - { - "name": "Come up", - "value": "10 - 20 minutes" - }, - { - "name": "Peak", - "value": "45 - 90 minutes" - }, - { - "name": "Offset", - "value": "15 - 30 minutes" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/glaucine", - "experiencesUrl": null, - "name": "Glaucine", - "aliases": [], - "aliasesStr": "", - "summary": "An alkaloid that is found in several different scpecies in the Papaveraceae family. It has antiinflammatory and antitussive effects. Can also be referred to as Yellow Horned Poppy.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50-100mg" - }, - { - "name": "Common", - "value": "100-150mg" - }, - { - "name": "Strong", - "value": "150-200mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "45-90 minutes" - }, - { - "name": "Duration", - "value": "6-8 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/glutethimide", - "experiencesUrl": null, - "name": "Glutethimide", - "aliases": [ - "doriden", - "elrodorm", - "glimid", - "noxyron" - ], - "aliasesStr": "doriden,elrodorm,glimid,noxyron", - "summary": "Is a hypnotic sedative that was introduced in 1954, as a \"safe\" alternative to barbiturates to treat insomnia. Anecdotally long term use has had effects similar to withdrawal, while still on a stable dose of the drug.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "250mg" - }, - { - "name": "Common", - "value": "500mg" - }, - { - "name": "Strong", - "value": "750mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-45 minutes" - }, - { - "name": "Duration", - "value": "2-8 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/halazepam", - "experiencesUrl": null, - "name": "Halazepam", - "aliases": [ - "paxipam" - ], - "aliasesStr": "paxipam", - "summary": "A less common prescription benzodiazepine and derivative of Nordazepam. Also known as Paxipam, it is no longer prescribed in the USA. Sedating, hypnotic and anxiolytic. High doses may induce amnesia and lowered inhibitions.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "10-20mg" - }, - { - "name": "Common", - "value": "20-40mg" - }, - { - "name": "Strong", - "value": "40-80mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "8-14 hours" - }, - { - "name": "After effects", - "value": "12-40 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Haloperidol", - "experiencesUrl": null, - "name": "Haloperidol", - "aliases": [ - "haldol" - ], - "aliasesStr": "haldol", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Butyrophenone", - "Substituted piperidines" - ], - "psychoactive": [ - "Antipsychotic" - ] - }, - "toxicity": [ - "can have serious side effects at higher dosages", - "risk of having severe extrapyramidal symptoms and muscle rigidity" - ], - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.25 mg" - }, - { - "name": "Light", - "value": "0.25 - 1 mg" - }, - { - "name": "Common", - "value": "1 - 5 mg" - }, - { - "name": "Strong", - "value": "5 - 10 mg" - }, - { - "name": "Heavy", - "value": "10 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "12 - 36 hours" - }, - { - "name": "Onset", - "value": "30 - 60 minutes" - } - ], - "bioavailability": "60-70%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/halothane", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Halothane.shtml", - "name": "Halothane", - "aliases": [], - "aliasesStr": "", - "summary": "A powerful inhalant anaesthetic generally used in a medical setting to induce unconsciousness, as a supplement with ketamine or fentanyl.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/hdep-28", - "experiencesUrl": null, - "name": "HDEP-28", - "aliases": [ - "ethylnaphthidate" - ], - "aliasesStr": "ethylnaphthidate", - "summary": "Most likely a TRI, such as HDMP-28, short history of human use.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "15-30mg" - }, - { - "name": "Common", - "value": "30-50mg" - }, - { - "name": "Strong", - "value": "50-100mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-15 minutes" - }, - { - "name": "Duration", - "value": "2-5 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "5-15mg" - }, - { - "name": "Common", - "value": "15-35mg" - }, - { - "name": "Strong", - "value": "35-60mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-15 minutes" - }, - { - "name": "Duration", - "value": "2-5 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Methylnaphthidate", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_HDMP28.shtml", - "name": "HDMP-28", - "aliases": [ - "methylnaphthidate", - "methylnaphtidate" - ], - "aliasesStr": "methylnaphthidate,methylnaphtidate", - "summary": "Also commonly known as methylnapthidate. A functional stimulant similar to methylphenidate but with a longer duration. Not especially recreational.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted phenidates" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "4 mg" - }, - { - "name": "Light", - "value": "10 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 30 mg" - }, - { - "name": "Strong", - "value": "30 - 50 mg" - }, - { - "name": "Heavy", - "value": "50 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 5 hours" - }, - { - "name": "Onset", - "value": "1 - 10 minutes" - }, - { - "name": "Peak", - "value": "1.5 - 2 hours" - }, - { - "name": "Offset", - "value": "1.5 - 2 hours" - }, - { - "name": "After effects", - "value": "1 - 8 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "< 4 mg" - }, - { - "name": "Light", - "value": "4 - 8 mg" - }, - { - "name": "Common", - "value": "8 - 14 mg" - }, - { - "name": "Strong", - "value": "14 - 28 mg" - }, - { - "name": "Heavy", - "value": "28 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "90 - 180 minutes" - }, - { - "name": "Onset", - "value": "3 - 6 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "1 - 2 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Heroin", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Heroin.shtml", - "name": "Heroin", - "aliases": [ - "brown", - "diamorphine", - "h", - "junk", - "smack" - ], - "aliasesStr": "brown,diamorphine,h,junk,smack", - "summary": "A powerful opioid derived from Morphine, with 2-4x its potency. Infamous for a high addiction potential and fatal respiratory depression in overdose, C. R. Alder Wright first synthesised this compound in 1874 trying to find a less addictive alternative to Morphine. In recent years, it has often been sold cut with the extremely potent fentanyl, causing a spike in overdose deaths.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted morphinans" - ], - "psychoactive": [ - "Opioids" - ] - }, - "toxicity": null, - "addictionPotential": "extremely addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "opioids" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "2 mg" - }, - { - "name": "Light", - "value": "5 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 25 mg" - }, - { - "name": "Strong", - "value": "25 - 50 mg" - }, - { - "name": "Heavy", - "value": "50 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 5 hours" - }, - { - "name": "Onset", - "value": "5 - 10 seconds" - }, - { - "name": "Come up", - "value": "5 - 10 seconds" - }, - { - "name": "Peak", - "value": "15 - 30 minutes" - }, - { - "name": "Offset", - "value": "15 - 30 minutes" - }, - { - "name": "After effects", - "value": "10 - 30 minutes" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "7.5 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 35 mg" - }, - { - "name": "Strong", - "value": "35 - 50 mg" - }, - { - "name": "Heavy", - "value": "50 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 7 hours" - }, - { - "name": "Onset", - "value": "10 - 60 seconds" - }, - { - "name": "Come up", - "value": "10 - 60 seconds" - }, - { - "name": "Peak", - "value": "1 - 90 minutes" - }, - { - "name": "Offset", - "value": "1 - 3 hours" - }, - { - "name": "After effects", - "value": "1.5 - 3 hours" - } - ] - }, - { - "name": "Intravenous", - "dosage": [ - { - "name": "Common", - "value": "5 - 8 mg" - }, - { - "name": "Strong", - "value": "8 - 15 mg" - }, - { - "name": "Heavy", - "value": "15 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 5 hours" - }, - { - "name": "Onset", - "value": "0 - 5 seconds" - }, - { - "name": "Come up", - "value": "0 - 5 seconds" - }, - { - "name": "Peak", - "value": "1 - 4 hours" - }, - { - "name": "Offset", - "value": "30 - 60 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Hexedrone", - "experiencesUrl": null, - "name": "Hexedrone", - "aliases": [], - "aliasesStr": "", - "summary": "A rare mephedrone analogue also known as MACP, a cathinone stimulant with similar effects to pentedrone.", - "reagents": null, - "classes": { - "chemical": [ - "Khat#1#" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": null, - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "30 mg" - }, - { - "name": "Light", - "value": "50 - 70 mg" - }, - { - "name": "Common", - "value": "70 - 100 mg" - }, - { - "name": "Strong", - "value": "100 - 125 mg" - }, - { - "name": "Heavy", - "value": "125 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1 - 4 hours" - }, - { - "name": "Onset", - "value": "15 - 30 minutes" - }, - { - "name": "After effects", - "value": "1 - 12 hours" - } - ] - }, - { - "name": "Threshold:", - "dosage": [ - { - "name": "Threshold", - "value": "30-50mg" - }, - { - "name": "Light", - "value": "50-70mg" - }, - { - "name": "Common", - "value": "70-100mg" - }, - { - "name": "Strong", - "value": "100-125mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "1-4 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/N-Ethylhexedrone", - "experiencesUrl": null, - "name": "Hexen", - "aliases": [ - "ethyl-hexedrone", - "hex-en", - "n-ethyl-hexedrone", - "n-ethylhexedrone", - "neh" - ], - "aliasesStr": "ethyl-hexedrone,hex-en,n-ethyl-hexedrone,n-ethylhexedrone,neh", - "summary": "A cathinone based stimulant. Hexen (aka Ethyl-Hexedrone) acts as an NDRI to produce it's effects, and as with most cathinones has a fast onset and short duration. This drug has very little history of human consumption and next to no research/data, and therefor should be treated with caution as a research chemical.", - "reagents": null, - "classes": { - "chemical": [ - "Khat#1#" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "norepinephrine|noradrenergic", - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "2 - 5 mg" - }, - { - "name": "Common", - "value": "5 - 10 mg" - }, - { - "name": "Strong", - "value": "10 - 20 mg" - }, - { - "name": "Heavy", - "value": "20 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1 - 4 hours" - }, - { - "name": "Onset", - "value": "2 - 10 minutes" - }, - { - "name": "Peak", - "value": "10 - 30 minutes" - }, - { - "name": "Offset", - "value": "15 - 30 minutes" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "15 - 30 mg" - }, - { - "name": "Common", - "value": "30 - 40 mg" - }, - { - "name": "Strong", - "value": "40 - 50 mg" - }, - { - "name": "Heavy", - "value": "50 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 5 hours" - }, - { - "name": "Onset", - "value": "2 - 8 minutes" - }, - { - "name": "Peak", - "value": "30 - 90 minutes" - }, - { - "name": "Offset", - "value": "1 - 4 hours" - }, - { - "name": "After effects", - "value": "1 - 8 hours" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5-15mg" - }, - { - "name": "Light", - "value": "15-25mg" - }, - { - "name": "Common", - "value": "25-40mg" - }, - { - "name": "Strong", - "value": "40-50mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "1-4 hours" - }, - { - "name": "After effects", - "value": "2-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/hexobarbital", - "experiencesUrl": null, - "name": "Hexobarbital", - "aliases": [], - "aliasesStr": "", - "summary": "Is a barbiturate that was once used for inducing anesthesia for surgery. It has a very rapid onset, and a short duration of effects.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Light:", - "dosage": [ - { - "name": "Light", - "value": "10-15mg" - }, - { - "name": "Common", - "value": "15-20mg" - }, - { - "name": "Strong", - "value": "20-30mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-2 minutes" - }, - { - "name": "Duration", - "value": "30-45 minutes" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/homomazindol", - "experiencesUrl": null, - "name": "Homomazindol", - "aliases": [], - "aliasesStr": "", - "summary": "A potent analogue of mazindol, a rare, atypical stimulant drug and appetite suppressant occasionally prescribed in cases of severe obesity.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/homosildenafil", - "experiencesUrl": null, - "name": "Homosildenafil", - "aliases": [], - "aliasesStr": "", - "summary": "An analogue of sildenafil (viagra) with similar effects. Has been missold in certain 'herbal' blends and dietary supplements for sexual potency. Little is known about the pharmacology or safety profile of this drug in humans, potentially less potent than sildenafil.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "10-25mg" - }, - { - "name": "Common", - "value": "25-50mg" - }, - { - "name": "Strong", - "value": "50-100mg" - } - ], - "duration": [ - { - "name": "Duration", - "value": "5-9 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/hot-2", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_HOT2.shtml", - "name": "HOT-2", - "aliases": [ - "hot2" - ], - "aliasesStr": "hot2", - "summary": "A rather rare psychedelic phenylethylamine that is the hydroxylated version and prodrug for 2C-T-2.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "8mg" - }, - { - "name": "Light", - "value": "10-12mg" - }, - { - "name": "Common", - "value": "12-15mg" - }, - { - "name": "Strong", - "value": "15-20mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-40 minutes" - }, - { - "name": "Duration", - "value": "5-12 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/hot-7", - "experiencesUrl": null, - "name": "HOT-7", - "aliases": [ - "hot7" - ], - "aliasesStr": "hot7", - "summary": "A rather rare psychedelic phenylethylamine that is the hydroxylated version and prodrug for 2C-T-7.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "15mg" - }, - { - "name": "Light", - "value": "15-20mg" - }, - { - "name": "Common", - "value": "20-30mg" - }, - { - "name": "Strong", - "value": "30-40mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "60-180 minutes" - }, - { - "name": "Duration", - "value": "5-8 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/huperzine-a", - "experiencesUrl": null, - "name": "HUPERZINE-A", - "aliases": [ - "h-a" - ], - "aliasesStr": "h-a", - "summary": "A compound that is extracted from the herbs of Huperziceae family. Is known as an acetylcholinesterase inhibitor, which stops an enzyme from breaking down acetylcholine which results in increases in acetylcholine. Is currently in preliminary trials for Alzheimer's.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Insufflted", - "dosage": [ - { - "name": "Light", - "value": "50-75ug" - }, - { - "name": "Common", - "value": "75-150ug" - }, - { - "name": "Strong", - "value": "150ug-200ug." - } - ], - "duration": [ - { - "name": "After effects", - "value": "1-14 hours" - } - ] - }, - { - "name": "Oral", - "duration": [ - { - "name": "Onset", - "value": "10-20 minutes" - }, - { - "name": "Duration", - "value": "8-14 hours" - }, - { - "name": "After effects", - "value": "1-14 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "1-2 minutes" - }, - { - "name": "Duration", - "value": "6-12 hours" - }, - { - "name": "After effects", - "value": "1-14 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/HXE", - "experiencesUrl": null, - "name": "HXE", - "aliases": [], - "aliasesStr": "", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Arylcyclohexylamines" - ], - "psychoactive": [ - "Dissociatives" - ] - }, - "toxicity": null, - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dissociative" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "30 mg" - }, - { - "name": "Light", - "value": "30 - 60 mg" - }, - { - "name": "Common", - "value": "60 - 100 mg" - }, - { - "name": "Strong", - "value": "100 - 130 mg" - }, - { - "name": "Heavy", - "value": "130 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 8 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "2 - 4 hours" - }, - { - "name": "Offset", - "value": "3 - 6 hours" - }, - { - "name": "After effects", - "value": "1 - 12 hours" - } - ] - }, - { - "name": "Sublingual", - "dosage": [ - { - "name": "Threshold", - "value": "30 mg" - }, - { - "name": "Light", - "value": "30 - 60 mg" - }, - { - "name": "Common", - "value": "60 - 100 mg" - }, - { - "name": "Strong", - "value": "10\u00fc - 130 mg", - "note": "\"\u00fc\" can not be assigned to a declared number type with value 10." - }, - { - "name": "Heavy", - "value": "130 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 6 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "2 - 4 hours" - }, - { - "name": "Offset", - "value": "2 - 6 hours" - }, - { - "name": "After effects", - "value": "1 - 12 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "20 mg" - }, - { - "name": "Light", - "value": "40 - 20 mg" - }, - { - "name": "Common", - "value": "40 - 70 mg" - }, - { - "name": "Strong", - "value": "70 - 120 mg" - }, - { - "name": "Heavy", - "value": "120 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 6 hours" - }, - { - "name": "Onset", - "value": "10 - 30 minutes" - }, - { - "name": "Come up", - "value": "20 - 40 minutes" - }, - { - "name": "Peak", - "value": "1.5 - 4 hours" - }, - { - "name": "Offset", - "value": "2 - 4 hours" - }, - { - "name": "After effects", - "value": "2 - 7 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Hydrocodone", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Hydrocodone.shtml", - "name": "Hydrocodone", - "aliases": [ - "hydro", - "vicodin", - "vicodin (with paracetamol)", - "zohydro er (extended-release)" - ], - "aliasesStr": "hydro,vicodin,vicodin (with paracetamol),zohydro er (extended-release)", - "summary": "A codeine-derived opioid generally unheard of outside the United States. Generally mild in effects, used as an analgesic and cough-supressant. Sometimes used recreationally.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted morphinans" - ], - "psychoactive": [ - "Opioids" - ] - }, - "toxicity": [ - "potentially fatal at heavy dosages" - ], - "addictionPotential": "moderately addictive", - "tolerance": { - "full": "with prolonged use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "opioids" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "3 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 25 mg" - }, - { - "name": "Strong", - "value": "25 - 40 mg" - }, - { - "name": "Heavy", - "value": "40 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours" - }, - { - "name": "Onset", - "value": "10 - 60 minutes" - } - ], - "bioavailability": "70-85%" - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Hydromorphone", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Hydromorphone.shtml", - "name": "Hydromorphone", - "aliases": [ - "dilaudid", - "diluadid", - "jurnista", - "palladone" - ], - "aliasesStr": "dilaudid,diluadid,jurnista,palladone", - "summary": "An opioid that is roughly 5x the potency of IV Morphine. Only comes in IR tablets in the US, and is given mostly as XR in other countries. It is frequently used in hospitals for short, but immediate pain relief during procedures requiring the patient to be awake. Also frequently used as a recreational opiate.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted morphinans" - ], - "psychoactive": [ - "Opioids" - ] - }, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": [ - "opioids" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.5 mg" - }, - { - "name": "Light", - "value": "1 - 2 mg" - }, - { - "name": "Common", - "value": "2 - 4 mg" - }, - { - "name": "Strong", - "value": "4 - 8 mg" - }, - { - "name": "Heavy", - "value": "8 mg +" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20 - 45 minutes" - }, - { - "name": "Peak", - "value": "3 - 4 hours" - } - ], - "bioavailability": "51.35% +/- 29.29%" - }, - { - "name": "Intravenous", - "dosage": [ - { - "name": "Threshold", - "value": "0.5 mg" - }, - { - "name": "Light", - "value": "1 - 2 mg" - }, - { - "name": "Common", - "value": "2 - 4 mg" - }, - { - "name": "Strong", - "value": "4 - 6 mg" - }, - { - "name": "Heavy", - "value": "6 mg +" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10 - 90 seconds" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "1-2mg" - }, - { - "name": "Common", - "value": "3-4mg" - }, - { - "name": "Strong", - "value": "4-8mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "Duration", - "value": "2-3 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ], - "bioavailability": "52.4%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/hydroxyzine", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Hydroxyzine.shtml", - "name": "Hydroxyzine", - "aliases": [ - "atarax", - "vistaril" - ], - "aliasesStr": "atarax,vistaril", - "summary": "An antihistamine drug commonly prescribed for anxiety, itchiness, nausea, and insomnia. Hydroxyzine has also been used to potentiate the analgesia of opioids as well as diminishing the negative effects of opioids, such as itchiness.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "25-100mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-60 minutes" - }, - { - "name": "Duration", - "value": "3-5 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Ibogaine", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Ibogaine.shtml", - "name": "Ibogaine", - "aliases": [ - "iboga" - ], - "aliasesStr": "iboga", - "summary": "An alkaloid found in many African plants most famously Iboga, with psychedelic and hallucinogenic properties. May be unpleasant. Traditionally used in tribal environments for coming-of-age rituals, it has recently been used as an alternative treatment for drug addiction although this usage has not been backed by conclusive data in humans. Has killed in overdose.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": null, - "addictionPotential": "not habit-forming", - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "15 - 22 mg/kg of body weight" - }, - { - "name": "Strong", - "value": null, - "note": "Strong doses may result in fatal heart complications." - } - ], - "duration": [ - { - "name": "Onset", - "value": "30 - 180 minutes" - }, - { - "name": "Peak", - "value": "18 - 36 hours" - }, - { - "name": "After effects", - "value": "24 - 72 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/ibuprofen", - "experiencesUrl": null, - "name": "Ibuprofen", - "aliases": [], - "aliasesStr": "", - "summary": "A ubiquitously available pain reliever/fever reducer. Ibuprofen is a nonsteroidal anti-inflammatory drug, available in many forms. It is sometimes used to reduce the body-load caused by certain drugs, such as stimulants.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "400-800mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "within" - }, - { - "name": "Duration", - "value": "4-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/indapex", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_5MeOTMT.shtml", - "name": "Indapex", - "aliases": [ - "5-meo-tmt" - ], - "aliasesStr": "5-meo-tmt", - "summary": "5-MEO-TMT, one of Shulgin's lesser known creations. A psychedelic tryptamine little heard of outside of TiHKaL with very little known information about its effects on humans. May be particularly given to causing nausea.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "60-75mg" - }, - { - "name": "Common", - "value": "75-100mg" - }, - { - "name": "Strong", - "value": "100-150mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-50 minutes" - }, - { - "name": "Duration", - "value": "5-10 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/indapyrophenidone", - "experiencesUrl": null, - "name": "Indapyrophenidone", - "aliases": [], - "aliasesStr": "", - "summary": "Indane analogue of Pyrophenidone, a NDRI stimulant with a short duration.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Vaporized", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-25mg" - }, - { - "name": "Strong", - "value": "25-50mg" - }, - { - "name": "Heavy", - "value": "50mg+." - } - ], - "duration": [ - { - "name": "Duration", - "value": "1-1.5 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "20-40mg" - }, - { - "name": "Common", - "value": "40-60mg" - }, - { - "name": "Strong", - "value": "60-90mg" - }, - { - "name": "Heavy", - "value": "90mg+" - } - ], - "duration": [ - { - "name": "Duration", - "value": "1-3 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/isomethadone", - "experiencesUrl": null, - "name": "Isomethadone", - "aliases": [], - "aliasesStr": "", - "summary": "Once a pharmaceutical drug also known as isoamidone, this opioid analgesic and methadone analogue was withdrawn from the market and is seldom seen today. Rarely abused, though reports state it is around twice as potent as methadone, and more euphoric.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "1.5-2.5mg" - }, - { - "name": "Common", - "value": "2.5-7.5mg" - }, - { - "name": "Strong", - "value": "7.5-15mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-90 minutes" - }, - { - "name": "Duration", - "value": "30-40 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/isophenmetrazine", - "experiencesUrl": null, - "name": "Isophenmetrazine", - "aliases": [], - "aliasesStr": "", - "summary": "Rare and little known analogue of phenmetrazine, which is slightly more potent than other analogues. Probably a stimulating, appetite supressing drug with high addiction potential. Potentially a dopamine and/or norepinephrine releasing agent.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-20mg" - }, - { - "name": "Strong", - "value": "20-50mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "3-5 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "2-5mg" - }, - { - "name": "Common", - "value": "5-15mg" - }, - { - "name": "Strong", - "value": "20-40mg+" - } - ], - "duration": [ - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Isopropylphenidate", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Isopropylphenidate.shtml", - "name": "Isopropylphenidate", - "aliases": [ - "iph", - "ipp", - "ippd", - "ipph" - ], - "aliasesStr": "iph,ipp,ippd,ipph", - "summary": "IPPH (or incorrectly IPH) is a novel piperidine based methylphenidate analogue and NDRI stimulant, but comes with much less physical side effects.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted phenidates" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "2 mg" - }, - { - "name": "Light", - "value": "5 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 25 mg" - }, - { - "name": "Strong", - "value": "25 - 45 mg" - }, - { - "name": "Heavy", - "value": "45 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3.5 - 6 hours" - }, - { - "name": "Onset", - "value": "10 - 30 minutes" - }, - { - "name": "Come up", - "value": "20 - 40 minutes" - }, - { - "name": "Peak", - "value": "1.5 - 2.5 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "2 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 20 mg" - }, - { - "name": "Strong", - "value": "20 - 35 mg" - }, - { - "name": "Heavy", - "value": "35 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2.5 - 4 hours" - }, - { - "name": "Onset", - "value": "2 - 5 minutes" - }, - { - "name": "Come up", - "value": "10 - 30 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "1 - 1.5 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/isoproscaline", - "experiencesUrl": null, - "name": "Isoproscaline", - "aliases": [ - "ip" - ], - "aliasesStr": "ip", - "summary": "A analogue of mescaline, and more closely related to proscaline.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "30mg" - }, - { - "name": "Light", - "value": "40-50mg" - }, - { - "name": "Common", - "value": "50-60mg" - }, - { - "name": "Strong", - "value": "60-80mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "60-180 minutes" - }, - { - "name": "Duration", - "value": "10-20 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/jenkem", - "experiencesUrl": null, - "name": "Jenkem", - "aliases": [], - "aliasesStr": "", - "summary": "A hoax which began in online communities of a non-existent drug which was claimed to result from a process involving human waste. http://www.snopes.com/crime/warnings/jenkem.asp", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/JWH-018", - "experiencesUrl": null, - "name": "JWH-018", - "aliases": [], - "aliasesStr": "", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Naphthoylindole" - ], - "psychoactive": [ - "Cannabinoid" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "cannabinoids" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "< 1 mg" - }, - { - "name": "Light", - "value": "1 - 2 mg" - }, - { - "name": "Common", - "value": "2 - 3 mg" - }, - { - "name": "Strong", - "value": "3 - 5 mg" - }, - { - "name": "Heavy", - "value": "5 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1 - 2 hours" - }, - { - "name": "Onset", - "value": "5 - 10 minutes" - }, - { - "name": "Peak", - "value": "60 - 90 minutes" - }, - { - "name": "Offset", - "value": "5 - 10 minutes" - }, - { - "name": "After effects", - "value": "60 - 90 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/JWH-073", - "experiencesUrl": null, - "name": "JWH-073", - "aliases": [ - "spice" - ], - "aliasesStr": "spice", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Naphthoylindole" - ], - "psychoactive": [ - "Cannabinoid" - ] - }, - "toxicity": null, - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "cannabinoids" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "< 3 mg" - }, - { - "name": "Light", - "value": "3 - 5 mg" - }, - { - "name": "Common", - "value": "5 - 10 mg" - }, - { - "name": "Strong", - "value": "10 - 15 mg" - }, - { - "name": "Heavy", - "value": "15 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1 - 2 hours" - }, - { - "name": "Onset", - "value": "5 - 10 minutes" - }, - { - "name": "Peak", - "value": "60 - 90 minutes" - }, - { - "name": "Offset", - "value": "5 - 10 minutes" - }, - { - "name": "After effects", - "value": "60 - 90 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/kanna", - "experiencesUrl": null, - "name": "Kanna", - "aliases": [], - "aliasesStr": "", - "summary": "A South African plant containing numerous psychoactive alkaloids, including mesembrine and mesembrenone. The first written account of the substance was in 1662. The pharmacology of these compounds is poorly understood, but they are suspected to be serotonin uptake inhibitors and potentially monoamine releasers. Said to suppress appetite, produce mild euphoria and reduce anxiety.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "250-500mg" - }, - { - "name": "Common", - "value": "500-1000mg" - }, - { - "name": "Strong", - "value": "1000-2000mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-90 minutes" - }, - { - "name": "Duration", - "value": "180-360 minutes" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "10-20mg" - }, - { - "name": "Common", - "value": "20-50mg" - }, - { - "name": "Strong", - "value": "50-150mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "Duration", - "value": "60-150 minutes" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - }, - { - "name": "Vapourized", - "dosage": [ - { - "name": "Light", - "value": "30-50mg" - }, - { - "name": "Common", - "value": "50-100mg" - }, - { - "name": "Strong", - "value": "100-250mg." - } - ], - "duration": [ - { - "name": "Duration", - "value": "90-150 minutes" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - }, - { - "name": "Smoking", - "duration": [ - { - "name": "Onset", - "value": "1-2 minutes" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/kava", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Kava.shtml", - "name": "Kava", - "aliases": [], - "aliasesStr": "", - "summary": "Tropical evergreen shrub with large heart-shaped leaves and woody stems. Its thick roots are mashed or ground and made into a cold and bitter-tasting beverage used similarly to alcohol. It has a long history of ritual and recreational use in Pacific Polynesia and is now a common herbal product, used widely by those in certain societies as part of a 'Kava Culture.'", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50-70mg" - }, - { - "name": "Common", - "value": "70-150mg" - }, - { - "name": "Strong", - "value": "150-200mg" - }, - { - "name": "Heavy", - "value": "300mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-30 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "9-18 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Ketamine", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Ketamine.shtml", - "name": "Ketamine", - "aliases": [ - "cat tranquilizer", - "k", - "ket", - "ketalar", - "ketanest", - "ketaset", - "kittens", - "kitty", - "special k" - ], - "aliasesStr": "cat tranquilizer,k,ket,ketalar,ketanest,ketaset,kittens,kitty,special k", - "summary": "A short acting dissociative anaesthetic and hallucinogen commonly used in emergency medicine. It is the prototypical dissociative, and is widely used at sub-anesthetic doses recreationally. Small doses are comparable with alcohol, while larger doses are immobilising and lead to psychedelic experiences: the \"K-Hole.\"", - "reagents": null, - "classes": { - "chemical": [ - "Arylcyclohexylamines" - ], - "psychoactive": [ - "Dissociatives" - ] - }, - "toxicity": null, - "addictionPotential": "moderate to high abuse potential and produces psychological dependence with chronic use", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dissociative" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "50 mg" - }, - { - "name": "Light", - "value": "50 - 100 mg" - }, - { - "name": "Common", - "value": "100 - 300 mg" - }, - { - "name": "Strong", - "value": "300 - 450 mg" - }, - { - "name": "Heavy", - "value": "450 mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10 - 30 minutes" - }, - { - "name": "Come up", - "value": "5 - 20 minutes" - }, - { - "name": "Peak", - "value": "45 - 90 minutes" - }, - { - "name": "Offset", - "value": "3 - 6 hours" - }, - { - "name": "After effects", - "value": "4 - 8 hours" - } - ], - "bioavailability": "17%" - }, - { - "name": "Sublingual", - "dosage": null, - "duration": null, - "bioavailability": "20% - 29%" - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 30 mg" - }, - { - "name": "Common", - "value": "30 - 75 mg" - }, - { - "name": "Strong", - "value": "75 - 150 mg" - }, - { - "name": "Heavy", - "value": "150 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1 - 1.5 hours" - }, - { - "name": "Onset", - "value": "2 - 5 minutes" - }, - { - "name": "Come up", - "value": "5 - 10 minutes" - }, - { - "name": "Peak", - "value": "30 - 60 minutes" - }, - { - "name": "Offset", - "value": "3 - 6 hours" - }, - { - "name": "After effects", - "value": "2 - 12 hours" - } - ], - "bioavailability": "45%" - }, - { - "name": "Intramuscular", - "duration": [ - { - "name": "Onset", - "value": "2-7.5 minutes" - }, - { - "name": "Duration", - "value": "1-2 hours" - }, - { - "name": "After effects", - "value": "1-2 hours" - } - ] - }, - { - "name": "Intravenous", - "duration": [ - { - "name": "Onset", - "value": "0-2 minutes" - }, - { - "name": "Duration", - "value": "1-2 hours" - }, - { - "name": "After effects", - "value": "1-2 hours" - } - ] - } - ], - "interactions": [ - { - "status": "Low Risk & Synergy", - "name": "2C-T-x" - }, - { - "status": "Low Risk & Synergy", - "name": "2C-x" - }, - { - "status": "Low Risk & Synergy", - "name": "5-MeO-xxT" - }, - { - "status": "Dangerous", - "note": "Both substances cause ataxia and bring a very high risk of vomiting and unconsciousness. If the user falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position.", - "name": "Alcohol" - }, - { - "status": "Caution", - "note": "No unexpected interactions, though likely to increase blood pressure but not an issue with sensible doses. Moving around on high doses of this combination may be ill advised due to risk of physical injury.", - "name": "Amphetamines" - }, - { - "status": "Caution", - "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position.", - "name": "Benzodiazepines" - }, - { - "status": "Low Risk & No Synergy", - "note": "No unexpected interactions.", - "name": "Caffeine" - }, - { - "status": "Low Risk & Synergy", - "name": "Cannabis" - }, - { - "status": "Caution", - "note": "No unexpected interactions, though likely to increase blood pressure but not an issue with sensible doses. Moving around on high doses of this combination may be ill advised due to risk of physical injury.", - "name": "Cocaine" - }, - { - "status": "Low Risk & Synergy", - "name": "DMT" - }, - { - "status": "Low Risk & Synergy", - "note": "Ketamine and psychedelics tend to potentiate each other - go slowly.", - "name": "DOx" - }, - { - "status": "Low Risk & No Synergy", - "name": "DXM" - }, - { - "status": "Dangerous", - "note": "Both substances cause ataxia and bring a risk of vomiting and unconsciousness. If the user falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position.", - "name": "GHB/GBL" - }, - { - "status": "Low Risk & Synergy", - "name": "LSD" - }, - { - "status": "Caution", - "note": "MAO-B inhibitors appear to increase the potency of Ketamine. MAO-A inhbitors have some negative reports associated with the combination but there isn't much information available", - "name": "MAOIs" - }, - { - "status": "Low Risk & Synergy", - "note": "No unexpected interactions, though likely to increase blood pressure but not an issue with sensible doses. Moving around on high doses of this combination may be ill advised due to risk of physical injury.", - "name": "MDMA" - }, - { - "status": "Low Risk & Synergy", - "name": "MXE" - }, - { - "status": "Low Risk & Synergy", - "name": "Mescaline" - }, - { - "status": "Low Risk & Synergy", - "name": "Mushrooms" - }, - { - "status": "Low Risk & Synergy", - "name": "NBOMes" - }, - { - "status": "Low Risk & Synergy", - "name": "Nitrous" - }, - { - "status": "Dangerous", - "note": "Both substances bring a risk of vomiting and unconsciousness. If the user falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position.", - "name": "Opioids" - }, - { - "status": "Low Risk & Synergy", - "name": "PCP" - }, - { - "status": "Low Risk & No Synergy", - "name": "SSRIs" - }, - { - "status": "Dangerous", - "name": "Tramadol" - }, - { - "status": "Low Risk & Synergy", - "name": "aMT" - } - ] - }, - { - "url": "https://drugs.tripsit.me/ketazolam", - "experiencesUrl": null, - "name": "Ketazolam", - "aliases": [], - "aliasesStr": "", - "summary": "Benzodiazepine derivative that has most of the common benzodiazepine effects. Has been seen to have similar effectiveness when compared to Diazepam, with milder side-effects. Is marketed in few countries.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "5-15mg" - }, - { - "name": "Common", - "value": "15-30mg" - }, - { - "name": "Strong", - "value": "30-60mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-90 minutes" - }, - { - "name": "Duration", - "value": "8-12 hours" - }, - { - "name": "After effects", - "value": "2-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/ketobemidone", - "experiencesUrl": null, - "name": "Ketobemidone", - "aliases": [ - "kbd" - ], - "aliasesStr": "kbd", - "summary": "An opioid analgesic drug that also acts as an NDMA antagonist. Found to be as potent as morphine in physical side effects, and has high potential for addiction like all opioids do. Overdose may lead to respiratory depression/death. Do not mix with CNS depressants or stimulants. Caution should be used for asthmatic users.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "5mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10-15mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "45-60 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ], - "bioavailability": "34% +/- 10%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/khat", - "experiencesUrl": null, - "name": "Khat", - "aliases": [], - "aliasesStr": "", - "summary": "A shrub whose leaves contain Cathinone and Cathine, they are mostly chewed for the stimulant effect they provide. Very long history of human use.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Chewed", - "duration": [ - { - "name": "Onset", - "value": "10-15 minutes" - }, - { - "name": "Duration", - "value": "30-120 minutes" - }, - { - "name": "After effects", - "value": "1-10 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Kratom", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Kratom.shtml", - "name": "Kratom", - "aliases": [ - "ketum", - "kratom or kratum", - "mitragyna speciosa", - "\u0e01\u0e23\u0e30\u0e17\u0e48\u0e2d\u0e21 (thai)" - ], - "aliasesStr": "ketum,kratom or kratum,mitragyna speciosa,\u0e01\u0e23\u0e30\u0e17\u0e48\u0e2d\u0e21 (thai)", - "summary": "A drug made out of the leaves of Mitragyna Speciosa, which is related to coffee. Stimulating at lower doses, with opioid effects at higher doses. Frequent heavy use can cause physical addiction and withdrawals.", - "reagents": null, - "classes": { - "chemical": [ - "Indole alkaloids" - ], - "psychoactive": [ - "Stimulants", - "Opioids" - ] - }, - "toxicity": [ - "low toxicity" - ], - "addictionPotential": "produces dependence with chronic use and has a high abuse potential", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "opioids" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "1 g" - }, - { - "name": "Light", - "value": "2 - 3 g" - }, - { - "name": "Common", - "value": "3 - 5 g" - }, - { - "name": "Strong", - "value": "5 - 8 g" - }, - { - "name": "Heavy", - "value": "8 g +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 4 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "3 - 6 hours" - } - ] - }, - { - "name": "Light:", - "dosage": [ - { - "name": "Light", - "value": "0.5-1.5g" - }, - { - "name": "Common", - "value": "1.5-3g" - }, - { - "name": "Strong", - "value": "3-6g" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-40 minutes" - }, - { - "name": "Duration", - "value": "2-5 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Theanine", - "experiencesUrl": null, - "name": "Theanine", - "aliases": [ - "l-theanine", - "l-\u03b3-glutamylethylamide and n5-ethyl-l-glutamine" - ], - "aliasesStr": "l-theanine,l-\u03b3-glutamylethylamide and n5-ethyl-l-glutamine", - "summary": "An Amino acid that is structural similar to Glutamine. Most report it as a relaxing agent without much sedation. Most commonly found tea. Usually mixed with Caffeine.", - "reagents": null, - "classes": { - "chemical": [ - "Amino acid analogue" - ], - "psychoactive": [ - "Nootropic" - ] - }, - "toxicity": [ - "extremely low toxicity" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "after prolonged and repeated usage", - "half": "5 days", - "zero": "10 days" - }, - "crossTolerances": [], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "50 mg" - }, - { - "name": "Light", - "value": "75 - 175 mg" - }, - { - "name": "Common", - "value": "175 - 300 mg" - }, - { - "name": "Strong", - "value": "300 - 500 mg" - }, - { - "name": "Heavy", - "value": "500 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 6 hours" - }, - { - "name": "Onset", - "value": "30 - 90 minutes" - }, - { - "name": "Peak", - "value": "1 - 3 hours" - }, - { - "name": "After effects", - "value": "6 - 12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/librium", - "experiencesUrl": null, - "name": "Librium", - "aliases": [ - "chlordiazepoxide" - ], - "aliasesStr": "chlordiazepoxide", - "summary": "Chlordiazepoxide, a medium-acting benzodiazepine drug prescribed mostly for sleep purposes. Sedative and hypnotic, it may cause lowered inhibitions and amnesia in high doses.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Light:", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-20mg" - }, - { - "name": "Heavy", - "value": "20-40mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-40 minutes" - }, - { - "name": "Duration", - "value": "6-10 hours" - }, - { - "name": "After effects", - "value": "1-14 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Lisdexamfetamine", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Lisdexamfetamine.shtml", - "name": "Vyvanse", - "aliases": [ - "elvanse", - "lisdexamfetamine", - "lisdexamphetamine", - "lisdextroamfetamine", - "lisdextroamphetamine" - ], - "aliasesStr": "elvanse,lisdexamfetamine,lisdexamphetamine,lisdextroamfetamine,lisdextroamphetamine", - "summary": "Also known as lisdexamphetamine, this drug is a CNS stimulant often prescribed for ADHD, narcolepsy and obesity. It is also a pro-drug for dextroamphetamine, and functions as a method for providing extended-release stimulation. It is sometimes prescribed alongside an SSRI for depression.", - "reagents": null, - "classes": { - "chemical": [ - "Amphetamine", - "Substituted amphetamines" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "10 mg" - }, - { - "name": "Light", - "value": "20 - 30 mg" - }, - { - "name": "Common", - "value": "30 - 60 mg" - }, - { - "name": "Strong", - "value": "60 - 90 mg" - }, - { - "name": "Heavy", - "value": "90 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "10 - 14 hours" - }, - { - "name": "Onset", - "value": "60 - 90 minutes" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "3 - 5 hours" - }, - { - "name": "Offset", - "value": "4 - 6 hours" - }, - { - "name": "After effects", - "value": "2 - 6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/loprazolam", - "experiencesUrl": null, - "name": "Loprazolam", - "aliases": [ - "dormonoct" - ], - "aliasesStr": "dormonoct", - "summary": "Is an Imidazolobenzidazepine derivative that has all the classic benzodiazepine effects. Is usually only prescribed for a short amount of time for insomnia.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "0.25-0.5mg" - }, - { - "name": "Common", - "value": "0.5-1.5mg" - }, - { - "name": "Strong", - "value": "1.5-3mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-50 minutes" - }, - { - "name": "Duration", - "value": "6-10 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Lorazepam", - "experiencesUrl": null, - "name": "Lorazepam", - "aliases": [ - "ativan", - "lorsilan", - "orfidal" - ], - "aliasesStr": "ativan,lorsilan,orfidal", - "summary": "An intermediate acting benzodiazepine commonly known as Ativan, commonly prescribed as an alternative to Xanax. Sedating, hypnotic and anxiolytic. Potential to induce amnesia and lowered inhibitions in overdose. Do not combine with other depressants.", - "reagents": null, - "classes": { - "chemical": [ - "Benzodiazepines" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol or opioids" - ], - "addictionPotential": "extremely physically and psychologically addictive", - "tolerance": { - "full": "within a couple of days of continuous use", - "half": null, - "zero": "7 - 14 days" - }, - "crossTolerances": [ - "benzodiazepines" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.10 mg" - }, - { - "name": "Light", - "value": "0.25 - 0.5 mg" - }, - { - "name": "Common", - "value": "0.5 - 1.5 mg" - }, - { - "name": "Strong", - "value": "1.5 - 2 mg" - }, - { - "name": "Heavy", - "value": "2 - 3 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours" - }, - { - "name": "Onset", - "value": "5 - 30 minutes" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - } - ], - "bioavailability": "85-90%" - }, - { - "name": "Intramuscular", - "dosage": [ - { - "name": "Light", - "value": "0.25-0.5mg" - }, - { - "name": "Common", - "value": "0.5-1mg" - }, - { - "name": "Strong", - "value": "1-2mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-30 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/lormetazepam", - "experiencesUrl": null, - "name": "Lormetazepam", - "aliases": [ - "noctamid" - ], - "aliasesStr": "noctamid", - "summary": "Relatively rare prescription benzodiazepine. Short acting with a short half life. Generally only seen in the Netherlands. Sedative, hypnotic and anxiolytic.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "0.5-1mg" - }, - { - "name": "Common", - "value": "1-2mg" - }, - { - "name": "Strong", - "value": "2-4mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ], - "bioavailability": "80%" - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/LSA", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_LSA.shtml", - "name": "LSA", - "aliases": [ - "ergine", - "hbmg", - "hbw", - "hbwr", - "morning", - "morning_glory", - "morningglory", - "ololiuqui" - ], - "aliasesStr": "ergine,hbmg,hbw,hbwr,morning,morning_glory,morningglory,ololiuqui", - "summary": "A chemical found in Morning Glory and Hawaiian Baby Woodrose seeds, which are often legally available. Has mental effects similar to LSD, although with almost no visual effects. It is famous for being very nauseating, and for causing excessive time dilation at higher doses.", - "reagents": null, - "classes": { - "chemical": [ - "Lysergamides" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "non-addictive with a low abuse potential", - "tolerance": { - "full": "almost immediately after ingestion", - "half": null, - "zero": "7 days" - }, - "crossTolerances": null, - "roas": [ - { - "name": "HBWR", - "dosage": [ - { - "name": "Light", - "value": "1-2seeds" - }, - { - "name": "Common", - "value": "2-6seeds" - }, - { - "name": "Strong", - "value": "6-14seeds" - }, - { - "name": "Heavy", - "value": "14seeds+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-180 minutes" - }, - { - "name": "Duration", - "value": "4-10 hours" - }, - { - "name": "After effects", - "value": "Some" - } - ] - }, - { - "name": "Morning_Glory", - "dosage": [ - { - "name": "Light", - "value": "50-100seeds" - }, - { - "name": "Common", - "value": "100-250seeds" - }, - { - "name": "Strong", - "value": "250-400seeds" - }, - { - "name": "Heavy", - "value": "400seeds+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-180 minutes" - }, - { - "name": "Duration", - "value": "4-10 hours" - }, - { - "name": "After effects", - "value": "Some" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/LSD", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_LSD.shtml", - "name": "LSD", - "aliases": [ - "acid", - "blotter", - "cid", - "l", - "lsd-25", - "lucy", - "tabs" - ], - "aliasesStr": "acid,blotter,cid,l,lsd-25,lucy,tabs", - "summary": "LSD is a popular psychedelic with a relatively long history of use and research, and as such is known to be relatively safe despite its extremely high potency. It is the archetypical psychedelic to which all others are compared, and remains in popular usage.", - "reagents": null, - "classes": { - "chemical": [ - "Lysergamides" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "extremely low toxicity relative to dose" - ], - "addictionPotential": "non-addictive with a low abuse potential", - "tolerance": { - "full": "almost immediately after ingestion", - "half": null, - "zero": "5 days" - }, - "crossTolerances": [ - "psychedelics" - ], - "roas": [ - { - "name": "Sublingual", - "dosage": [ - { - "name": "Threshold", - "value": "15 \u00b5g" - }, - { - "name": "Light", - "value": "25 - 75 \u00b5g" - }, - { - "name": "Common", - "value": "75 - 150 \u00b5g" - }, - { - "name": "Strong", - "value": "150 - 300 \u00b5g" - }, - { - "name": "Heavy", - "value": "300 \u00b5g +" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 12 hours" - }, - { - "name": "Onset", - "value": "15 - 30 minutes" - }, - { - "name": "Come up", - "value": "45 - 90 minutes" - }, - { - "name": "Peak", - "value": "3 - 5 hours" - }, - { - "name": "Offset", - "value": "3 - 5 hours" - }, - { - "name": "After effects", - "value": "12 - 48 hours" - } - ], - "bioavailability": "71% - 71%" - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50-100ug" - }, - { - "name": "Common", - "value": "100-150ug" - }, - { - "name": "Strong", - "value": "175-225ug" - }, - { - "name": "Heavy", - "value": "250ug+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "45-90 minutes" - }, - { - "name": "Duration", - "value": "9-14 hours" - }, - { - "name": "After effects", - "value": "12-24 hours" - } - ] - } - ], - "interactions": [ - { - "status": "Low Risk & Synergy", - "name": "2C-T-x" - }, - { - "status": "Low Risk & Synergy", - "name": "2C-x" - }, - { - "status": "Low Risk & Synergy", - "name": "5-MeO-xxT" - }, - { - "status": "Low Risk & Decrease", - "name": "Alcohol" - }, - { - "status": "Caution", - "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", - "name": "Amphetamines" - }, - { - "status": "Low Risk & Decrease", - "name": "Benzodiazepines" - }, - { - "status": "Low Risk & No Synergy", - "name": "Caffeine" - }, - { - "status": "Caution", - "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", - "name": "Cannabis" - }, - { - "status": "Caution", - "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", - "name": "Cocaine" - }, - { - "status": "Low Risk & Synergy", - "name": "DMT" - }, - { - "status": "Low Risk & Synergy", - "name": "DOx" - }, - { - "status": "Low Risk & Synergy", - "name": "DXM" - }, - { - "status": "Low Risk & Decrease", - "name": "GHB/GBL" - }, - { - "status": "Low Risk & Synergy", - "name": "Ketamine" - }, - { - "status": "Low Risk & Decrease", - "name": "MAOIs" - }, - { - "status": "Low Risk & Synergy", - "name": "MDMA" - }, - { - "status": "Low Risk & Synergy", - "name": "MXE" - }, - { - "status": "Low Risk & Synergy", - "name": "Mescaline" - }, - { - "status": "Low Risk & Synergy", - "name": "Mushrooms" - }, - { - "status": "Low Risk & Synergy", - "name": "NBOMes" - }, - { - "status": "Low Risk & Synergy", - "name": "Nitrous" - }, - { - "status": "Low Risk & No Synergy", - "name": "Opioids" - }, - { - "status": "Low Risk & Synergy", - "name": "PCP" - }, - { - "status": "Low Risk & Decrease", - "name": "SSRIs" - }, - { - "status": "Unsafe", - "note": "Tramadol is well known to lower seizure threshold and psychedelics also cause occasional seizures.", - "name": "Tramadol" - }, - { - "status": "Low Risk & Synergy", - "name": "aMT" - } - ] - }, - { - "url": "https://psychonautwiki.org/wiki/LSM-775", - "experiencesUrl": null, - "name": "LSM-775", - "aliases": [ - "lsm" - ], - "aliasesStr": "lsm", - "summary": "Psychedelic of the lysergamide class, less potent by weight and produces a rather mild, dreamy and even sedating trip compared to its bigger brother LSD.", - "reagents": null, - "classes": { - "chemical": [ - "Lysergamides" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "5-7 days", - "zero": "14 days" - }, - "crossTolerances": [ - "psychedelics" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "250 \u00b5g" - }, - { - "name": "Light", - "value": "500 - 750 \u00b5g" - }, - { - "name": "Common", - "value": "750 - 1250 \u00b5g" - }, - { - "name": "Strong", - "value": "1250 - 1500 \u00b5g" - }, - { - "name": "Heavy", - "value": "1500 \u00b5g +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 10 hours" - }, - { - "name": "Onset", - "value": "10 - 30 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/LSZ", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_LSZ.shtml", - "name": "LSZ", - "aliases": [ - "diazedine", - "la-ss-az", - "lambda" - ], - "aliasesStr": "diazedine,la-ss-az,lambda", - "summary": "A lysergamide very similar to LSD usually distinguishable only by its shorter duration, though some subjective reports have noted it may be slightly more introspective and slightly less confusing.", - "reagents": null, - "classes": { - "chemical": [ - "Lysergamides" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "50 \u00b5g" - }, - { - "name": "Light", - "value": "100 - 150 \u00b5g" - }, - { - "name": "Common", - "value": "150 - 300 \u00b5g" - }, - { - "name": "Strong", - "value": "300 - 400 \u00b5g" - }, - { - "name": "Heavy", - "value": "400 \u00b5g +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 10 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "3 - 5 hours" - }, - { - "name": "Offset", - "value": "2 - 3 hours" - }, - { - "name": "After effects", - "value": "6 - 24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/marinol", - "experiencesUrl": null, - "name": "Marinol", - "aliases": [ - "cesamet", - "delta9-tetrahydrocannabinol", - "delta9-thc", - "dronabinol", - "syndros", - "\u03b49--tetrahydrocannabinol", - "\u03b49-thc" - ], - "aliasesStr": "cesamet,delta9-tetrahydrocannabinol,delta9-thc,dronabinol,syndros,\u03b49--tetrahydrocannabinol,\u03b49-thc", - "summary": "Synthetically created \u03949-THC, the main psychoactive ingredient in cannabis.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "10-20mg" - }, - { - "name": "Common", - "value": "20-30mg" - }, - { - "name": "Strong", - "value": "30-50mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "Oral hours" - }, - { - "name": "Duration", - "value": "4-12 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/mbdb", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_MBDB.shtml", - "name": "MBDB", - "aliases": [ - "eden", - "methyl-j" - ], - "aliasesStr": "eden,methyl-j", - "summary": "A rare entactogenic drug and analogue of MDMA possibly first synthesised by David Nichols. Potentially less potent than related drugs of its type. Sometimes referred to as a 'watered down MDMA.'", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "150-180mg" - }, - { - "name": "Common", - "value": "180-210mg" - }, - { - "name": "Strong", - "value": "210-250mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-120 minutes" - }, - { - "name": "Duration", - "value": "3-8 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/mbzp", - "experiencesUrl": null, - "name": "MBZP", - "aliases": [ - "methylbenylpiperazine" - ], - "aliasesStr": "methylbenylpiperazine", - "summary": "A stimulant drug which is a derivative of BZP.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50-80mg" - }, - { - "name": "Common", - "value": "80-120mg" - }, - { - "name": "Strong", - "value": "120-160mg" - }, - { - "name": "Heavy", - "value": "160-200mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-45 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "2-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/MCPP", - "experiencesUrl": null, - "name": "MCPP", - "aliases": [], - "aliasesStr": "", - "summary": "A phenylpiperazine stimulant first developed in the 1970s before being sold in the RC market, often mislabelled as MDMA. Said to have very unpleasant effects such as anxiogenesis and headaches.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted piperazines" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "15 mg" - }, - { - "name": "Light", - "value": "20 - 50 mg" - }, - { - "name": "Common", - "value": "50 - 120 mg" - }, - { - "name": "Strong", - "value": "120 - 150 mg" - }, - { - "name": "Heavy", - "value": "150 mg +" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "20 - 60 minutes" - }, - { - "name": "Peak", - "value": "2 - 4 hours" - }, - { - "name": "Offset", - "value": "3 - 8 hours" - } - ] - }, - { - "name": "60", - "duration": [ - { - "name": "Onset", - "value": "minutes. minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/MDA", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_MDA.shtml", - "name": "MDA", - "aliases": [ - "sally", - "sass", - "tenamfetamine" - ], - "aliasesStr": "sally,sass,tenamfetamine", - "summary": "A stimulant and empathogen. Similar to MDMA but typically produces more visuals than MDMA. Known to be more neurotoxic than MDMA, and is a minor metabolite of MDMA. Duration and onset similar to MDMA. The common Marquis reagent test cannot differentiate MDA and MDMA.", - "reagents": null, - "classes": { - "chemical": [ - "Amphetamine" - ], - "psychoactive": [ - "Stimulants", - "Psychedelics", - "Entactogens" - ] - }, - "toxicity": null, - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "repeated and heavy usage", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "20 mg" - }, - { - "name": "Light", - "value": "40 - 60 mg" - }, - { - "name": "Common", - "value": "60 - 100 mg" - }, - { - "name": "Strong", - "value": "100 - 145 mg" - }, - { - "name": "Heavy", - "value": "145 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 8 hours" - }, - { - "name": "Onset", - "value": "30 - 90 minutes" - }, - { - "name": "Come up", - "value": "15 - 45 minutes" - }, - { - "name": "Peak", - "value": "2.5 - 4 hours" - }, - { - "name": "Offset", - "value": "2 - 3 hours" - }, - { - "name": "After effects", - "value": "4 - 48 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/MDAI", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_MDAI.shtml", - "name": "MDAI", - "aliases": [], - "aliasesStr": "", - "summary": "A selective serotonin releasing agent which is rarely used without a stimulant to obtain desirable effects. Previously believed not to be neuruotoxic, however MDAI has been implicated in several lethal and non-lethal intoxications, and as such may pose more of a risk to health than previously believed.", - "reagents": null, - "classes": { - "chemical": [ - "Aminoindane" - ], - "psychoactive": [ - "Entactogens" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "somewhat habit-forming with a low potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "entactogens" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "40 mg" - }, - { - "name": "Light", - "value": "40 - 100 mg" - }, - { - "name": "Common", - "value": "100 - 175 mg" - }, - { - "name": "Strong", - "value": "175 - 300 mg" - }, - { - "name": "Heavy", - "value": "300 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "2 - 2.5 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/MDEA", - "experiencesUrl": null, - "name": "MDEA", - "aliases": [ - "eve", - "mde" - ], - "aliasesStr": "eve,mde", - "summary": "A quite rare empathogen closely related to MDMA. Yet is less potent than the prior.", - "reagents": null, - "classes": { - "chemical": [ - "Amphetamine", - "MDxx", - "Substituted amphetamines" - ], - "psychoactive": [ - "Entactogens" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "with prolonged and repeated use", - "half": "1-1.5 months", - "zero": "2-3 months" - }, - "crossTolerances": [ - "dopamine", - "serotonin|serotonergic", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "40 mg" - }, - { - "name": "Light", - "value": "70 - 120 mg" - }, - { - "name": "Common", - "value": "120 - 180 mg" - }, - { - "name": "Strong", - "value": "180 - 225 mg" - }, - { - "name": "Heavy", - "value": "225 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 6 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "15 - 30 minutes" - }, - { - "name": "Peak", - "value": "1.5 - 2 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "12 - 48 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/MDMA", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_MDMA.shtml", - "name": "MDMA", - "aliases": [ - "adam", - "beans", - "e", - "ecstasy", - "emma", - "mandy", - "md", - "molly", - "rolls", - "x", - "xtc" - ], - "aliasesStr": "adam,beans,e,ecstasy,emma,mandy,md,molly,rolls,x,xtc", - "summary": "The world's most popular empathogen with powerful pro-social effects. Has been strongly linked to cognitive decline in excess. Popular at parties, it is often sold in powder or in pills, and may be adulterated with other similar chemicals.", - "reagents": null, - "classes": { - "chemical": [ - "Amphetamine", - "MDxx", - "Substituted amphetamines" - ], - "psychoactive": [ - "Stimulants", - "Entactogens" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "with prolonged and repeated use", - "half": "1 month", - "zero": "2.5 months" - }, - "crossTolerances": [ - "dopaminergic", - "serotonergic", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "10 mg" - }, - { - "name": "Light", - "value": "15 - 55 mg" - }, - { - "name": "Common", - "value": "55 - 125 mg" - }, - { - "name": "Strong", - "value": "125 - 180 mg" - }, - { - "name": "Heavy", - "value": "180 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 6 hours" - }, - { - "name": "Onset", - "value": "30 - 60 minutes" - }, - { - "name": "Come up", - "value": "15 - 30 minutes" - }, - { - "name": "Peak", - "value": "1.5 - 2.5 hours" - }, - { - "name": "Offset", - "value": "1 - 1.5 hours" - }, - { - "name": "After effects", - "value": "12 - 48 hours" - } - ] - }, - { - "name": "Insufflated/Rectal", - "dosage": [ - { - "name": "Light", - "value": "30-70mg" - }, - { - "name": "Common", - "value": "70-120mg" - }, - { - "name": "Strong", - "value": "120-165mg" - }, - { - "name": "Heavy", - "value": "165mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-70 minutes" - }, - { - "name": "Duration", - "value": "3-5 hours" - }, - { - "name": "After effects", - "value": "1-72 hours" - } - ] - } - ], - "interactions": [ - { - "status": "Caution", - "name": "2C-T-x" - }, - { - "status": "Low Risk & Synergy", - "name": "2C-x" - }, - { - "status": "Caution", - "note": "Some of the 5-MeO tryptamines are a bit unpredictable and should be mixed with MDMA with care", - "name": "5-MeO-xxT" - }, - { - "status": "Caution", - "note": "Both MDMA and alcohol cause dehydration. Approach this combination with caution, moderation and sufficient hydration. More than a small amount of alcohol will dull the euphoria of MDMA", - "name": "Alcohol" - }, - { - "status": "Low Risk & Synergy", - "note": "Amphetamines increase the neurotoxic effects of MDMA", - "name": "Amphetamines" - }, - { - "status": "Low Risk & Decrease", - "name": "Benzodiazepines" - }, - { - "status": "Caution", - "note": "Caffiene is not really necessary with MDMA and increases any neurotoxic effects from MDMA", - "name": "Caffeine" - }, - { - "status": "Low Risk & Synergy", - "note": "Large amounts of cannabis may cause strong and somewhat unpredictable experiences in combination with MDMA. Cannabis should be saved for towards the end of the experience if possible.", - "name": "Cannabis" - }, - { - "status": "Caution", - "note": "Cocaine blocks some of the desirable effects of MDMA while increasing the risk of heart attack.", - "name": "Cocaine" - }, - { - "status": "Low Risk & Synergy", - "name": "DMT" - }, - { - "status": "Caution", - "note": "The combined stimulating effects of the two can be uncomfortable. Coming down on the MDMA while the DOx is still active can be quite anxiogenic. ", - "name": "DOx" - }, - { - "status": "Dangerous", - "name": "DXM" - }, - { - "status": "Caution", - "note": "Large amounts of GHB/GBL may overwhelm the effects of MDMA on the comedown.", - "name": "GHB/GBL" - }, - { - "status": "Low Risk & Synergy", - "note": "No unexpected interactions, though likely to increase blood pressure but not an issue with sensible doses. Moving around on high doses of this combination may be ill advised due to risk of physical injury.", - "name": "Ketamine" - }, - { - "status": "Low Risk & Synergy", - "name": "LSD" - }, - { - "status": "Dangerous", - "note": "MAO-B inhibitors can increase the potency and duration of phenethylamines unpredictably. MAO-A inhibitors with MDMA will lead to hypertensive crises.", - "name": "MAOIs" - }, - { - "status": "Caution", - "note": "There have been reports of risky serotonergic interactions when the two are taken at the same time, but MXE taken to the end of an MDMA experience does not appear to cause the same issues.", - "name": "MXE" - }, - { - "status": "Low Risk & Synergy", - "name": "Mescaline" - }, - { - "status": "Low Risk & Synergy", - "name": "Mushrooms" - }, - { - "status": "Caution", - "name": "NBOMes" - }, - { - "status": "Low Risk & Synergy", - "name": "Nitrous" - }, - { - "status": "Low Risk & No Synergy", - "name": "Opioids" - }, - { - "status": "Unsafe", - "note": "This combination can easily lead to hypermanic states", - "name": "PCP" - }, - { - "status": "Low Risk & Decrease", - "name": "SSRIs" - }, - { - "status": "Dangerous", - "note": "Tramadol and stimulants both increase the risk of seizures.", - "name": "Tramadol" - }, - { - "status": "Dangerous", - "name": "aMT" - } - ] - }, - { - "url": "https://drugs.tripsit.me/mdoh", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_MDOH.shtml", - "name": "MDOH", - "aliases": [], - "aliasesStr": "", - "summary": "An entactogen, stimulant and psychedelic first synthesised by Alexander Shulgin, MDOH is an analogue of MDA. Described as highly psychedelic, it is likely a serotonin releasing agent. It has not seen widespread use, perhaps due to a number of reported negative side effects such as urinary retention and a heavy comedown.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "80mg" - }, - { - "name": "Light", - "value": "100-120mg" - }, - { - "name": "Common", - "value": "120-150mg" - }, - { - "name": "Heavy", - "value": "150mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-40 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/mdpa", - "experiencesUrl": null, - "name": "MDPA", - "aliases": [ - "methylenedioxyphenylacetamide" - ], - "aliasesStr": "methylenedioxyphenylacetamide", - "summary": "An obscure substituted methylenedioxyphenethylamine with practically no history of human use. Its pharmacological profile is largely unknown, but potentially exhibits similar properties to other MDxx compounds. May be a monoamine releaser, reuptake inhibitor or both.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "75-125mg" - }, - { - "name": "Common", - "value": "125-175mg" - }, - { - "name": "Strong", - "value": "175-250mg" - }, - { - "name": "Heavy", - "value": "250+mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/mdphp", - "experiencesUrl": null, - "name": "Mdphp", - "aliases": [ - "monkey-dust" - ], - "aliasesStr": "monkey-dust", - "summary": "MDPHP aka 'Monkey-Dust' is a substituted cathinone and pyrovalerone which has been sold as an alternative to a-PHP and MDPV. Said to be less intense than MDPV with similar effects. MDPHP potency is said to vary widely, and there are reports of mixed composition batches containing other drugs. Very little is known about MDPHP in terms of toxicity, pharmacology and metabolism.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "20-35mg" - }, - { - "name": "Strong", - "value": "35+mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-60 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "2-16h" - } - ] - }, - { - "name": "Insufflated/Inhaled", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-20mg" - }, - { - "name": "Strong", - "value": "20+mg" - } - ], - "duration": [ - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "2-36h" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "5-15 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/MDPV", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_MDPV.shtml", - "name": "MDPV", - "aliases": [ - "bath salts", - "bath_salts", - "nrg-1" - ], - "aliasesStr": "bath salts,bath_salts,nrg-1", - "summary": "MDPV is a potent, and extremely compulsive synthetic euphoric stimulant, which shares some empathogenic effects with MDMA. Has a reputation for causing psychosis. MDPV has been found in products sold as \"bath salts\", \"plant food/fertilizer\", and in some \"ecstasy.\"", - "reagents": null, - "classes": { - "chemical": [ - "MDxx", - "Pyrrolidinophenone", - "Substituted cathinones" - ], - "psychoactive": [ - "Stimulants", - "Entactogens" - ] - }, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "2 mg" - }, - { - "name": "Light", - "value": "4 - 8 mg" - }, - { - "name": "Common", - "value": "8 - 14 mg" - }, - { - "name": "Strong", - "value": "14 - 25 mg" - }, - { - "name": "Heavy", - "value": "25 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 7 hours" - }, - { - "name": "Onset", - "value": "15 - 30 minutes" - }, - { - "name": "Come up", - "value": "15 - 30 minutes" - }, - { - "name": "Peak", - "value": "1 - 4 hours" - }, - { - "name": "Offset", - "value": "0.5 - 2 hours" - }, - { - "name": "After effects", - "value": "2 - 48 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "1-3mg" - }, - { - "name": "Light", - "value": "2-5mg" - }, - { - "name": "Common", - "value": "5-11mg" - }, - { - "name": "Strong", - "value": "10-20mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-20 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "2-48 hours" - } - ] - }, - { - "name": "Rectal", - "dosage": [ - { - "name": "Threshold", - "value": "1-5mg" - }, - { - "name": "Light", - "value": "3-8mg" - }, - { - "name": "Common", - "value": "6-12mg" - }, - { - "name": "Strong", - "value": "10-25mg" - } - ], - "duration": [ - { - "name": "After effects", - "value": "2-48 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/mebroqualone", - "experiencesUrl": null, - "name": "Mebroqualone", - "aliases": [ - "mbq" - ], - "aliasesStr": "mbq", - "summary": "A short acting analogue of Methaqualone, that is much more potent.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Sublingual", - "dosage": [ - { - "name": "Threshold", - "value": "3-5mg" - }, - { - "name": "Light", - "value": "5-8mg" - }, - { - "name": "Common", - "value": "8-15mg" - }, - { - "name": "Strong", - "value": "15-20mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-15 minutes" - }, - { - "name": "Duration", - "value": "45-90 minutes" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - }, - { - "name": "Vaporized", - "dosage": [ - { - "name": "Threshold", - "value": "2-3mg" - }, - { - "name": "Light", - "value": "3-5mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10-20mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-2 minutes" - }, - { - "name": "Duration", - "value": "20-40 minutes" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - }, - { - "name": "Oral", - "duration": [ - { - "name": "Onset", - "value": "10-20 minutes" - }, - { - "name": "Duration", - "value": "60-120 minutes" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "Duration", - "value": "30-60 minutes" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/meclonazepam", - "experiencesUrl": null, - "name": "Meclonazepam", - "aliases": [], - "aliasesStr": "", - "summary": "A benzodiazepine related to clonazepam discovered by Hoffman-LaRoche in the 1960s. Potentially useful in treating schistosomiasis. Has been sold on the grey market as a recreational drug but has not seen widespread popularity.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "3-6mg" - }, - { - "name": "Heavy", - "value": "6-12mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-60 minutes" - }, - { - "name": "Duration", - "value": "9-15 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/medazepam", - "experiencesUrl": null, - "name": "Medazepam", - "aliases": [ - "azepamid", - "mezapam", - "nobrium", - "raporan", - "rudotel", - "talis" - ], - "aliasesStr": "azepamid,mezapam,nobrium,raporan,rudotel,talis", - "summary": "Benzodiazepine derivative that has all of the classic benzodiazepine effects. Is a long-acting benzodiazepine drug (Half life of 36-200 hours) Is rarely prescribed in most countries. Is also a prodrug for Diazepam. Think of it as Desoxy-Diazepam if you'd like to.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-20mg" - }, - { - "name": "Strong", - "value": "20-40mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-120 minutes" - }, - { - "name": "Duration", - "value": "8-16 hours" - }, - { - "name": "After effects", - "value": "1-172 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Melatonin", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Melatonin.shtml", - "name": "Melatonin", - "aliases": [], - "aliasesStr": "", - "summary": "A naturally occurring hormone produced in the body, which promotes sleep at certain times in the day based on the circadian rhythm. It is also commonly available as a drug to treat insomnia and promote a proper sleep cycle. It can be used to promote sleepfulness at the tail-end of drug experiences, though it is not particularly hypnotic.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Oneirogen" - ] - }, - "toxicity": [ - "extremely low toxicity" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "after prolonged and repeated usage", - "half": "7 days", - "zero": "14 days" - }, - "crossTolerances": [], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.25 mg" - }, - { - "name": "Light", - "value": "0.5 - 1 mg" - }, - { - "name": "Common", - "value": "1 - 3 mg" - }, - { - "name": "Strong", - "value": "3 - 6 mg" - }, - { - "name": "Heavy", - "value": "6 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 10 hours" - }, - { - "name": "Onset", - "value": "5 - 20 minutes" - } - ], - "bioavailability": "15% - 15%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/mem", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_MEM.shtml", - "name": "MEM", - "aliases": [], - "aliasesStr": "", - "summary": "A rare stimulant, psychedelic and amphetamine discovered by Alexander Shulgin. Related to the DOx class of drugs, little is known about this obscure compound's pharmacology, however it is likely to be potent and have a long duration.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "15mg" - }, - { - "name": "Common", - "value": "25-35mg" - }, - { - "name": "Strong", - "value": "35-45mg+." - } - ], - "duration": [ - { - "name": "Onset", - "value": "Within minutes" - }, - { - "name": "Duration", - "value": "8-16 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Memantine", - "experiencesUrl": null, - "name": "Memantine", - "aliases": [ - "both extended-release)", - "ebixa", - "memaxa", - "namenda", - "namenda xr", - "namzaric (with donepezil" - ], - "aliasesStr": "both extended-release),ebixa,memaxa,namenda,namenda xr,namzaric (with donepezil", - "summary": "An NMDA-antagonist that if used recreationally can cause to a very prolonged \"hole\" lasting up to 16+ hours.", - "reagents": null, - "classes": { - "chemical": [ - "Adamantanes" - ], - "psychoactive": [ - "Dissociatives", - "Deliriant" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "unknown", - "tolerance": null, - "crossTolerances": [ - "dissociatives" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "10 mg" - }, - { - "name": "Light", - "value": "30 - 70 mg" - }, - { - "name": "Common", - "value": "70 - 110 mg" - }, - { - "name": "Strong", - "value": "110 - 170 mg" - }, - { - "name": "Heavy", - "value": "170 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "~ 24 - 72 hours" - }, - { - "name": "Onset", - "value": "2 - 3 hours" - }, - { - "name": "Come up", - "value": "2 - 3 hours" - }, - { - "name": "Peak", - "value": "3 - 12 hours" - }, - { - "name": "Offset", - "value": "5 - 24 hours" - }, - { - "name": "After effects", - "value": "24 - 48 hours" - } - ], - "bioavailability": "41 - 63%" - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Mephedrone", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4Methylmethcathinone.shtml", - "name": "Mephedrone", - "aliases": [ - "4-methylmethcathinone", - "4-mmc", - "4mmc", - "drone", - "m-cat", - "meow", - "meow meow" - ], - "aliasesStr": "4-methylmethcathinone,4-mmc,4mmc,drone,m-cat,meow,meow meow", - "summary": "A shortlived euphoric stimulant, developed as an analogue of MDMA, which was extremely popular in the research chemical scene before being banned. Commonly seen on street markets but rarer online. Very strong urge to redose compulsively.", - "reagents": null, - "classes": { - "chemical": [ - "Khat#1#", - "Substituted cathinones" - ], - "psychoactive": [ - "Stimulants", - "Entactogens" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "15 mg" - }, - { - "name": "Light", - "value": "50 - 100 mg" - }, - { - "name": "Common", - "value": "100 - 200 mg" - }, - { - "name": "Strong", - "value": "200 - 300 mg" - }, - { - "name": "Heavy", - "value": "300 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours" - }, - { - "name": "Onset", - "value": "15 - 45 minutes" - }, - { - "name": "Come up", - "value": "15 - 30 minutes" - }, - { - "name": "Peak", - "value": "2 - 4 hours" - }, - { - "name": "Offset", - "value": "30 - 90 minutes" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "15 - 45 mg" - }, - { - "name": "Common", - "value": "45 - 80 mg" - }, - { - "name": "Strong", - "value": "80 - 125 mg" - }, - { - "name": "Heavy", - "value": "125 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 6 hours" - }, - { - "name": "Onset", - "value": "15 - 45 minutes" - }, - { - "name": "Come up", - "value": "15 - 30 minutes" - }, - { - "name": "Peak", - "value": "30 - 60 minutes" - }, - { - "name": "Offset", - "value": "30 - 90 minutes" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/mephenmetrazine", - "experiencesUrl": null, - "name": "4-MPM", - "aliases": [ - "4-methylphenmetrazine" - ], - "aliasesStr": "4-methylphenmetrazine", - "summary": "4-Methylphenmetrazine is an empathogen of the phenylmorpholine class that seems to have a very rapid tolerance build up.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "5-15mg" - }, - { - "name": "Common", - "value": "15-25mg" - }, - { - "name": "Strong", - "value": "25-40mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "3-5 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-20mg" - }, - { - "name": "Strong", - "value": "20-25mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "Duration", - "value": "2-3 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/mephtetramine", - "experiencesUrl": null, - "name": "Mephtetramine", - "aliases": [ - "mtta" - ], - "aliasesStr": "mtta", - "summary": "Has a Phenpropylamine backbone like Methylphenidate. Seems barely active past negative physical effects. Only reports that include activity past the prior were mixing it with another substance.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Mescaline", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Mescaline.shtml", - "name": "Mescaline", - "aliases": [ - "buttons", - "mesc", - "san", - "san-pedro" - ], - "aliasesStr": "buttons,mesc,san,san-pedro", - "summary": "A psychedelic of the phenethylamine family. Found in psychedelic cacti that have long been used by peoples native to the Southwestern US and Mexico, including Peyote and San Pedro cacti, among others. Can be found as cactus pulp, as an extract from cacti, or as a synthetic substance created in a lab.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "50 mg" - }, - { - "name": "Light", - "value": "100 - 200 mg" - }, - { - "name": "Common", - "value": "200 - 400 mg" - }, - { - "name": "Strong", - "value": "400 - 800 mg" - }, - { - "name": "Heavy", - "value": "800 mg+" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 14 hours" - }, - { - "name": "Onset", - "value": "45 - 90 minutes" - }, - { - "name": "Come up", - "value": "60 - 120 minutes" - }, - { - "name": "Peak", - "value": "4 - 6 hours" - }, - { - "name": "Offset", - "value": "2 - 3 hours" - }, - { - "name": "After effects", - "value": "6 - 36 hours" - } - ] - } - ], - "interactions": [ - { - "status": "Caution", - "name": "2C-T-x" - }, - { - "status": "Caution", - "name": "2C-x" - }, - { - "status": "Caution", - "note": "The 5-MeO class of tryptamines can be unpredictable in their interactions", - "name": "5-MeO-xxT" - }, - { - "status": "Low Risk & Decrease", - "name": "Alcohol" - }, - { - "status": "Caution", - "note": "The focus and anxiety caused by stimulants is magnified by psychedelics and results in an increased risk of thought loops", - "name": "Amphetamines" - }, - { - "status": "Low Risk & Decrease", - "name": "Benzodiazepines" - }, - { - "status": "Low Risk & No Synergy", - "note": "High doses of caffeine are uncomfortable and this will be magnified by psychedelics", - "name": "Caffeine" - }, - { - "status": "Caution", - "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", - "name": "Cannabis" - }, - { - "status": "Caution", - "note": "The focus and anxiety caused by stimulants is magnified by psychedelics and results in an increased risk of thought loops", - "name": "Cocaine" - }, - { - "status": "Low Risk & Synergy", - "name": "DMT" - }, - { - "status": "Caution", - "name": "DOx" - }, - { - "status": "Low Risk & Synergy", - "name": "DXM" - }, - { - "status": "Low Risk & Decrease", - "name": "GHB/GBL" - }, - { - "status": "Low Risk & Synergy", - "name": "Ketamine" - }, - { - "status": "Low Risk & Synergy", - "name": "LSD" - }, - { - "status": "Caution", - "name": "MAOIs" - }, - { - "status": "Low Risk & Synergy", - "name": "MDMA" - }, - { - "status": "Low Risk & Synergy", - "name": "MXE" - }, - { - "status": "Low Risk & Synergy", - "name": "Mushrooms" - }, - { - "status": "Caution", - "name": "NBOMes" - }, - { - "status": "Low Risk & Synergy", - "name": "Nitrous" - }, - { - "status": "Low Risk & No Synergy", - "name": "Opioids" - }, - { - "status": "Low Risk & Synergy", - "name": "PCP" - }, - { - "status": "Low Risk & Decrease", - "name": "SSRIs" - }, - { - "status": "Unsafe", - "note": "This combination can cause seizures due to the lowering of the threshold by tramadol and the potential of mescaline to cause seziures.", - "name": "Tramadol" - }, - { - "status": "Dangerous", - "name": "aMT" - } - ] - }, - { - "url": "https://psychonautwiki.org/wiki/MET", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_MET.shtml", - "name": "MET", - "aliases": [ - "methylethyltryptamine" - ], - "aliasesStr": "methylethyltryptamine", - "summary": "A rare psychedelic tryptamine, related to DMT and DET. Little information exists about the effects or pharmacology of this drug.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "10 mg" - }, - { - "name": "Light", - "value": "20 - 40 mg" - }, - { - "name": "Common", - "value": "40 - 60 mg" - }, - { - "name": "Strong", - "value": "60 - 90 mg" - }, - { - "name": "Heavy", - "value": "90 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "30 - 75 minutes" - }, - { - "name": "Onset", - "value": "30 - 60 seconds" - }, - { - "name": "Peak", - "value": "10 - 20 minutes" - }, - { - "name": "Offset", - "value": "20 - 40 minutes" - }, - { - "name": "After effects", - "value": "20 - 60 minutes" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "40 mg" - }, - { - "name": "Light", - "value": "60 - 120 mg" - }, - { - "name": "Common", - "value": "120 - 150 mg" - }, - { - "name": "Strong", - "value": "150 - 200 mg" - }, - { - "name": "Heavy", - "value": "200 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "1 - 2 hours" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "1.5 - 2.5 hours" - }, - { - "name": "Offset", - "value": "1 - 3 hours" - }, - { - "name": "After effects", - "value": "6 - 24 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 25 mg" - }, - { - "name": "Strong", - "value": "25 - 35 mg" - }, - { - "name": "Heavy", - "value": "35 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 4 hours" - }, - { - "name": "Onset", - "value": "2 - 5 minutes" - }, - { - "name": "Come up", - "value": "20 - 40 minutes" - }, - { - "name": "Peak", - "value": "1 - 1.5 hours" - }, - { - "name": "Offset", - "value": "1 - 2.5 hours" - }, - { - "name": "After effects", - "value": "4 - 12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/metaclazepam", - "experiencesUrl": null, - "name": "Metaclazepam", - "aliases": [], - "aliasesStr": "", - "summary": "A benzodiazepine derivative. Which is mostly an anxiolytic substance, without strong hypnotic properties that most benzodiazepines have. Its active metabolite is N-desmethylmetaclazepam, which is the main metabolite. Slightly more effective as an anxiolytic than Bromazepam.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "9.5mg-18.75mg" - }, - { - "name": "Common", - "value": "18.75mg" - }, - { - "name": "Strong", - "value": "35-50mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "duration hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/metaxalone", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Metaxalone.shtml", - "name": "Metaxalone", - "aliases": [ - "skelaxin" - ], - "aliasesStr": "skelaxin", - "summary": "Muscle relaxant, that is used to relieve pain from general pain, and other musculoskeletal conditions.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "400-800mg." - }, - { - "name": "Common", - "value": "800-1600mg." - }, - { - "name": "Strong", - "value": "1600-2400mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Methadone", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Methadone.shtml", - "name": "Methadone", - "aliases": [ - "dolophine" - ], - "aliasesStr": "dolophine", - "summary": "A synthetic opioid drug used as an analgesic and is often used in detoxification off of other opioids. As it has a much longer half-life.", - "reagents": null, - "classes": { - "chemical": [ - "Diphenylpropylamine" - ], - "psychoactive": [ - "Opioids" - ] - }, - "toxicity": [ - "moderate toxicity", - "potentially lethal when mixed with depressants like alcohol or benzodiazepines" - ], - "addictionPotential": "extremely addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "opioids" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "3 - 5 mg" - }, - { - "name": "Common", - "value": "5 - 15 mg" - }, - { - "name": "Strong", - "value": "15 - 30 mg" - }, - { - "name": "Heavy", - "value": "30 mg +" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20 - 90 minutes" - }, - { - "name": "Peak", - "value": "6 - 8 hours" - }, - { - "name": "After effects", - "value": "1 - 24 hours" - } - ], - "bioavailability": "40-99%" - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Methallylescaline", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Methallylescaline.shtml", - "name": "Methallylescaline", - "aliases": [ - "mal" - ], - "aliasesStr": "mal", - "summary": "Mescaline analogue first synthesised by Alexander Shulgin, derived from and less potent than allylescaline. A psychedelic phenethylamine which causes stimulation, euphoria and hallucinatory experiences.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "15 - 25 mg" - }, - { - "name": "Common", - "value": "25 - 40 mg" - }, - { - "name": "Strong", - "value": "40 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 12 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "30 - 90 minutes" - }, - { - "name": "Peak", - "value": "3 - 5 hours" - }, - { - "name": "Offset", - "value": "2 - 4 hours" - }, - { - "name": "After effects", - "value": "4 - 8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/methamnetamine", - "experiencesUrl": null, - "name": "Methamnetamine", - "aliases": [ - "methylnaphetamine", - "mnt", - "n-methyl-pal-287" - ], - "aliasesStr": "methylnaphetamine,mnt,n-methyl-pal-287", - "summary": "A selective serotonin releaser, which also shows some light psychedelic activity. Almost always taken with a stimulant, to cause euphoric effects.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "60-80mg" - }, - { - "name": "Common", - "value": "80-120mg" - }, - { - "name": "Strong", - "value": "120-150mg" - }, - { - "name": "Heavy", - "value": "150mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Methamphetamine", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Methamphetamine.shtml", - "name": "Methamphetamine", - "aliases": [ - "crank", - "desoxyn", - "glass", - "ice", - "meth", - "shard", - "speed", - "tik", - "tina" - ], - "aliasesStr": "crank,desoxyn,glass,ice,meth,shard,speed,tik,tina", - "summary": "A fairly common and very strong CNS stimulant. It is sometimes prescribed in the form of desoxyn for ADHD and severe obesity. In low doses, methamphetamine can elevate mood, increase alertness, concentration, energy and reduces appetite. At higher doses, it can induce mania, psychosis and muscle degeneration among other issues. Tolerant users may report much higher doses than new users.", - "reagents": null, - "classes": { - "chemical": [ - "Amphetamine", - "Substituted amphetamines" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": null, - "addictionPotential": "extremely addictive with a high potential for abuse", - "tolerance": { - "full": "rapidly develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulants" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "< 5 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 20 mg" - }, - { - "name": "Strong", - "value": "20 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 6 hours", - "note": "Up to 12h for irregular users." - }, - { - "name": "Onset", - "value": "7 - 10 seconds" - }, - { - "name": "Come up", - "value": "5 - 10 seconds" - }, - { - "name": "Peak", - "value": "1 - 3 hours" - }, - { - "name": "Offset", - "value": "1 - 3 hours" - }, - { - "name": "After effects", - "value": "2 - 24 hours" - } - ], - "bioavailability": ">90%" - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "< 5 mg" - }, - { - "name": "Light", - "value": "5 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 30 mg" - }, - { - "name": "Strong", - "value": "30 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 - 150 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "7 - 12 hours", - "note": "Up to 24h for irregular users." - }, - { - "name": "Onset", - "value": "20 - 45 minutes" - }, - { - "name": "Come up", - "value": "2.6 - 3.6 hours" - }, - { - "name": "Peak", - "value": "3 - 5 hours" - }, - { - "name": "Offset", - "value": "3 - 4 hours" - }, - { - "name": "After effects", - "value": "12 - 24 hours" - } - ], - "bioavailability": "~70%" - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "< 5 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 30 mg" - }, - { - "name": "Strong", - "value": "30 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 7 hours", - "note": "Up to 12h for irregular users." - }, - { - "name": "Onset", - "value": "3 - 5 minutes" - }, - { - "name": "Come up", - "value": "3 - 5 minutes" - }, - { - "name": "Peak", - "value": "1.5 - 3 hours" - }, - { - "name": "Offset", - "value": "2 - 4 hours" - }, - { - "name": "After effects", - "value": "6 - 24 hours" - } - ], - "bioavailability": ">90%" - }, - { - "name": "Rectal", - "dosage": [ - { - "name": "Threshold", - "value": "< 5 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 30 mg" - }, - { - "name": "Strong", - "value": "30 - 40 mg" - }, - { - "name": "Heavy", - "value": "40 mg+" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 10 hours", - "note": "Up to 18h for irregular users." - }, - { - "name": "Onset", - "value": "5 - 15 minutes" - }, - { - "name": "Come up", - "value": "3 - 5 minutes" - }, - { - "name": "Peak", - "value": "2 - 4 hours" - }, - { - "name": "Offset", - "value": "3 - 5 hours" - }, - { - "name": "After effects", - "value": "12 - 24 hours" - } - ], - "bioavailability": "~99%" - }, - { - "name": "Intravenous", - "dosage": [ - { - "name": "Threshold", - "value": "< 5 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 30 mg" - }, - { - "name": "Strong", - "value": "30 - 40 mg" - }, - { - "name": "Heavy", - "value": "40 - 80 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours", - "note": "Up to 18h for irregular users." - }, - { - "name": "Onset", - "value": "15 - 30 seconds" - }, - { - "name": "Come up", - "value": "1 - 2 minutes" - }, - { - "name": "Peak", - "value": "1 - 3 hours" - }, - { - "name": "Offset", - "value": "3 - 4 hours" - }, - { - "name": "After effects", - "value": "12 - 24 hours" - } - ], - "bioavailability": "~100%" - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Methaqualone", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Methaqualone.shtml", - "name": "Methaqualone", - "aliases": [ - "ludes", - "mandrax", - "quaaludes", - "qualudes", - "sopor" - ], - "aliasesStr": "ludes,mandrax,quaaludes,qualudes,sopor", - "summary": "A pharmaceutical depressant and sedative phased out due to the better safety profile of benzodiazepines, part of the Qualone group of substances. Now very rare, except in South Africa.", - "reagents": null, - "classes": { - "chemical": [ - "Quinazolinone" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "doses of over 300mg can be dangerous for first time users", - "safe at appropriate dosages" - ], - "addictionPotential": "extremely addictive", - "tolerance": { - "full": "within a couple of days of repeated administration", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "GABA|gabaergic", - "depressants" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "50 mg" - }, - { - "name": "Light", - "value": "50 - 100 mg" - }, - { - "name": "Common", - "value": "100 - 200 mg" - }, - { - "name": "Strong", - "value": "200 - 300 mg" - }, - { - "name": "Heavy", - "value": "300 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1 - 2 hours" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "75 - 150 mg" - }, - { - "name": "Light", - "value": "150 - 300 mg" - }, - { - "name": "Common", - "value": "300 - 500 mg" - }, - { - "name": "Strong", - "value": "500 - 600 mg" - }, - { - "name": "Heavy", - "value": "600 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 8 hours" - }, - { - "name": "Onset", - "value": "30 minutes" - }, - { - "name": "Come up", - "value": "30 minutes" - }, - { - "name": "Peak", - "value": "2 - 4 hours" - }, - { - "name": "Offset", - "value": "2 - 4 hours" - }, - { - "name": "After effects", - "value": "6 - 8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/methedrone", - "experiencesUrl": null, - "name": "Methedrone", - "aliases": [ - "bk-pmma" - ], - "aliasesStr": "bk-pmma", - "summary": "BK-PMMA Closely related to PMMA and others. Stimulant.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Methiopropamine", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Methiopropamine.shtml", - "name": "MPA", - "aliases": [ - "methiopropamine" - ], - "aliasesStr": "methiopropamine", - "summary": "An analogue of methamphetamine with effects close to amphetamine. Some users report negative side effects including stomach discomfort and sweating. Acts as a selective NDRI.", - "reagents": null, - "classes": { - "chemical": [ - "Thiophene" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "10 mg" - }, - { - "name": "Light", - "value": "20 - 30 mg" - }, - { - "name": "Common", - "value": "30 - 50 mg" - }, - { - "name": "Strong", - "value": "50 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 10 hours" - }, - { - "name": "Onset", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "2 - 4 hours" - }, - { - "name": "Offset", - "value": "2 - 3 hours" - }, - { - "name": "After effects", - "value": "1 - 2 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "5 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 40 mg" - }, - { - "name": "Strong", - "value": "40 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 4 hours" - }, - { - "name": "Onset", - "value": "5 - 10 minutes" - }, - { - "name": "Come up", - "value": "5 - 10 minutes" - }, - { - "name": "Peak", - "value": "30 - 60 minutes" - }, - { - "name": "Offset", - "value": "30 - 120 minutes" - }, - { - "name": "After effects", - "value": "6 - 8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Methoxetamine", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Methoxetamine_.shtml", - "name": "MXE", - "aliases": [ - "3-meo-2'oxo-pce", - "methoxetamine", - "mexxy" - ], - "aliasesStr": "3-meo-2'oxo-pce,methoxetamine,mexxy", - "summary": "A popular dissociative drug which is an analogue of ketamine, though less sedating and more potent by weight, with a subjectively more 'complicated' set of effects.", - "reagents": null, - "classes": { - "chemical": [ - "Arylcyclohexylamines" - ], - "psychoactive": [ - "Dissociatives" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dissociative" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 25 mg" - }, - { - "name": "Common", - "value": "25 - 45 mg" - }, - { - "name": "Strong", - "value": "45 - 70 mg" - }, - { - "name": "Heavy", - "value": "70 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "15 - 30 minutes" - }, - { - "name": "Come up", - "value": "45 - 90 minutes" - }, - { - "name": "Peak", - "value": "1.5 - 2.5 hours" - }, - { - "name": "Offset", - "value": "1 - 1.5 hours" - }, - { - "name": "After effects", - "value": "6 - 48 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 35 mg" - }, - { - "name": "Strong", - "value": "35 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 5 hours" - }, - { - "name": "Onset", - "value": "5 - 20 minutes" - }, - { - "name": "Come up", - "value": "30 - 75 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "1 - 1.5 hours" - }, - { - "name": "After effects", - "value": "4 - 48 hours" - } - ] - }, - { - "name": "Sublingual", - "dosage": [ - { - "name": "Threshold", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "40-60mg" - }, - { - "name": "Strong", - "value": "60-75mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "2-48 hours" - } - ] - } - ], - "interactions": [ - { - "status": "Caution", - "name": "2C-T-x" - }, - { - "status": "Low Risk & Synergy", - "name": "2C-x" - }, - { - "status": "Low Risk & Synergy", - "note": "Little information exists about this combination.", - "name": "5-MeO-xxT" - }, - { - "status": "Dangerous", - "note": "There is a high risk of memory loss, vomiting and severe ataxia from this combination.", - "name": "Alcohol" - }, - { - "status": "Caution", - "note": "Risk of tachycardia, hypertension, and manic states", - "name": "Amphetamines" - }, - { - "status": "Caution", - "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place affected patients in the recovery position to prevent vomit aspiration from excess.", - "name": "Benzodiazepines" - }, - { - "status": "Low Risk & No Synergy", - "note": "No likely interactions", - "name": "Caffeine" - }, - { - "status": "Low Risk & Synergy", - "name": "Cannabis" - }, - { - "status": "Caution", - "note": "Stimulants taken with MXE can lead to hypermanic states much more easily, especially if sleep is avoided.", - "name": "Cocaine" - }, - { - "status": "Low Risk & Synergy", - "name": "DMT" - }, - { - "status": "Caution", - "note": "As an NMDA antagonist MXE potentiates DOx which can be unpleasantly intense", - "name": "DOx" - }, - { - "status": "Low Risk & No Synergy", - "name": "DXM" - }, - { - "status": "Dangerous", - "note": "Both substances cause ataxia and bring a risk of vomiting and unconsciousness. If the patient falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position.", - "name": "GHB/GBL" - }, - { - "status": "Low Risk & Synergy", - "name": "Ketamine" - }, - { - "status": "Low Risk & Synergy", - "name": "LSD" - }, - { - "status": "Unsafe", - "note": "MAO-B inhibitors appear to increase the potency of MXE. MAO-A inhbitors have some negative reports associated with the combination but there isn't much information available", - "name": "MAOIs" - }, - { - "status": "Caution", - "note": "There have been reports of risky serotonergic interactions when the two are taken at the same time, but MXE taken to the end of an MDMA experience does not appear to cause the same issues.", - "name": "MDMA" - }, - { - "status": "Low Risk & Synergy", - "name": "Mescaline" - }, - { - "status": "Low Risk & Synergy", - "name": "Mushrooms" - }, - { - "status": "Caution", - "note": "As an NMDA antagonist MXE potentiates NBOMes which can be unpleasantly intense", - "name": "NBOMes" - }, - { - "status": "Low Risk & Synergy", - "name": "Nitrous" - }, - { - "status": "Dangerous", - "note": "This combination can potentiate the effects of the opioid", - "name": "Opioids" - }, - { - "status": "Caution", - "note": "There are no reports available about this combination", - "name": "PCP" - }, - { - "status": "Caution", - "note": "Depending on the SSRI this combination can be unpredictable", - "name": "SSRIs" - }, - { - "status": "Dangerous", - "name": "Tramadol" - }, - { - "status": "Dangerous", - "name": "aMT" - } - ] - }, - { - "url": "https://psychonautwiki.org/wiki/Methoxphenidine", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Methoxphenidine.shtml", - "name": "Methoxphenidine", - "aliases": [ - "2-meo-diphenidine", - "2-mxp", - "methoxyphenidine", - "mxp" - ], - "aliasesStr": "2-meo-diphenidine,2-mxp,methoxyphenidine,mxp", - "summary": "A dissociative from the diarylethylamine class, a more potent analogue of diphenidine. Known to be unpredictable, and can cause blackouts.", - "reagents": null, - "classes": { - "chemical": [ - "Diarylethylamines" - ], - "psychoactive": [ - "Dissociatives" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dissociative" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "30 mg" - }, - { - "name": "Light", - "value": "50 - 75 mg" - }, - { - "name": "Common", - "value": "75 - 120 mg" - }, - { - "name": "Strong", - "value": "120 - 150 mg" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 8 hours" - }, - { - "name": "Onset", - "value": "30 - 60 minutes" - }, - { - "name": "After effects", - "value": "1 - 3 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/methoxyacetyl-fentanyl", - "experiencesUrl": null, - "name": "METHOXYACETYL-FENTANYL", - "aliases": [ - "desfluoroocfentanil", - "maf" - ], - "aliasesStr": "desfluoroocfentanil,maf", - "summary": "A quite potent fentanyl analogue.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "0.25-0.5mg" - }, - { - "name": "Common", - "value": "0.5-1.5mg" - }, - { - "name": "Strong", - "value": "1.5mg+" - } - ], - "duration": [ - { - "name": "After effects", - "value": "1-4 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "10-20 minutes" - }, - { - "name": "Duration", - "value": "10-20 minutes" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/methoxyketamine", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Methoxyketamine.shtml", - "name": "Methoxyketamine", - "aliases": [ - "2-meo-ketamine" - ], - "aliasesStr": "2-meo-ketamine", - "summary": "An arylcyclohexylamine drug and analogue of ketamine, though slightly less potent. Produces similar dissociative and anaesthetic effects. Very rare.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "5-15mg" - }, - { - "name": "Light", - "value": "15-60mg" - }, - { - "name": "Common", - "value": "60-130mg" - }, - { - "name": "Strong", - "value": "130-200mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-20 minutes" - }, - { - "name": "Duration", - "value": "1-2 hours" - }, - { - "name": "After effects", - "value": "2-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/methoxypiperamide", - "experiencesUrl": null, - "name": "Methoxypiperamide", - "aliases": [], - "aliasesStr": "", - "summary": "Drug of the Piperazine class. The 4-Methoxy-\u03b1-keto analogue of Methylbenzylpiperazine. Seemingly inactive on its own. Was sold in tandem with Mephtetramine.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/methylmethaqualone", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Methylmethaqualone.shtml", - "name": "Methylmethaqualone", - "aliases": [ - "mmq" - ], - "aliasesStr": "mmq", - "summary": "A more potent analogue of methaqualone with a short duration. Thought to be potentially neurotoxic. Has pro-convulsive effects.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Vapourized/Sublingual", - "dosage": [ - { - "name": "Threshold", - "value": "2-3mg" - }, - { - "name": "Light", - "value": "3-5mg" - }, - { - "name": "Common", - "value": "5-10mg." - }, - { - "name": "Strong", - "value": "10-20mg+" - } - ], - "duration": [ - { - "name": "Duration", - "value": "1-2 hours" - }, - { - "name": "After effects", - "value": "1-2 hours" - } - ] - }, - { - "name": "Sublingual", - "duration": [ - { - "name": "Onset", - "value": "10 minutes" - }, - { - "name": "Duration", - "value": "1-2 hours" - }, - { - "name": "After effects", - "value": "1-2 hours" - } - ] - }, - { - "name": "Vapourized", - "duration": [ - { - "name": "Onset", - "value": "0-1 minutes" - }, - { - "name": "Duration", - "value": "1-2 hours" - }, - { - "name": "After effects", - "value": "1-2 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/methylmorphenate", - "experiencesUrl": null, - "name": "Methylmorphenate", - "aliases": [], - "aliasesStr": "", - "summary": "Stimulant of the phenylmorpholine class, an analogue of Methylphenidate where the piperidine ring has been replaced by a morpholine one, with ~1/10 potency.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Methylone", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Methylone.shtml", - "name": "Methylone", - "aliases": [ - "bk-mdma", - "m1", - "mdmc" - ], - "aliasesStr": "bk-mdma,m1,mdmc", - "summary": "\u03b2k-MDMA is a cathinone stimulant and empathogen, similar in structure to MDMA, though more stimulating and less empathogenic in comparison. Was very commonly mis-sold as MDMA on the street until it was banned in 2013. The Marquis reagent can differentiate \u03b2k-MDMA from MDMA. Less potent than MDMA with a slightly shorter duration.", - "reagents": null, - "classes": { - "chemical": [ - "Khat#1#" - ], - "psychoactive": [ - "Stimulants", - "Entactogens" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "1 - 3 weeks", - "zero": "3 - 6 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "75 mg" - }, - { - "name": "Light", - "value": "75 - 150 mg" - }, - { - "name": "Common", - "value": "150 - 225 mg" - }, - { - "name": "Strong", - "value": "225 - 325 mg" - }, - { - "name": "Heavy", - "value": "325 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2.5 - 4 hours" - }, - { - "name": "Onset", - "value": "15 - 45 minutes" - }, - { - "name": "Come up", - "value": "15 - 45 minutes" - }, - { - "name": "Peak", - "value": "60 - 90 minutes" - }, - { - "name": "Offset", - "value": "60 - 90 minutes" - }, - { - "name": "After effects", - "value": "6 - 24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Methylphenidate", - "experiencesUrl": null, - "name": "Methylphenidate", - "aliases": [ - "biphentin", - "concerta", - "equasym xl", - "methylin", - "mph", - "ritalin" - ], - "aliasesStr": "biphentin,concerta,equasym xl,methylin,mph,ritalin", - "summary": "A psychostimulant commonly used in the treatment of ADHD, narcolepsy and obesity, particularly in the EU instead of Adderall. Methylphenidate is also a 5HT1A receptor agonist. Sometimes prescribed off-label to help the withdrawals from cocaine and other stimulants.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted phenidates" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": null, - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 40 mg" - }, - { - "name": "Strong", - "value": "40 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "20 - 60 minutes" - }, - { - "name": "Peak", - "value": "1.5 - 2.5 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "2 - 6 hours" - } - ], - "bioavailability": "11-52%" - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 30 mg" - }, - { - "name": "Strong", - "value": "30 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 4 hours" - }, - { - "name": "Onset", - "value": "5 - 20 minutes" - }, - { - "name": "Come up", - "value": "15 - 40 minutes" - }, - { - "name": "Peak", - "value": "30 - 45 minutes" - }, - { - "name": "Offset", - "value": "2 - 4 hours" - }, - { - "name": "After effects", - "value": "1 - 4 hours" - } - ] - }, - { - "name": "Oral-IR", - "duration": [ - { - "name": "Onset", - "value": "30-120 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - }, - { - "name": "Oral-XR", - "duration": [ - { - "name": "Onset", - "value": "30-120 minutes" - }, - { - "name": "Duration", - "value": "8-12 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - }, - { - "name": "Insufflated-XR", - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - }, - { - "name": "Insufflated-IR", - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/methyprylon", - "experiencesUrl": null, - "name": "Methyprylon", - "aliases": [ - "noludar" - ], - "aliasesStr": "noludar", - "summary": "Sedative of the pipeidinedone family. Was used for treating insomnia, yet is rarely used today due to substances with fewer side effects, such as benzodiazepines.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "150-200mg" - }, - { - "name": "Common", - "value": "200-300mg" - }, - { - "name": "Strong", - "value": "300mg+" - } - ], - "duration": [ - { - "name": "Duration", - "value": "6-12 hours" - }, - { - "name": "After effects", - "value": "1-16 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Metizolam", - "experiencesUrl": null, - "name": "Metizolam", - "aliases": [ - "desmethyletizolam", - "metiz" - ], - "aliasesStr": "desmethyletizolam,metiz", - "summary": "Also known as desmethyletizolam, a thienodiazepine similar in effects and structure to etizolam, but around half as potent and with around a 60% longer half-life. A sedative, and hypnotic, it may cause amnesia and lowered inhibitions in excess.", - "reagents": null, - "classes": { - "chemical": [ - "Thienodiazepines" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "large therapeutic index and margin of safety" - ], - "addictionPotential": "extremely addictive", - "tolerance": { - "full": "within a couple of days of repeated administration", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "thienzodiazepines", - "benzodiazepines" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "< 1 mg" - }, - { - "name": "Light", - "value": "1 - 2 mg" - }, - { - "name": "Common", - "value": "2 - 4 mg" - }, - { - "name": "Strong", - "value": "4 - 6 mg" - }, - { - "name": "Heavy", - "value": "6 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 8 hours" - }, - { - "name": "Onset", - "value": "30 - 90 minutes" - }, - { - "name": "After effects", - "value": "10 - 30 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/mexamine", - "experiencesUrl": null, - "name": "Mexamine", - "aliases": [], - "aliasesStr": "", - "summary": "5-Methoxytryptamine, a tryptamine derivative that naturally occurs in the body at low levels. No evidence of recreational use. Apparently enhances dreams.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/mexazolam", - "experiencesUrl": null, - "name": "Mexazolam", - "aliases": [ - "melex", - "sedoxil" - ], - "aliasesStr": "melex,sedoxil", - "summary": "Benzodiazepine derivative that has been trialed for anxiety and was found to be effective for anxiety at one week week follow-ups yet after three weeks it had lost its therapeutic anxiolytic properties and becoming no more effective than placebo.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "0.25-0.5mg" - }, - { - "name": "Common", - "value": "0.5-1.5mg" - }, - { - "name": "Strong", - "value": "1.5-2mg" - }, - { - "name": "Heavy", - "value": "2-3mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-45 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Mexedrone", - "experiencesUrl": null, - "name": "Mexedrone", - "aliases": [ - "4-mmc-meo", - "4-mmeoc" - ], - "aliasesStr": "4-mmc-meo,4-mmeoc", - "summary": "Mexedrone is a stimulant drug of the cathinone class. It alters the reuptake of serotonin, dopamine, and norepinephrine to cause euphoria, and is similar in effects to mephedrone. It is considered a designer drug and is in a legally grey area globally.", - "reagents": null, - "classes": { - "chemical": [ - "Khat#1#" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "50 mg" - }, - { - "name": "Light", - "value": "100 - 150 mg" - }, - { - "name": "Common", - "value": "150 - 250 mg" - }, - { - "name": "Strong", - "value": "250 - 350 mg" - }, - { - "name": "Heavy", - "value": "350 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "50-80mg" - }, - { - "name": "Common", - "value": "80-120mg" - }, - { - "name": "Strong", - "value": "120-200mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "3-10 minutes" - }, - { - "name": "Duration", - "value": "1-3 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Midazolam", - "experiencesUrl": null, - "name": "Midazolam", - "aliases": [ - "versed" - ], - "aliasesStr": "versed", - "summary": "A common hypnotic, sedative and anxiolytic benzodiazepine. High doses may cause amnesia and loss of inhibitions. Unusually, it is water soluble, and commonly used as a premedication for sedation as the solubility makes it better for IV use than other benzodiazepines.", - "reagents": null, - "classes": { - "chemical": [ - "Benzodiazepines" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "2.5 - 5 mg" - }, - { - "name": "Common", - "value": "5 - 15 mg" - }, - { - "name": "Strong", - "value": "15 - 30 mg" - }, - { - "name": "Heavy", - "value": "30 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 4 hours" - }, - { - "name": "Onset", - "value": "30 - 60 minutes" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - } - ], - "bioavailability": "40%" - }, - { - "name": "Intravenous", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "1 - 2 mg" - }, - { - "name": "Common", - "value": "2 - 4 mg" - }, - { - "name": "Strong", - "value": "4 - 5 mg" - }, - { - "name": "Heavy", - "value": "5 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 6 hours" - }, - { - "name": "Onset", - "value": "5 minutes" - }, - { - "name": "Peak", - "value": "1 - 4 hours" - }, - { - "name": "Offset", - "value": "1 hour" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Common", - "value": "7-15mg" - }, - { - "name": "Strong", - "value": "15-25mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-5 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ], - "bioavailability": "55%" - }, - { - "name": "Rectal", - "dosage": [ - { - "name": "Common", - "value": "7-15mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-25 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "Intramuscular", - "dosage": [ - { - "name": "Common", - "value": "5-12mg" - }, - { - "name": "Strong", - "value": "12-25mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-20 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ], - "bioavailability": "90%" - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/MiPLA", - "experiencesUrl": null, - "name": "MiPLA", - "aliases": [ - "lamide" - ], - "aliasesStr": "lamide", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Lysergamides" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "low potential for abuse and dependence", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "5-7 days", - "zero": "14 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "50 \u00b5g" - }, - { - "name": "Light", - "value": "100 - 150 \u00b5g" - }, - { - "name": "Common", - "value": "150 - 200 \u00b5g" - }, - { - "name": "Strong", - "value": "200 - 250 \u00b5g" - }, - { - "name": "Heavy", - "value": "300 \u00b5g +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - }, - { - "name": "Come up", - "value": "45 - 90 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/MiPT", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_MIPT.shtml", - "name": "MiPT", - "aliases": [ - "n-methyl-n-isopropyltryptamine" - ], - "aliasesStr": "n-methyl-n-isopropyltryptamine", - "summary": "N-Methyl-N-isopropyltryptamine, a tryptamine analogue of DMT, a very uncommon drug with very few reports of human use. Described as 'more psychedelic than hallucinogenic' users report only mild visuals with some stimulation and cognitive effects. One of the more stable tryptamines.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "10 - 25 mg" - }, - { - "name": "Strong", - "value": "25 - 75 mg" - }, - { - "name": "Heavy", - "value": "75 - 200 mg" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 8 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-15mg" - }, - { - "name": "Strong", - "value": "15-20mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "0-2 minutes" - }, - { - "name": "Duration", - "value": "3-5 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - }, - { - "name": "Vapourized", - "dosage": [ - { - "name": "Light", - "value": "3-5mg" - }, - { - "name": "Common", - "value": "5-15mg" - }, - { - "name": "Strong", - "value": "15-20mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "0-1 minutes" - }, - { - "name": "Duration", - "value": "2-3 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Mirtazapine", - "experiencesUrl": null, - "name": "Mirtazapine", - "aliases": [ - "avanza", - "axit", - "mirtaz", - "mirtazon", - "remeron", - "zispin" - ], - "aliasesStr": "avanza,axit,mirtaz,mirtazon,remeron,zispin", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Piperazinoazepine" - ], - "psychoactive": [ - "Deliriant", - "Depressant", - "Antidepressants" - ] - }, - "toxicity": null, - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "3.5 mg" - }, - { - "name": "Light", - "value": "70 - 130 mg" - }, - { - "name": "Common", - "value": "130 - 190 mg" - }, - { - "name": "Strong", - "value": "190 - 250 mg" - }, - { - "name": "Heavy", - "value": "250 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "14 - 24 hours" - }, - { - "name": "Onset", - "value": "15 - 30 min" - }, - { - "name": "Peak", - "value": "90 - 180 min" - }, - { - "name": "Offset", - "value": "2 - 6 hours" - }, - { - "name": "After effects", - "value": "up to 24 hours" - } - ], - "bioavailability": "50%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/mk-801", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Dizocilpine.shtml", - "name": "MK-801", - "aliases": [ - "dizocilpine", - "mk801" - ], - "aliasesStr": "dizocilpine,mk801", - "summary": "Dissociative research chemical similar to PCP, and Ketamine. Dizocilpine, also known as MK-801, is a non-competitive antagonist of the NMDA receptor.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "50-100ug" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30mins" - }, - { - "name": "Duration", - "value": "20-36 hours" - }, - { - "name": "After effects", - "value": "1-72 hours" - } - ] - }, - { - "name": "IM", - "duration": [ - { - "name": "Onset", - "value": "45mins" - }, - { - "name": "Duration", - "value": "20-36 hours" - }, - { - "name": "After effects", - "value": "1-72 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/moclobemide", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Moclobemide.shtml", - "name": "Moclobemide", - "aliases": [], - "aliasesStr": "", - "summary": "A reversible MAOI which is prescribed to treat depression and anxiety. Its reversibility and short-acting length of effects often means it is used in \"pharmahuasca\" preparations.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "150mg" - }, - { - "name": "Common", - "value": "300mg" - }, - { - "name": "Strong", - "value": "600mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-90 minutes" - }, - { - "name": "Duration", - "value": "2-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Modafinil", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Modafinil.shtml", - "name": "Modafinil", - "aliases": [ - "alertec", - "modalert", - "modavigil", - "modiodal", - "provigil" - ], - "aliasesStr": "alertec,modalert,modavigil,modiodal,provigil", - "summary": "A wakefulness promoting, long acting stimulant which is typically only used functionally, because there is no real euphoric component to its effects. Also prescribed for daytime sleeping disorders.", - "reagents": null, - "classes": { - "chemical": [ - "Benzhydryl" - ], - "psychoactive": [ - "Eugeroics" - ] - }, - "toxicity": [ - "The median lethal dose at which 50% of participants die (LD50) from modafinil for human beings has never been reached" - ], - "addictionPotential": "not addictive with a low potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "benzhydryl", - "nootropic|nootropics" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "25 mg" - }, - { - "name": "Light", - "value": "50 - 100 mg" - }, - { - "name": "Common", - "value": "100 - 200 mg" - }, - { - "name": "Strong", - "value": "200 - 300 mg" - }, - { - "name": "Heavy", - "value": "300 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 10 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "20 - 60 minutes" - }, - { - "name": "Peak", - "value": "3.5 - 5 hours" - }, - { - "name": "Offset", - "value": "1 - 3 hours" - }, - { - "name": "After effects", - "value": "2 - 6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/morpheridine", - "experiencesUrl": null, - "name": "Morpheridine", - "aliases": [], - "aliasesStr": "", - "summary": "Is a 4-Phenylpiperidine derivative that is related to Pehidine. It is roughly 4x as potent as the parent compound, does not cause convulsions such as Pethidine.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "5-10mg." - }, - { - "name": "Common", - "value": "10-20mg" - }, - { - "name": "Strong", - "value": "20-35mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "Oral minutes" - }, - { - "name": "Duration", - "value": "Oral hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Morphine", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Morphine.shtml", - "name": "Morphine", - "aliases": [ - "mscontin", - "oramorph", - "sevredol", - "zomorph" - ], - "aliasesStr": "mscontin,oramorph,sevredol,zomorph", - "summary": "The prototypical opioid drug, a powerful analgesic with euphoric qualities, found in the seeds and wax of the plant papaver somniferum (opium poppy). First isolated by Friedrich Sert\u00fcrner in 1805, named for its sleep-inducing qualities. Do not combine with other depressants, may cause dangerous respiratory depression in overdose.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted morphinans" - ], - "psychoactive": [ - "Opioids" - ] - }, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": [ - "opioids" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "< 10 mg" - }, - { - "name": "Light", - "value": "10 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 20 mg" - }, - { - "name": "Strong", - "value": "20 - 30 mg" - }, - { - "name": "Heavy", - "value": "30 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "10 - 30 minutes" - }, - { - "name": "Come up", - "value": "20 - 40 minutes" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - } - ], - "bioavailability": "30%" - }, - { - "name": "Oral_IR", - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "Oral_ER", - "duration": [ - { - "name": "Onset", - "value": "40-80 minutes" - }, - { - "name": "Duration", - "value": "4-10 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "4-5 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ], - "bioavailability": "15-20%" - }, - { - "name": "Plugged", - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "3-4 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "IV/IM", - "duration": [ - { - "name": "Onset", - "value": "0-1 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/MPT", - "experiencesUrl": null, - "name": "MPT", - "aliases": [ - "methylpropyltryptamine" - ], - "aliasesStr": "methylpropyltryptamine", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "??? -\u00a0??? mg", - "note": "\"???\" is not a number." - } - ], - "duration": [ - { - "name": "Total", - "value": "??? -\u00a0???" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/mt-45", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_MT45.shtml", - "name": "MT-45", - "aliases": [ - "ic-6", - "mt45" - ], - "aliasesStr": "ic-6,mt45", - "summary": "A synthetic opioid drug that was rumoured to be roughly 80% the potency of Morphine orally. Was created by Dainippon Pharmaceutical in the 1970's. It has been used as a lead compound for the design of related substances. It has been associated with hearing loss and hair loss. Structurally unrelated to most other opioid drugs. Treat with caution, especially long term use.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "30mg" - }, - { - "name": "Light", - "value": "30-45mg" - }, - { - "name": "Common", - "value": "45-60mg" - }, - { - "name": "Strong", - "value": "60mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-45 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "2-3 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/mushrooms", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Psilocybin.shtml", - "name": "Mushrooms", - "aliases": [ - "mushroom", - "psilocybin", - "psylocybin", - "shrooms" - ], - "aliasesStr": "mushroom,psilocybin,psylocybin,shrooms", - "summary": "Fungi containing psilocybin, a prototypical psychedelic with similar effects to LSD, but with a shorter duration; also considered as being more confusing, introspective and entheogenic. Usually refers to psilocybe mushrooms rather than Amanitas, which have different effects. Are considered physically safe if properly identified, which should always be done by an expert.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "0.5-1.5g" - }, - { - "name": "Common", - "value": "1.5-3.5g" - }, - { - "name": "Strong", - "value": "3.5g+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "Varies" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - } - ], - "interactions": [ - { - "status": "Low Risk & Synergy", - "name": "2C-T-x" - }, - { - "status": "Low Risk & Synergy", - "name": "2C-x" - }, - { - "status": "Low Risk & Synergy", - "name": "5-MeO-xxT" - }, - { - "status": "Low Risk & Decrease", - "name": "Alcohol" - }, - { - "status": "Caution", - "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", - "name": "Amphetamines" - }, - { - "status": "Low Risk & Decrease", - "name": "Benzodiazepines" - }, - { - "status": "Low Risk & No Synergy", - "name": "Caffeine" - }, - { - "status": "Caution", - "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", - "name": "Cannabis" - }, - { - "status": "Caution", - "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", - "name": "Cocaine" - }, - { - "status": "Low Risk & Synergy", - "name": "DMT" - }, - { - "status": "Low Risk & Synergy", - "name": "DOx" - }, - { - "status": "Low Risk & Synergy", - "name": "DXM" - }, - { - "status": "Low Risk & Decrease", - "name": "GHB/GBL" - }, - { - "status": "Low Risk & Synergy", - "name": "Ketamine" - }, - { - "status": "Low Risk & Synergy", - "name": "LSD" - }, - { - "status": "Low Risk & Synergy", - "name": "MAOIs" - }, - { - "status": "Low Risk & Synergy", - "name": "MDMA" - }, - { - "status": "Low Risk & Synergy", - "name": "MXE" - }, - { - "status": "Low Risk & Synergy", - "name": "Mescaline" - }, - { - "status": "Low Risk & Synergy", - "name": "NBOMes" - }, - { - "status": "Low Risk & Synergy", - "name": "Nitrous" - }, - { - "status": "Low Risk & No Synergy", - "name": "Opioids" - }, - { - "status": "Low Risk & Synergy", - "name": "PCP" - }, - { - "status": "Low Risk & Decrease", - "name": "SSRIs" - }, - { - "status": "Unsafe", - "note": "Tramadol is well known to lower seizure threshold and psychedelics also cause occasional seizures.", - "name": "Tramadol" - }, - { - "status": "Low Risk & Synergy", - "name": "aMT" - } - ] - }, - { - "url": "https://psychonautwiki.org/wiki/MXiPr", - "experiencesUrl": null, - "name": "MXiPr", - "aliases": [ - "mxip" - ], - "aliasesStr": "mxip", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Arylcyclohexylamines" - ], - "psychoactive": [ - "Dissociatives" - ] - }, - "toxicity": [ - "toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dissociative" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 40 mg" - }, - { - "name": "Strong", - "value": "40 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 5 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "After effects", - "value": "4 - 48 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 40 mg" - }, - { - "name": "Strong", - "value": "40 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1.5 - 4 hours" - }, - { - "name": "Onset", - "value": "2 - 5 minutes" - }, - { - "name": "After effects", - "value": "2 - 12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/mxm", - "experiencesUrl": null, - "name": "MXM", - "aliases": [ - "methoxmetamine" - ], - "aliasesStr": "methoxmetamine", - "summary": "An arylcyclohexamine, dissociative and anaesthetic closely related to methoxetamine, ketamine and PCP. It has seen some popularity among RC users, being advertised as an MXE replacement after its illegalisation in many parts of the world - however, users report a more stimulating experience closer to those caused by PCP and its analogues.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "10-20mg" - }, - { - "name": "Light", - "value": "20-40mg" - }, - { - "name": "Common", - "value": "40-60mg" - }, - { - "name": "Strong", - "value": "60-100mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "Varying hours" - }, - { - "name": "Duration", - "value": "3-5 hours" - }, - { - "name": "After effects", - "value": "2-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Myristicin", - "experiencesUrl": null, - "name": "Myristicin", - "aliases": [ - "nutmeg" - ], - "aliasesStr": "nutmeg", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Phenylpropenes" - ], - "psychoactive": [ - "Deliriant" - ] - }, - "toxicity": [ - "is neurotoxic", - "can be fatal in extremely high doses" - ], - "addictionPotential": "is not known to be addictive", - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50 - 200 mg" - }, - { - "name": "Common", - "value": "200 - 500 mg" - }, - { - "name": "Strong", - "value": "500 - 800 mg" - }, - { - "name": "Heavy", - "value": "800 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "12 - 72 hours" - }, - { - "name": "Onset", - "value": "3 - 8 hours" - }, - { - "name": "Come up", - "value": "1 - 4 hours" - }, - { - "name": "Peak", - "value": "9 - 12 hours" - }, - { - "name": "Offset", - "value": "12 - 48 hours" - }, - { - "name": "After effects", - "value": "24 - 72 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/N-Acetylcysteine", - "experiencesUrl": null, - "name": "N-Acetylcysteine", - "aliases": [], - "aliasesStr": "", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Substituted amino acid", - "Cysteine" - ], - "psychoactive": [ - "Nootropic" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": null, - "tolerance": { - "full": "develops quickly with repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "100 mg" - }, - { - "name": "Light", - "value": "400 - 600 mg" - }, - { - "name": "Common", - "value": "600 - 1000 mg" - }, - { - "name": "Strong", - "value": "1000 - 1500 mg" - }, - { - "name": "Heavy", - "value": "1500 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 6 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - } - ], - "bioavailability": "4%" - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Naloxone", - "experiencesUrl": null, - "name": "Naloxone", - "aliases": [ - "evzio", - "narcan" - ], - "aliasesStr": "evzio,narcan", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Substituted morphinans" - ], - "psychoactive": [ - "Opioids" - ] - }, - "toxicity": null, - "addictionPotential": "not habit-forming", - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Insufflated", - "dosage": [ - { - "name": "Common", - "value": "1 - 4 mg" - } - ], - "duration": [ - { - "name": "Total", - "value": "30 - 60 minutes" - }, - { - "name": "Onset", - "value": "0 - 10 minutes" - } - ] - }, - { - "name": "Intramuscular", - "dosage": [ - { - "name": "Common", - "value": "0.4 - 2 mg" - } - ], - "duration": [ - { - "name": "Total", - "value": "30 - 60 minutes" - }, - { - "name": "Onset", - "value": "0.25 - 2 minutes" - } - ] - }, - { - "name": "Intravenous", - "dosage": [ - { - "name": "Common", - "value": "0.4 - 2 mg" - } - ], - "duration": [ - { - "name": "Total", - "value": "30 - 60 minutes" - }, - { - "name": "Onset", - "value": "0.25 - 2 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/naphyrone", - "experiencesUrl": null, - "name": "Naphyrone", - "aliases": [], - "aliasesStr": "", - "summary": "A drug derived from pyrovalerone which acts as a TRI, producing stimulating effects. Had been sold in a blend called \"NRG-1\" Little information exists about the safety profile of this drug.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "(Tentative)", - "dosage": [ - { - "name": "Common", - "value": "20-35mg" - }, - { - "name": "Strong", - "value": "35-50mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "Within minutes" - }, - { - "name": "Duration", - "value": "6-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/naproxen", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Naproxen.shtml", - "name": "Naproxen", - "aliases": [], - "aliasesStr": "", - "summary": "A very common pain reliever/fever reducer also known as Aleve. Naproxen is in the same category as Ibuprofen, which is also a nonsteroidal anti-inflammatory. This drug is available in most places over the counter. Is sometimes used to reduce the body-load of certain drugs.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Common:", - "dosage": [ - { - "name": "Common", - "value": "250-500mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1" - }, - { - "name": "Duration", - "value": "4-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/neb", - "experiencesUrl": null, - "name": "NEB", - "aliases": [ - "n-ethylbuphedrone" - ], - "aliasesStr": "n-ethylbuphedrone", - "summary": "N-Ethylbuphedrone, an uncommon substituted cathinone. First appeared around 2011 but has not become popular. Effects should somewhat resemble other cathinones generally. Short-acting stimulating with more dopamine action than serotonin.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "30mg" - }, - { - "name": "Light", - "value": "30-50mg" - }, - { - "name": "Common", - "value": "50-80mg" - }, - { - "name": "Strong", - "value": "80-100mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-30 minutes" - }, - { - "name": "Duration", - "value": "90-180 minutes" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "10-15mg" - }, - { - "name": "Common", - "value": "15-30mg" - }, - { - "name": "Strong", - "value": "30-45mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "Duration", - "value": "90-120 minutes" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/nefiracetam", - "experiencesUrl": null, - "name": "Nefiracetam", - "aliases": [ - "nerfiracetam" - ], - "aliasesStr": "nerfiracetam", - "summary": "Nootropic compound of the racetam family. Seems to enhance both GABAergic and cholinergic signalling. Long term use appears to be neuroprotective. Fat soluble.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Common:", - "dosage": [ - { - "name": "Common", - "value": "150-450mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-60 minutes" - }, - { - "name": "Duration", - "value": "6-12 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/nicomorphine", - "experiencesUrl": null, - "name": "Nicomorphine", - "aliases": [], - "aliasesStr": "", - "summary": "Opioid agonist that is 2-3x the potency of Morphine. Is used in few countries. Rapid onset of effects, due to the increased lipid solubility.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "2.5-5mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10-20mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - }, - { - "name": "Intravenously", - "duration": [ - { - "name": "Onset", - "value": "1-2 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Nicotine", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Nicotine.shtml", - "name": "Nicotine", - "aliases": [], - "aliasesStr": "", - "summary": "A chemical found in tobacco, aubergines and tomatoes which is considered one of the most addictive drugs in existence. It is a mild stimulant, with stress relieving effects. It is widely used in the form of cigarettes, the use of which carries a high risk of causing cancer or heart issues over time. Increasingly, it is 'vaped' as a purportedly safer alternative to smoking.", - "reagents": null, - "classes": { - "chemical": [ - "Pyridine", - "Substituted pyrrolidines" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": null, - "addictionPotential": "extremely addictive with a high potential for abuse", - "tolerance": { - "full": "rapidly develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": null, - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "0.2 mg" - }, - { - "name": "Light", - "value": "0.3 - 0.8 mg" - }, - { - "name": "Common", - "value": "0.8 - 1.5 mg" - }, - { - "name": "Strong", - "value": "1.5 - 3.5 mg" - }, - { - "name": "Heavy", - "value": "3.5 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1 - 3 hours" - }, - { - "name": "Onset", - "value": "5 - 20 seconds" - }, - { - "name": "Come up", - "value": "5 - 10 seconds" - }, - { - "name": "Peak", - "value": "2 - 5 minutes" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "1 - 3 hours" - } - ] - }, - { - "name": "Buccal", - "dosage": [ - { - "name": "Threshold", - "value": "0.2 mg" - }, - { - "name": "Light", - "value": "0.5 - 2 mg" - }, - { - "name": "Common", - "value": "2 - 4 mg" - }, - { - "name": "Strong", - "value": "4 - 6 mg" - }, - { - "name": "Heavy", - "value": "6 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "45 - 90 minutes" - }, - { - "name": "Onset", - "value": "3 - 15 minutes" - }, - { - "name": "Come up", - "value": "3 - 15 minutes" - }, - { - "name": "Peak", - "value": "5 - 20 minutes" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "2 - 6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Nifoxipam", - "experiencesUrl": null, - "name": "Nifoxipam", - "aliases": [], - "aliasesStr": "", - "summary": "An uncommon and relatively new RC benzodiazepine, and metabolite of the hypnotic benzodiazepine flunitrazepam. Little information about the pharmacological properties of this drug exists. Likely to be a strong sedative and hypnotic.", - "reagents": null, - "classes": { - "chemical": [ - "Benzodiazepines" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol or opioids" - ], - "addictionPotential": "extremely physically and psychologically addictive", - "tolerance": { - "full": "within a couple of days of continuous use", - "half": null, - "zero": "7 - 14 days" - }, - "crossTolerances": [ - "benzodiazepines" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.10 mg" - }, - { - "name": "Light", - "value": "0.25 - 0.5 mg" - }, - { - "name": "Common", - "value": "0.5 - 1 mg" - }, - { - "name": "Strong", - "value": "1 - 2 mg" - }, - { - "name": "Heavy", - "value": "2 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "10 - 75 hours" - }, - { - "name": "Onset", - "value": "45 - 120 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/nimetazepam", - "experiencesUrl": null, - "name": "Nimetazepam", - "aliases": [ - "erimin" - ], - "aliasesStr": "erimin", - "summary": "A pharmaceutical benzodiazepine with hypnotic and sedative effects. Rarely seen in the West but reportedly very frequently abused in Malaysia.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "2.5-5mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10-20mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "5-8 hours" - }, - { - "name": "After effects", - "value": "12-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/nitemazepam", - "experiencesUrl": null, - "name": "Nitemazepam", - "aliases": [ - "3-hydroxynimetazepam" - ], - "aliasesStr": "3-hydroxynimetazepam", - "summary": "A new RC benzodiazepine based off the chemical structure of Nimetazepam. It is relatively new and not many experience reports exist on it. It is expected to feel similar to temazepam.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "1-1.5mg" - }, - { - "name": "Common", - "value": "1.5-3mg" - }, - { - "name": "Strong", - "value": "3-5mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "6-12 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/nitracaine", - "experiencesUrl": null, - "name": "Nitracaine", - "aliases": [], - "aliasesStr": "", - "summary": "An analogue of dimethocaine with local anaesthetic and stimulant properties, marketed in the RC scene as a Cocaine replacement. Has not seen widespread popularity.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "100-150mg" - }, - { - "name": "Strong", - "value": "150-175mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "3-5 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "20-30mg" - }, - { - "name": "Common", - "value": "30-40mg" - }, - { - "name": "Strong", - "value": "50mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/nitrazepam", - "experiencesUrl": null, - "name": "Nitrazepam", - "aliases": [ - "baronite", - "dormin", - "dreem", - "enzed", - "gentravit", - "hypnonex", - "hypnoril", - "hypnotex", - "konit", - "mogadon", - "nicare", - "nigap", - "nipam", - "nirosun", - "nitavan", - "nithra" - ], - "aliasesStr": "baronite,dormin,dreem,enzed,gentravit,hypnonex,hypnoril,hypnotex,konit,mogadon,nicare,nigap,nipam,nirosun,nitavan,nithra", - "summary": "Hypnotic Benzodiazepine, that is used for short term relief of anxiety and insomnia. It has a pronouced affect on respritory action.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "2-5mg" - }, - { - "name": "Common", - "value": "5-15mg" - }, - { - "name": "Strong", - "value": "15-20mg" - }, - { - "name": "Heavy", - "value": "20-30mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-40 minutes" - }, - { - "name": "Duration", - "value": "5-8 hours" - }, - { - "name": "After effects", - "value": "6-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/nitrazolam", - "experiencesUrl": null, - "name": "Nitrazolam", - "aliases": [], - "aliasesStr": "", - "summary": "Hypnotic benzodiazepine that is the triazolo analogue of Nitrazepam and about 4x more potent compared to the parent compound. Also the dechlorinated derivative of Clonazolam with roughly 1/10 potency.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "0.5-1mg" - }, - { - "name": "Common", - "value": "1-2mg" - }, - { - "name": "Strong", - "value": "2-3mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "5-10 hours" - }, - { - "name": "After effects", - "value": "2-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Nitrous", - "experiencesUrl": null, - "name": "N2O", - "aliases": [ - "hippy crack", - "laughing gas", - "laughing_gas", - "n20", - "n2o,", - "nitro", - "nitrous", - "nitrous oxide", - "nos" - ], - "aliasesStr": "hippy crack,laughing gas,laughing_gas,n20,n2o,,nitro,nitrous,nitrous oxide,nos", - "summary": "Nitrous oxide, also known as laughing gas, often inhaled through balloons filled with canisters of the gas.. A short-acting dissociative inhalant with strong visual, mental and auditory effects. Extremely popular especially in combination with other drugs.", - "reagents": null, - "classes": { - "chemical": null, - "psychoactive": [ - "Dissociatives" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "mildly addictive with a moderate potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [], - "roas": [ - { - "name": "Inhaled", - "dosage": null, - "duration": [ - { - "name": "Threshold", - "value": "4 g" - }, - { - "name": "Light", - "value": "4 - 8 g (1/2 - 1 cartridges)" - }, - { - "name": "Common", - "value": "8 - 16 g (1 - 2 cartridges)" - }, - { - "name": "Strong", - "value": "16 - 40 g (2 - 5 cartridges)" - }, - { - "name": "Heavy", - "value": "40 g + (>5 cartridges)" - } - ] - } - ], - "interactions": [ - { - "status": "Low Risk & Synergy", - "name": "2C-T-x" - }, - { - "status": "Low Risk & Synergy", - "name": "2C-x" - }, - { - "status": "Low Risk & Synergy", - "name": "5-MeO-xxT" - }, - { - "status": "Caution", - "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely.", - "name": "Alcohol" - }, - { - "status": "Low Risk & Synergy", - "name": "Amphetamines" - }, - { - "status": "Low Risk & Decrease", - "name": "Benzodiazepines" - }, - { - "status": "Low Risk & No Synergy", - "name": "Caffeine" - }, - { - "status": "Low Risk & Synergy", - "name": "Cannabis" - }, - { - "status": "Low Risk & Synergy", - "name": "Cocaine" - }, - { - "status": "Low Risk & Synergy", - "name": "DMT" - }, - { - "status": "Low Risk & Synergy", - "name": "DOx" - }, - { - "status": "Low Risk & Synergy", - "name": "DXM" - }, - { - "status": "Caution", - "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely.", - "name": "GHB/GBL" - }, - { - "status": "Low Risk & Synergy", - "name": "Ketamine" - }, - { - "status": "Low Risk & Synergy", - "name": "LSD" - }, - { - "status": "Low Risk & No Synergy", - "name": "MAOIs" - }, - { - "status": "Low Risk & Synergy", - "name": "MDMA" - }, - { - "status": "Low Risk & Synergy", - "name": "MXE" - }, - { - "status": "Low Risk & Synergy", - "name": "Mescaline" - }, - { - "status": "Low Risk & Synergy", - "name": "Mushrooms" - }, - { - "status": "Low Risk & Synergy", - "name": "NBOMes" - }, - { - "status": "Caution", - "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely.", - "name": "Opioids" - }, - { - "status": "Low Risk & Synergy", - "name": "PCP" - }, - { - "status": "Low Risk & No Synergy", - "name": "SSRIs" - }, - { - "status": "Caution", - "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely.", - "name": "Tramadol" - }, - { - "status": "Low Risk & Synergy", - "name": "aMT" - } - ] - }, - { - "url": "https://psychonautwiki.org/wiki/NM-2-AI", - "experiencesUrl": null, - "name": "NM-2-AI", - "aliases": [], - "aliasesStr": "", - "summary": "Stimulant that is in the aminoindane class. Is it quite close to it's bigger brother 2-AI. Yet this has a lower potency, has a longer duration though.", - "reagents": null, - "classes": { - "chemical": [ - "Amphetamine", - "Aminoindane" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "50 - 100 mg" - }, - { - "name": "Common", - "value": "100 - 150 mg" - }, - { - "name": "Strong", - "value": "150 - 200 mg" - }, - { - "name": "Heavy", - "value": "200 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 4 hours" - }, - { - "name": "Onset", - "value": "30 - 60 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/noctec", - "experiencesUrl": null, - "name": "Chloral hydrate", - "aliases": [ - "aquachloral", - "chloral-hydrate", - "somnos" - ], - "aliasesStr": "aquachloral,chloral-hydrate,somnos", - "summary": "Chloral Hydrate, a sedative drug discovered in 1832 with a history of recreational use going back to the 19th century. Sometimes prescribed for extreme insomnia. For such an old drug, relatively little is known about its long-term term effects on the body. Produces intoxication comparable to alcohol or benzodiazepines.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "200mg" - }, - { - "name": "Common", - "value": "200-500mg" - }, - { - "name": "Strong", - "value": "500-1000mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-60 minutes" - }, - { - "name": "Duration", - "value": "5-10 hours" - }, - { - "name": "After effects", - "value": "2-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Omberacetam", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Noopept_.shtml", - "name": "Noopept", - "aliases": [ - "gvs-111", - "omberacetam", - "\u043d\u043e\u043e\u043f\u0435\u043f\u0442" - ], - "aliasesStr": "gvs-111,omberacetam,\u043d\u043e\u043e\u043f\u0435\u043f\u0442", - "summary": "A common nootropic often attributed with temporarily increasing intelligence, concentration, focus and memory recall. Daily use can lead to dependency with withdrawals which make the user feel 'stupid.' Often taken daily in a 'stack' with other nootropics.", - "reagents": null, - "classes": { - "chemical": [ - "Peptide" - ], - "psychoactive": [ - "Nootropic" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "non-addictive with a low potential for abuse", - "tolerance": { - "full": "develops over several weeks of prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "racetam", - "nootropic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "< 5 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 20 mg" - }, - { - "name": "Strong", - "value": "20 - 40 mg" - }, - { - "name": "Heavy", - "value": "40 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 5 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Peak", - "value": "2 hours" - }, - { - "name": "Offset", - "value": "3 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "1 - 5 mg" - }, - { - "name": "Common", - "value": "5 - 10 mg" - }, - { - "name": "Strong", - "value": "10 - 20 mg" - }, - { - "name": "Heavy", - "value": "20 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 5 hours" - }, - { - "name": "Onset", - "value": "0 - 5 minutes" - }, - { - "name": "Peak", - "value": "2 hours" - }, - { - "name": "Offset", - "value": "3 hours" - } - ] - }, - { - "name": "Sublingual/Insufflated", - "dosage": [ - { - "name": "Light", - "value": "2-5mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10mg+" - } - ], - "duration": [ - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - }, - { - "name": "Sublingual", - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - }, - { - "name": "Intranasal", - "duration": [ - { - "name": "Onset", - "value": "0-5 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/nordazepam", - "experiencesUrl": null, - "name": "Nordazepam", - "aliases": [ - "desmethyldiazepam", - "nordaz", - "nordiazepam" - ], - "aliasesStr": "desmethyldiazepam,nordaz,nordiazepam", - "summary": "Has all the normal benzodiazepine effects. Such as being an anti-convulsant, muscle relaxant, sedative effects, and anxiolytic. Active metabolite of Diazepam, Chlordiazepoxide, Clorazepate, among many others, which is where most of its effects come from. Has one of the longest lasting half-lifes in the class.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "2.5-5mg" - }, - { - "name": "Common", - "value": "5-15mg" - }, - { - "name": "Strong", - "value": "15-30mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "45-120 minutes" - }, - { - "name": "Duration", - "value": "10-20 hours" - }, - { - "name": "After effects", - "value": "1-120 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/norflurazepam", - "experiencesUrl": null, - "name": "Norflurazepam", - "aliases": [ - "n-desalkylflurazepam" - ], - "aliasesStr": "n-desalkylflurazepam", - "summary": "Benzodiazepine analogue that is an active metabolite to many other benzodiazepines, such as Flurazepam, Flutoprazepam, and Midazolam.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "2-5mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10-20mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "45-120 minutes" - }, - { - "name": "Duration", - "value": "10-16 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/O-Desmethyltramadol", - "experiencesUrl": null, - "name": "O-Desmethyltramadol", - "aliases": [ - "o-dsmt", - "o-smt", - "odt" - ], - "aliasesStr": "o-dsmt,o-smt,odt", - "summary": "A opioid analgesic which is the main active metabolite of Tramadol. Alone, it is a few times more potent than Tramadol and has additional affinity for \u03b4 and \u03ba-opioid receptors. Has proven popular when sold, but these occasions have been rare due to patent rights.", - "reagents": null, - "classes": { - "chemical": [ - "Phenylpropylamine" - ], - "psychoactive": [ - "Opioids" - ] - }, - "toxicity": [ - "moderate potential toxicity relative to its dose due to its potency", - "potentially lethal when mixed with depressants like alcohol or benzodiazepines" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "opioids" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 25 mg" - }, - { - "name": "Common", - "value": "25 - 50 mg" - }, - { - "name": "Strong", - "value": "50 - 100 mg" - }, - { - "name": "Heavy", - "value": "100 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 10 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Peak", - "value": "2 - 5 hours" - }, - { - "name": "Offset", - "value": "2 - 4 hours" - }, - { - "name": "After effects", - "value": "1 - 3 hours" - } - ] - }, - { - "name": "Sublingual", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 25 mg" - }, - { - "name": "Common", - "value": "25 - 50 mg" - }, - { - "name": "Strong", - "value": "50 - 80 mg" - }, - { - "name": "Heavy", - "value": "80 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 10 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - }, - { - "name": "Peak", - "value": "2 - 5 hours" - }, - { - "name": "Offset", - "value": "2 - 4 hours" - }, - { - "name": "After effects", - "value": "1 - 3 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "20 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/O-PCE", - "experiencesUrl": null, - "name": "O-PCE", - "aliases": [ - "2'-oxo-pce", - "2-oxo-pce", - "eticyclidone", - "opce" - ], - "aliasesStr": "2'-oxo-pce,2-oxo-pce,eticyclidone,opce", - "summary": "Dissociative of the Arylcyclohexylamine class. Structurally related to Deschloroketamine.", - "reagents": null, - "classes": { - "chemical": [ - "Arylcyclohexylamines" - ], - "psychoactive": [ - "Dissociatives" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dissociative" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "3 - 5 mg" - }, - { - "name": "Common", - "value": "5 - 15 mg" - }, - { - "name": "Strong", - "value": "15 - 25 mg" - }, - { - "name": "Heavy", - "value": "25 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 6 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - }, - { - "name": "After effects", - "value": "4 - 48 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "2 mg" - }, - { - "name": "Light", - "value": "3 - 6 mg" - }, - { - "name": "Common", - "value": "6 - 12 mg" - }, - { - "name": "Strong", - "value": "12 - 20 mg" - }, - { - "name": "Heavy", - "value": "20 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 5 hours" - }, - { - "name": "Onset", - "value": "2 - 5 minutes" - }, - { - "name": "After effects", - "value": "2 - 12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/opium", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Opium.shtml", - "name": "Opium", - "aliases": [ - "o" - ], - "aliasesStr": "o", - "summary": "Opium is a naturally occurring analgesic harvested as a latex from ripe Papaver somniferum (opium poppy) pods. The sap of the poppy plant primarily contains codeine and morphine with the amounts varying by plant, which can be made into a tea and consumed raw, or further processed.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral_Tea", - "dosage": [ - { - "name": "Common", - "value": "333-500mg." - } - ], - "duration": [ - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "Smoked", - "dosage": [ - { - "name": "Common", - "value": "100mg" - } - ], - "duration": [ - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/oxazepam", - "experiencesUrl": null, - "name": "Oxazepam", - "aliases": [ - "serax" - ], - "aliasesStr": "serax", - "summary": "A prescription benzodiazepine with intermediate duration and half life. A sedative and hypnotic which may cause lowered inhibitions and amnesia in higher doses.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-30mg" - }, - { - "name": "Strong", - "value": "30-45mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "60-120 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "1-10 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/oxazolam", - "experiencesUrl": null, - "name": "Oxazolam", - "aliases": [], - "aliasesStr": "", - "summary": "A benzodiazepine derivative that is a prodrug for desmethyldiazepam.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-15mg" - }, - { - "name": "Strong", - "value": "15-30mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-90 minutes" - }, - { - "name": "Duration", - "value": "6-12 hours" - }, - { - "name": "After effects", - "value": "6-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Oxiracetam", - "experiencesUrl": null, - "name": "Oxiracetam", - "aliases": [ - "hydroxypiracetam", - "neuractiv", - "neuromet" - ], - "aliasesStr": "hydroxypiracetam,neuractiv,neuromet", - "summary": "Oxiracetam is a racetam nootropic, having a hydroxyl group being the only difference between this and Piracetam. It used as a nootropic, namely for increased cognitive function. It is usually used two to three times a day. This substance is normally taken with Choline, can cause headaches without the addition of Choline.", - "reagents": null, - "classes": { - "chemical": [ - "Racetams" - ], - "psychoactive": [ - "Stimulants", - "Nootropic" - ] - }, - "toxicity": [ - "safe even when high doses are consumed for a long period of time", - "exact toxic dosage is unknown" - ], - "addictionPotential": "non-addictive with a low potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "racetam", - "nootropic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "250 mg" - }, - { - "name": "Light", - "value": "500 - 1200 mg" - }, - { - "name": "Common", - "value": "1200 - 1800 mg" - }, - { - "name": "Strong", - "value": "1800 - 2400 mg" - }, - { - "name": "Heavy", - "value": "2400 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 10 hours" - }, - { - "name": "Onset", - "value": "30 - 90 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Oxycodone", - "experiencesUrl": null, - "name": "Oxycodone", - "aliases": [ - "codilek", - "endone", - "oxecta", - "oxy", - "oxycontin", - "oxydor", - "oxygesic", - "oxyir", - "oxynor", - "oxynorm", - "percocet", - "redocam", - "roxicodone" - ], - "aliasesStr": "codilek,endone,oxecta,oxy,oxycontin,oxydor,oxygesic,oxyir,oxynor,oxynorm,percocet,redocam,roxicodone", - "summary": "A semisynthetic opioid analgesic developed in 1917, prescribed primarily for pain management. It has become extremely popular as a recreational drug in some areas, and carries a high potential for addiction. Reported as being a little more 'stimulating' than other opioids.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted morphinans" - ], - "psychoactive": [ - "Opioids" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol or benzodiazepines" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "opioids" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "2.5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 25 mg" - }, - { - "name": "Strong", - "value": "25 - 40 mg" - }, - { - "name": "Heavy", - "value": "40 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - } - ], - "bioavailability": "60-87%" - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "2.5 - 7.5 mg" - }, - { - "name": "Common", - "value": "7.5 - 15 mg" - }, - { - "name": "Strong", - "value": "15 - 25 mg" - }, - { - "name": "Heavy", - "value": "25 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3 - 5 hours" - }, - { - "name": "Onset", - "value": "2 - 5 minutes" - } - ], - "bioavailability": "55-70%" - }, - { - "name": "Oral_IR", - "duration": [ - { - "name": "Onset", - "value": "20 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - }, - { - "name": "Oral_ER", - "duration": [ - { - "name": "Onset", - "value": "40 minutes" - }, - { - "name": "Duration", - "value": "6-8 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - }, - { - "name": "IV", - "duration": [ - { - "name": "Onset", - "value": "0-1 minutes" - }, - { - "name": "Duration", - "value": "3-5 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Oxymorphone", - "experiencesUrl": null, - "name": "Oxymorphone", - "aliases": [ - "opana", - "stopsigns" - ], - "aliasesStr": "opana,stopsigns", - "summary": "A powerful semisynthetic opioid analgesic also known as opana. A derivative of morphine it is approximately ten times as potent. Has a low oral bioavailability, and as such it is usually insufflated or taken rectally.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted morphinans" - ], - "psychoactive": [ - "Opioids" - ] - }, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": [ - "opioids" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "2.5 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 20 mg" - }, - { - "name": "Strong", - "value": "20 - 30 mg" - }, - { - "name": "Heavy", - "value": "30 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "20 - 45 minutes" - } - ], - "bioavailability": "10-20%" - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Common", - "value": "4-6mg" - }, - { - "name": "Heavy", - "value": "6-10mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-5 minutes" - }, - { - "name": "Duration", - "value": "5-8 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "Oral_IR", - "duration": [ - { - "name": "Onset", - "value": "20-40 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "Oral_ER", - "duration": [ - { - "name": "Onset", - "value": "60-90 minutes" - }, - { - "name": "Duration", - "value": "6-14 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "Plugged", - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "4-7 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "IV", - "duration": [ - { - "name": "Onset", - "value": "0-1 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/pagoclone", - "experiencesUrl": null, - "name": "Pagoclone", - "aliases": [], - "aliasesStr": "", - "summary": "An anxiolytic drug related to zopiclone with no sedative or hypnotic qualities. Has been investigated as a possible alcohol replacement. Related in structure and effect to Zopiclone and Zolpidem.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/palfium", - "experiencesUrl": null, - "name": "Dextromoramide", - "aliases": [], - "aliasesStr": "", - "summary": "Dextromoramide, a rare and powerful opioid analgesic approximately three times as potent as morphine with a shorter duration. Generally only seen in the Netherlands. Reported as having strange and rapid tolerance behaviour.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "2.5-5mg" - }, - { - "name": "Common", - "value": "5-7.5mg" - }, - { - "name": "Strong", - "value": "7.5-10mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-15 minutes" - }, - { - "name": "Duration", - "value": "3-5 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "Intravenously", - "duration": [ - { - "name": "Onset", - "value": "1-2 minutes" - }, - { - "name": "Duration", - "value": "2-3 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/parafluorobutyrfentanyl", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_4Fluorobutyrfentanyl.shtml", - "name": "4-Fluorobutyrfentanyl", - "aliases": [ - "4-fbf", - "pfbf" - ], - "aliasesStr": "4-fbf,pfbf", - "summary": "Rare, little known and extremely potent RC analogue of Fentanyl. This powerful opioid is generally only dispensed as a nasal spray. Handle with extreme caution and never mix with other depressants.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "600-900ug" - }, - { - "name": "Strong", - "value": "900-1200ug." - } - ], - "duration": [ - { - "name": "Onset", - "value": "Insufflated minutes" - }, - { - "name": "Duration", - "value": "30-60 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/parafluorofentanyl", - "experiencesUrl": null, - "name": "Parafluorofentanyl", - "aliases": [ - "4-fluorofentanyl", - "pff" - ], - "aliasesStr": "4-fluorofentanyl,pff", - "summary": "Rare, little known and extremely potent analogue of Fentanyl developed by Janssen Pharmaceutica in the 1960s. Use with extreme caution and never mix with other depressants.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "10-25ug" - }, - { - "name": "Common", - "value": "25-40ug" - }, - { - "name": "Strong", - "value": "40-65ug+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "0-1 minutes" - }, - { - "name": "Duration", - "value": "2-3 hours" - }, - { - "name": "After effects", - "value": "1-2 hours" - } - ] - }, - { - "name": "Oral", - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "Duration", - "value": "3-4 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/PARGY-LAD", - "experiencesUrl": null, - "name": "PARGY-LAD", - "aliases": [], - "aliasesStr": "", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Lysergamides" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "5-7 days", - "zero": "14 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "50 \u00b5g" - }, - { - "name": "Light", - "value": "125 - 275 \u00b5g" - }, - { - "name": "Common", - "value": "275 - 500 \u00b5g" - }, - { - "name": "Strong", - "value": "500 - 700 \u00b5g" - }, - { - "name": "Heavy", - "value": "700 \u00b5g +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 8 hours" - }, - { - "name": "Onset", - "value": "30 - 45 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/paroxetine", - "experiencesUrl": null, - "name": "Paroxetine", - "aliases": [ - "paxil", - "seroxat" - ], - "aliasesStr": "paxil,seroxat", - "summary": null, - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/PCE", - "experiencesUrl": null, - "name": "PCE", - "aliases": [ - "eticyclidine" - ], - "aliasesStr": "eticyclidine", - "summary": "Eticyclidine (PCE) is a Dissociative anesthetic that has hallucinogenic effects. Slightly more potent than Phencyclidine.", - "reagents": null, - "classes": { - "chemical": [ - "Arylcyclohexylamines" - ], - "psychoactive": [ - "Dissociatives" - ] - }, - "toxicity": null, - "addictionPotential": "highly addictive with a high potential for adverse side effects such as psychosis", - "tolerance": { - "full": "with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dissociative" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "2 - 4 mg" - }, - { - "name": "Common", - "value": "4 - 8 mg" - }, - { - "name": "Strong", - "value": "8 - 12 mg" - }, - { - "name": "Heavy", - "value": "12 mg+", - "note": "Heavy doses may result in psychosis and mania." - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "2 - 20 minutes" - }, - { - "name": "Come up", - "value": "20 - 40 minutes" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "4 - 48 hours" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "3 - 5 mg" - }, - { - "name": "Common", - "value": "5 - 10 mg" - }, - { - "name": "Strong", - "value": "10 - 15 mg" - }, - { - "name": "Heavy", - "value": "15mg+", - "note": "Heavy doses may result in psychosis and mania." - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours" - }, - { - "name": "Onset", - "value": "30 - 90 minutes" - }, - { - "name": "Come up", - "value": "40 - 120 minutes" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "4 - 48 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "2 - 4 mg" - }, - { - "name": "Common", - "value": "4 - 8 mg" - }, - { - "name": "Strong", - "value": "8 - 15 mg" - }, - { - "name": "Heavy", - "value": "15mg+", - "note": "Heavy doses may result in psychosis and mania." - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "3 - 30 minutes" - }, - { - "name": "Come up", - "value": "30 - 90 minutes" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "4 - 48 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/PCP", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_PCP.shtml", - "name": "PCP", - "aliases": [ - "angel", - "angel dust", - "angel_dust", - "angeldust", - "dust", - "phencyclidine", - "sernyl", - "sherman", - "wet" - ], - "aliasesStr": "angel,angel dust,angel_dust,angeldust,dust,phencyclidine,sernyl,sherman,wet", - "summary": "A strong dissociative drug. PCP works primarily as an NMDA receptor antagonist. Also referred to as \"wet\" or \"angel dust\". Best known for stories of the strange and sometimes violent behaviour of those under its influence, though it is likely these are only in overdose cases.", - "reagents": null, - "classes": { - "chemical": [ - "Arylcyclohexylamines" - ], - "psychoactive": [ - "Dissociatives" - ] - }, - "toxicity": null, - "addictionPotential": "highly addictive with a high potential for adverse side effects such as psychosis", - "tolerance": { - "full": "with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dissociative|dissociatives" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "2 - 4 mg" - }, - { - "name": "Common", - "value": "4 - 8 mg" - }, - { - "name": "Strong", - "value": "8 - 12 mg" - }, - { - "name": "Heavy", - "value": "12 mg+", - "note": "Heavy doses may result in psychosis and mania." - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "2 - 20 minutes" - }, - { - "name": "Come up", - "value": "20 - 40 minutes" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "4 - 48 hours" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "3 - 5 mg" - }, - { - "name": "Common", - "value": "5 - 10 mg" - }, - { - "name": "Strong", - "value": "10 - 15 mg" - }, - { - "name": "Heavy", - "value": "15mg+", - "note": "Heavy doses may result in psychosis and mania." - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours" - }, - { - "name": "Onset", - "value": "30 - 90 minutes" - }, - { - "name": "Come up", - "value": "40 - 120 minutes" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "4 - 48 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "2 - 4 mg" - }, - { - "name": "Common", - "value": "4 - 8 mg" - }, - { - "name": "Strong", - "value": "8 - 15 mg" - }, - { - "name": "Heavy", - "value": "15mg+", - "note": "Heavy doses may result in psychosis and mania." - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "3 - 30 minutes" - }, - { - "name": "Come up", - "value": "30 - 90 minutes" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "4 - 48 hours" - } - ] - } - ], - "interactions": [ - { - "status": "Dangerous", - "name": "2C-T-x" - }, - { - "status": "Low Risk & Synergy", - "name": "2C-x" - }, - { - "status": "Dangerous", - "name": "5-MeO-xxT" - }, - { - "status": "Unsafe", - "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner.", - "name": "Alcohol" - }, - { - "status": "Unsafe", - "note": "This combination can easily lead to hypermanic states", - "name": "Amphetamines" - }, - { - "status": "Unsafe", - "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely", - "name": "Benzodiazepines" - }, - { - "status": "Caution", - "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner.", - "name": "Caffeine" - }, - { - "status": "Low Risk & Synergy", - "name": "Cannabis" - }, - { - "status": "Unsafe", - "note": "This combination can easily lead to hypermanic states", - "name": "Cocaine" - }, - { - "status": "Low Risk & Synergy", - "name": "DMT" - }, - { - "status": "Unsafe", - "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner.", - "name": "DOx" - }, - { - "status": "Dangerous", - "name": "DXM" - }, - { - "status": "Dangerous", - "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner.", - "name": "GHB/GBL" - }, - { - "status": "Low Risk & Synergy", - "name": "Ketamine" - }, - { - "status": "Low Risk & Synergy", - "name": "LSD" - }, - { - "status": "Dangerous", - "note": "This combination is very poorly explored", - "name": "MAOIs" - }, - { - "status": "Unsafe", - "note": "This combination can easily lead to hypermanic states", - "name": "MDMA" - }, - { - "status": "Caution", - "note": "There are no reports available about this combination", - "name": "MXE" - }, - { - "status": "Low Risk & Synergy", - "name": "Mescaline" - }, - { - "status": "Low Risk & Synergy", - "name": "Mushrooms" - }, - { - "status": "Low Risk & Synergy", - "name": "NBOMes" - }, - { - "status": "Low Risk & Synergy", - "name": "Nitrous" - }, - { - "status": "Caution", - "note": "PCP can reduce opioid tolerance, increasing the risk of overdose", - "name": "Opioids" - }, - { - "status": "Unsafe", - "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner.", - "name": "SSRIs" - }, - { - "status": "Dangerous", - "name": "Tramadol" - }, - { - "status": "Dangerous", - "name": "aMT" - } - ] - }, - { - "url": "https://drugs.tripsit.me/pemoline", - "experiencesUrl": null, - "name": "Pemoline", - "aliases": [], - "aliasesStr": "", - "summary": "A stimulant of the 4-oxazolidinone class. Was used as a medication for ADHD and Narcolepsy, yet was pulled from most markets due to liver failures among children.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "20-40mg" - }, - { - "name": "Strong", - "value": "40-80mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/pentazocine", - "experiencesUrl": null, - "name": "Pentazocine", - "aliases": [ - "talwin" - ], - "aliasesStr": "talwin", - "summary": "A synthetic opioid used as an analgesic. It is only used IM and IV in the medical field and has respiratory depressant effects. It is pregnancy category C and schedule IV in the US.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "IM", - "dosage": [ - { - "name": "Light", - "value": "10-20mg" - }, - { - "name": "Common", - "value": "20mg-30mg" - }, - { - "name": "Strong", - "value": "30-60mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-20 minutes" - }, - { - "name": "Duration", - "value": "2-3 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "IV", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-20mg" - }, - { - "name": "Strong", - "value": "30mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "2-3 minutes" - }, - { - "name": "Duration", - "value": "2-3 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Pentedrone", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Pentedrone.shtml", - "name": "Pentedrone", - "aliases": [ - "drone" - ], - "aliasesStr": "drone", - "summary": "A potent NDRI cathinone-type stimulant with more-ish effects but not thought to be especially enjoyable.", - "reagents": null, - "classes": { - "chemical": [ - "Khat#1#" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "2 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 15 mg" - }, - { - "name": "Strong", - "value": "15 - 25 mg" - }, - { - "name": "Heavy", - "value": "25 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 6 hours" - }, - { - "name": "Onset", - "value": "15 - 30 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "1 - 10 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "2 - 5 mg" - }, - { - "name": "Common", - "value": "5 - 10 mg" - }, - { - "name": "Strong", - "value": "10 - 20 mg" - }, - { - "name": "Heavy", - "value": "20 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1 - 4 hours" - }, - { - "name": "Onset", - "value": "5 - 10 minutes" - }, - { - "name": "Peak", - "value": "30 - 90 minutes" - }, - { - "name": "Offset", - "value": "30 - 90 minutes" - }, - { - "name": "After effects", - "value": "1 - 8 hours" - } - ] - }, - { - "name": "Rectal", - "dosage": [ - { - "name": "Light", - "value": "2-5mg" - }, - { - "name": "Common", - "value": "5-10mg" - } - ], - "duration": [ - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Pentobarbital", - "experiencesUrl": null, - "name": "Pentobarbital", - "aliases": [ - "nembutal", - "novopentobarb", - "pentobarbitone" - ], - "aliasesStr": "nembutal,novopentobarb,pentobarbitone", - "summary": "A CNS depressant drug that is of the barbituate class. Typically not used often as it is easier to OD on than benzodiazepines, the new alternative to barbituates. Used often for insomnia, to cause sedation.", - "reagents": null, - "classes": { - "chemical": [ - "Barbiturates" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "moderate toxicity", - "potentially lethal when mixed with depressants like alcohol or opioids" - ], - "addictionPotential": "extremely physically and psychologically addictive", - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "25 mg" - }, - { - "name": "Light", - "value": "50 - 100 mg" - }, - { - "name": "Common", - "value": "100 - 200 mg" - }, - { - "name": "Strong", - "value": "200 - 300 mg" - }, - { - "name": "Heavy", - "value": "300 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "15 - 60 minutes" - }, - { - "name": "Peak", - "value": "1 - 3 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "1 - 36 hours" - } - ] - }, - { - "name": "IM", - "dosage": [ - { - "name": "Light", - "value": "100-150mg" - }, - { - "name": "Common", - "value": "150-200mg" - }, - { - "name": "Heavy", - "value": "200mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-25 minutes" - }, - { - "name": "Duration", - "value": "3-4 hours" - }, - { - "name": "After effects", - "value": "1-36 hours" - } - ] - }, - { - "name": "IV", - "dosage": [ - { - "name": "Light", - "value": "50-60mg" - }, - { - "name": "Common", - "value": "60-100mg" - }, - { - "name": "Heavy", - "value": "100mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1 minutes" - }, - { - "name": "Duration", - "value": "15-20 hours" - }, - { - "name": "After effects", - "value": "1-36 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/pentylone", - "experiencesUrl": null, - "name": "Pentylone", - "aliases": [ - "4-meppp", - "bk-mbdp", - "bk-methyl-k" - ], - "aliasesStr": "4-meppp,bk-mbdp,bk-methyl-k", - "summary": "A stimulant, empathogen and substituted cathinone. It was first synthesised in the 1960s, and re-appeared on the research chemical scene in 2010. Still, very little is known about the pharmacology or effects of this compound.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "10-20mg" - }, - { - "name": "Common", - "value": "20-40mg" - }, - { - "name": "Strong", - "value": "40-80mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-40 minutes" - }, - { - "name": "Duration", - "value": "3-4 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "10 minutes" - }, - { - "name": "Duration", - "value": "3-4 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/peyote", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Peyote.shtml", - "name": "Peyote", - "aliases": [], - "aliasesStr": "", - "summary": "Peyote is a small, spineless cactus that contains mescaline as its primary active chemical. It has a long history of use among the natives of northern Mexico and SW United States.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Fresh", - "dosage": [ - { - "name": "Light", - "value": "50-100g" - }, - { - "name": "Common", - "value": "100-150g" - }, - { - "name": "Heavy", - "value": "200g+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "60-120 minutes" - }, - { - "name": "Duration", - "value": "4-8" - }, - { - "name": "After effects", - "value": "6-8 hours" - } - ] - }, - { - "name": "Dried", - "dosage": [ - { - "name": "Light", - "value": "10-20g" - }, - { - "name": "Common", - "value": "20-30g" - }, - { - "name": "Strong", - "value": "30-40g" - }, - { - "name": "Heavy", - "value": "40g+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "60-120 minutes" - }, - { - "name": "Duration", - "value": "4-8" - }, - { - "name": "After effects", - "value": "6-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/pfbt", - "experiencesUrl": null, - "name": "PFBT", - "aliases": [ - "4-fluorotropacocaine" - ], - "aliasesStr": "4-fluorotropacocaine", - "summary": "Tropane derivative substance that supposedly has around ~30% the potency of Cocaine as a stimulant. While also having properties of a local anasthetic.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "10-20mg" - }, - { - "name": "Light", - "value": "20-50mg" - }, - { - "name": "Common", - "value": "50-70mg" - }, - { - "name": "Strong", - "value": "70-110mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-10 minutes" - }, - { - "name": "Duration", - "value": "1-2 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/phenazepam", - "experiencesUrl": null, - "name": "Phenazepam", - "aliases": [], - "aliasesStr": "", - "summary": "A very long acting, potent and subtle benzodiazepine. Infamous for the calamitous experiences it tends to produce in people dosing unknown amounts. Prescribed in certain countries for epilepsy and alcohol withdrawal.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "0.5-1mg" - }, - { - "name": "Common", - "value": "1-2mg" - }, - { - "name": "Heavy", - "value": "2-4mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-60 minutes" - }, - { - "name": "Duration", - "value": "18+ hours" - }, - { - "name": "After effects", - "value": "36+ hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/phenethylamine", - "experiencesUrl": null, - "name": "Phenethylamine", - "aliases": [ - "pea" - ], - "aliasesStr": "pea", - "summary": "Organic compound, which is a name of a class of chemicals that are quite well known for psychoactive and/or stimulant effects. Normally not used as a supplement as it is rapidly broken down into inactive compounds. Is found in many foods.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "300-500mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "1-4 hours" - }, - { - "name": "After effects", - "value": "10-60 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/phenetrazine", - "experiencesUrl": null, - "name": "Phenetrazine", - "aliases": [], - "aliasesStr": "", - "summary": "A rare phenethylamine stimulant related to 3-FPM. Virtually nothing is known about the pharmacology or effects of this compound but it is likely to have similar properties to other stimulants of its type. Not to be confused with phenmetrazine.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5-10mg" - }, - { - "name": "Light", - "value": "10-25mg" - }, - { - "name": "Common", - "value": "25-50mg" - }, - { - "name": "Strong", - "value": "50-70mg." - }, - { - "name": "Heavy", - "value": "70mg+" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "10-20mg" - }, - { - "name": "Common", - "value": "20-35mg" - }, - { - "name": "Strong", - "value": "35-50mg" - }, - { - "name": "Heavy", - "value": "50mg+" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Phenibut", - "experiencesUrl": null, - "name": "Phenibut", - "aliases": [ - "fenibut", - "phenybut", - "phgaba" - ], - "aliasesStr": "fenibut,phenybut,phgaba", - "summary": "A derivative of GABA with the addition of a phenyl ring which allows it to cross the Blood Brain Barrier. Is mostly used as an anti-anxiety and anti-insomnia medication. Tolerance and physical dependency builds very quickly.", - "reagents": null, - "classes": { - "chemical": [ - "Gabapentinoids" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol, benzodiazepines or opioids" - ], - "addictionPotential": "moderately physically and psychologically addictive", - "tolerance": { - "full": "within a couple of days of continuous use", - "half": null, - "zero": "7 - 14 days" - }, - "crossTolerances": [ - "GABA" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.25 g" - }, - { - "name": "Light", - "value": "0.5 - 1 g" - }, - { - "name": "Common", - "value": "1 - 2 g" - }, - { - "name": "Strong", - "value": "2 - 3.5 g" - }, - { - "name": "Heavy", - "value": "3.5 g +" - } - ], - "duration": [ - { - "name": "Total", - "value": "10 - 16 hours" - }, - { - "name": "Onset", - "value": "1.5 - 3 hours" - }, - { - "name": "Come up", - "value": "1.5 - 3 hours" - }, - { - "name": "Peak", - "value": "3 - 4 hours" - }, - { - "name": "Offset", - "value": "4 - 6 hours" - }, - { - "name": "After effects", - "value": "6 - 24 hours" - } - ] - }, - { - "name": "Light:", - "dosage": [ - { - "name": "Light", - "value": "300-600mg" - }, - { - "name": "Common", - "value": "600-1200mg" - }, - { - "name": "Strong", - "value": "1200-1800mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-120" - }, - { - "name": "Duration", - "value": "9-16 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/phenmetrazine", - "experiencesUrl": null, - "name": "Phenmetrazine", - "aliases": [ - "preludin" - ], - "aliasesStr": "preludin", - "summary": "Stimulant drug that was previously used as an appetite suppresant, has been withdrawn from the market, due to concerns of abuse and addiction. Usually produces less nervousness, euphoria, and insomnia than drugs of the amphetamine family. Also as a study concluded, it is slightly more effective than dextroamphetamine as a weight loss agent.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "25-50mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Phenobarbital", - "experiencesUrl": null, - "name": "Phenobarbital", - "aliases": [ - "luminal", - "pheno", - "phenobarb", - "phenobarbitone" - ], - "aliasesStr": "luminal,pheno,phenobarb,phenobarbitone", - "summary": "CNS depressant that is used mostly for insomnia (In older patients) and epliepsy (in younger patients) And it a very strong narcotic, that can be taken most ways. It's used less as \"safer\" alternatives have been made (Benzodiazepines).", - "reagents": null, - "classes": { - "chemical": [ - "Barbiturates" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "moderate toxicity", - "potentially lethal when mixed with depressants like alcohol or opioids" - ], - "addictionPotential": "extremely physically and psychologically addictive", - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "25 mg" - }, - { - "name": "Light", - "value": "50 - 100 mg" - }, - { - "name": "Common", - "value": "100 - 150 mg" - }, - { - "name": "Strong", - "value": "150 - 300 mg" - }, - { - "name": "Heavy", - "value": "300 mg +" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15 - 60 minutes" - }, - { - "name": "Peak", - "value": "4 - 6 hours" - }, - { - "name": "After effects", - "value": "1 - 48 hours" - } - ] - }, - { - "name": "Intravenous", - "duration": [ - { - "name": "Onset", - "value": "1-5 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/phentermine", - "experiencesUrl": null, - "name": "Phentermine", - "aliases": [], - "aliasesStr": "", - "summary": "Psychostimulant of the substituted amphetamine class. Used in medicine as an appetite suppressant.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "20-40mg" - }, - { - "name": "Strong", - "value": "40-70mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "1-10 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/picamilon", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Picamilon.shtml", - "name": "Picamilon", - "aliases": [], - "aliasesStr": "", - "summary": "An analogue of GABA that does pass the brain blood barrier, which is then hydrolyzed into GABA and Niacin. In which the GABA could produce an anxiolytic effect. The Niacin as a vasodilator. And is usually used as part of a nootropic stack.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "40-80mg" - }, - { - "name": "Common", - "value": "80-140mg" - }, - { - "name": "Strong", - "value": "140-250mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-45 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/pinazepam", - "experiencesUrl": null, - "name": "Pinazepam", - "aliases": [ - "domar" - ], - "aliasesStr": "domar", - "summary": "Benzodiazepine that is solely an anxiolytic drug that lacks the hypnotic and motor impairment that most benzodiazepines do. The main metabolite of this is Nordazepam and to a lesser effect Oxazepam, which is where it gets most of its effects", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "2.5-5mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10-20mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-90 minutes" - }, - { - "name": "Duration", - "value": "6-16 hours" - }, - { - "name": "After effects", - "value": "2-10 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/pipt", - "experiencesUrl": null, - "name": "PiPT", - "aliases": [], - "aliasesStr": "", - "summary": "A rare psychedelic tryptamine related to DPT. Little is known about the effects or safety profile of this compound.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Vapourized", - "dosage": [ - { - "name": "Threshold", - "value": "10mg" - }, - { - "name": "Light", - "value": "15mg" - }, - { - "name": "Common", - "value": "15-20mg" - }, - { - "name": "Heavy", - "value": "20mg+" - } - ], - "duration": [ - { - "name": "After effects", - "value": "1-4 hours" - } - ] - }, - { - "name": "Vaped", - "duration": [ - { - "name": "Onset", - "value": "5 minutes" - }, - { - "name": "Duration", - "value": "2 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - }, - { - "name": "Oral", - "duration": [ - { - "name": "Onset", - "value": "1 minutes" - }, - { - "name": "Duration", - "value": "3-4 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Piracetam", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Piracetam.shtml", - "name": "Piracetam", - "aliases": [ - "biotropil", - "breinox", - "geratam", - "lucetam", - "noostan", - "nootropil", - "oikamid" - ], - "aliasesStr": "biotropil,breinox,geratam,lucetam,noostan,nootropil,oikamid", - "summary": "A racetam nootropic claimed by many to have cognitive benefits however this has never been strongly supported in healthy individuals. Prescribed in the UK as a treatment for myoclonus. Potentially an ampakine. One of the first popular 'nootropics.'", - "reagents": null, - "classes": { - "chemical": [ - "Racetams" - ], - "psychoactive": [ - "Nootropic" - ] - }, - "toxicity": null, - "addictionPotential": "not addictive with a low potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "racetam", - "nootropic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.25 - 0.5g" - }, - { - "name": "Light", - "value": "0.5 - 2g" - }, - { - "name": "Common", - "value": "2 - 3g" - }, - { - "name": "Strong", - "value": "3 - 5g" - }, - { - "name": "Heavy", - "value": "5g +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours" - }, - { - "name": "Onset", - "value": "30 - 90 minutes" - } - ] - }, - { - "name": "Common:", - "dosage": [ - { - "name": "Common", - "value": "1200-4800mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-35 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/placdyl", - "experiencesUrl": null, - "name": "Ethchlorvynol", - "aliases": [ - "ethchlorvnol", - "placidyl" - ], - "aliasesStr": "ethchlorvnol,placidyl", - "summary": "Sedative Hypnotic medication made in the 50's. It was used for short term help for insomnia (No longer than two weeks)", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "100-200mg" - }, - { - "name": "Common", - "value": "200-500mg" - }, - { - "name": "Strong", - "value": "500-750mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "6-9 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/PMA", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_PMA.shtml", - "name": "PMA", - "aliases": [ - "4-ma", - "death" - ], - "aliasesStr": "4-ma,death", - "summary": "An empathogen with a slow onset and very strong serotonin release. This, combined with its lack of dopamine release, often leads users to dose more for the pleasurable effects which never come, leading to hospitalisations and deaths. Sometimes mis-sold as MDMA.", - "reagents": null, - "classes": { - "chemical": [ - "Amphetamine", - "Substituted amphetamines" - ], - "psychoactive": [ - "Hallucinogens", - "Entactogens" - ] - }, - "toxicity": [ - "can be considered extremely toxic when compared to other substances such as Methamphetamine or MDMA", - "Ingestion of PMA has been associated with severe tachycardia (abnormally high heart rate), seizures, hyperthermia, and death" - ], - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "< 10 mg" - }, - { - "name": "Light", - "value": "20 - 40 mg" - }, - { - "name": "Common", - "value": "40 - 60 mg" - }, - { - "name": "Strong", - "value": null, - "note": "Higher dosages can result in serious hyperthermia and eventually death." - } - ], - "duration": [ - { - "name": "Total", - "value": "short" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/PMMA", - "experiencesUrl": null, - "name": "PMMA", - "aliases": [ - "4-mma" - ], - "aliasesStr": "4-mma", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Amphetamine", - "Substituted amphetamines" - ], - "psychoactive": [ - "Entactogens" - ] - }, - "toxicity": [ - "can be considered extremely toxic when compared to other substances such as Methamphetamine or MDMA", - "Ingestion of PMMA has been associated with severe tachycardia (abnormally high heart rate), seizures, hyperthermia, and death" - ], - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "100 - 120 mg" - }, - { - "name": "Strong", - "value": null, - "note": "Higher dosages can result in serious hyperthermia and eventually death." - } - ], - "duration": [ - { - "name": "Total", - "value": "short" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Pramiracetam", - "experiencesUrl": null, - "name": "Pramiracetam", - "aliases": [], - "aliasesStr": "", - "summary": "A CNS stimulant that is a nootropic, that belongs to the racetam family of compounds. Much more potent than Piracetam while appearing to work on similar mechanisms.", - "reagents": null, - "classes": { - "chemical": [ - "Racetams" - ], - "psychoactive": [ - "Nootropic" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "not addictive with a low potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "racetam", - "nootropic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "100 mg" - }, - { - "name": "Light", - "value": "250 - 500 mg" - }, - { - "name": "Common", - "value": "500 - 800 mg" - }, - { - "name": "Strong", - "value": "800 - 1200 mg" - }, - { - "name": "Heavy", - "value": "1200 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 7 hours" - }, - { - "name": "Onset", - "value": "30 - 90 minutes" - } - ] - }, - { - "name": "Common:", - "dosage": [ - { - "name": "Common", - "value": "400-1200mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "1-2 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/prazepam", - "experiencesUrl": null, - "name": "Prazepam", - "aliases": [ - "centrac", - "centrax", - "demetrin", - "lysanxia", - "pozapam", - "prasepine", - "prazene", - "reapam", - "trepidan" - ], - "aliasesStr": "centrac,centrax,demetrin,lysanxia,pozapam,prasepine,prazene,reapam,trepidan", - "summary": "Benzodiazepine dervative. Has all the normal benzodiazepine-like quality (Anxiolytic/anticonvulsant/sedative/Skeletal muscle relaxant) It is also a prodrug for Desmethyldiazepam which is responsible for most if not all of the effects of Prazepam.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-20mg" - }, - { - "name": "Strong", - "value": "20-40mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "45-120 minutes" - }, - { - "name": "Duration", - "value": "8-20 hours" - }, - { - "name": "After effects", - "value": "8-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/pre-084", - "experiencesUrl": null, - "name": "PRE-084", - "aliases": [], - "aliasesStr": "", - "summary": "A sigma-1 receptor agonist derived structurally from PCP. It has cognitive enhancing effects as well as antidepressant effects, and shows promise in treating many nervous system diseases such as ALS and parkinsons.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Pregabalin", - "experiencesUrl": null, - "name": "Pregabalin", - "aliases": [ - "lyrica", - "nervalin", - "pregablin" - ], - "aliasesStr": "lyrica,nervalin,pregablin", - "summary": "Pregabalin (Lyrica) is a GABA derivative that is used to treat neuropathic pain and seizures, as well as anxiety.", - "reagents": null, - "classes": { - "chemical": [ - "Gabapentinoids" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "low toxicity" - ], - "addictionPotential": null, - "tolerance": { - "full": "within several months of continuous use", - "half": null, - "zero": "7 - 14 days" - }, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "50 mg" - }, - { - "name": "Light", - "value": "75 - 200 mg" - }, - { - "name": "Common", - "value": "200 - 450 mg" - }, - { - "name": "Strong", - "value": "450 - 600 mg" - }, - { - "name": "Heavy", - "value": "600 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 14 hours" - }, - { - "name": "Onset", - "value": "40 - 120 minutes" - }, - { - "name": "Peak", - "value": "4 - 6 hours" - }, - { - "name": "Offset", - "value": "4 - 8 hours" - }, - { - "name": "After effects", - "value": "4 - 10 hours" - } - ], - "bioavailability": "~90%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/prl-8-53", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_PRL853.shtml", - "name": "PRL-8-53", - "aliases": [ - "prl853" - ], - "aliasesStr": "prl853", - "summary": "A nootropic research chemical first synthesized in the 70s. One study shows a drastic improvement in mid-term memory among users, but otherwise it is severely lacking in information surrounding it. It has no recreational potential.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Threshold:", - "dosage": [ - { - "name": "Threshold", - "value": "2-3mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10-20mg+" - } - ], - "duration": [ - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "Oral", - "duration": [ - { - "name": "Onset", - "value": "Within minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "Sublingual", - "duration": [ - { - "name": "Onset", - "value": "Within minutes" - }, - { - "name": "Duration", - "value": "3-5 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "Intranasally", - "duration": [ - { - "name": "Onset", - "value": "Within minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/PRO-LAD", - "experiencesUrl": null, - "name": "PRO-LAD", - "aliases": [], - "aliasesStr": "", - "summary": "A very rare lysergamide that is slightly less potent than LSD, yet with a shorter duration of action.", - "reagents": null, - "classes": { - "chemical": [ - "Lysergamides" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "5-7 days", - "zero": "14 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "20 \u00b5g" - }, - { - "name": "Light", - "value": "50 - 100 \u00b5g" - }, - { - "name": "Common", - "value": "100 - 200 \u00b5g" - }, - { - "name": "Strong", - "value": "200 - 350 \u00b5g" - }, - { - "name": "Heavy", - "value": "350 \u00b5g +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 8 hours" - }, - { - "name": "Onset", - "value": "30 - 45 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Prochlorperazine", - "experiencesUrl": null, - "name": "Prochlorperazine", - "aliases": [ - "buccastem", - "compazine", - "phenotil", - "stemetil", - "stemzine" - ], - "aliasesStr": "buccastem,compazine,phenotil,stemetil,stemzine", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Phenothiazine" - ], - "psychoactive": [ - "Antipsychotic" - ] - }, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "2 mg" - }, - { - "name": "Light", - "value": "2.5 - 5 mg" - }, - { - "name": "Common", - "value": "5 - 20 mg" - }, - { - "name": "Strong", - "value": "20 - 40 mg" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours" - }, - { - "name": "Onset", - "value": "30 - 45 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Prolintane", - "experiencesUrl": null, - "name": "Prolintane", - "aliases": [ - "catovit", - "promotil", - "villescon" - ], - "aliasesStr": "catovit,promotil,villescon", - "summary": "A stimulant drug which is a dopamine reuptake inhibitor, related to MDPV and Pyrovalerone. It was first developed in the 1950s, and has seen some light usage in rave culture, though it remains relatively uncommon. Believed to have a relatively forgiving safety profile.", - "reagents": null, - "classes": { - "chemical": [ - "Amphetamine", - "Substituted pyrrolidines", - "Substituted amphetamines" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "15 - 25 mg" - }, - { - "name": "Common", - "value": "25 - 45 mg" - }, - { - "name": "Strong", - "value": "45 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Come up", - "value": "20 - 40 minutes" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "2 - 6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Promethazine", - "experiencesUrl": null, - "name": "Promethazine", - "aliases": [ - "lergigan", - "phenergan" - ], - "aliasesStr": "lergigan,phenergan", - "summary": "A first generation antihistamine, which also possesses anticholinergic, strong sedative and antipsychotic properties. Once commonly used as a treatment for psychosis, it is now more commonly seen as a component of codeine cough syrups as an anti-nausea agent.", - "reagents": null, - "classes": { - "chemical": [ - "Phenothiazine" - ], - "psychoactive": [ - "Deliriant", - "Depressant" - ] - }, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 - 12.5 mg" - }, - { - "name": "Light", - "value": "12.5 - 25 mg" - }, - { - "name": "Common", - "value": "25 - 50 mg" - }, - { - "name": "Strong", - "value": "50 - 100 mg" - }, - { - "name": "Heavy", - "value": "100 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "30 - 60 minutes" - }, - { - "name": "Come up", - "value": "20 - 60 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "3 - 5 hours" - }, - { - "name": "After effects", - "value": "12 hours" - } - ] - }, - { - "name": "Common:", - "dosage": [ - { - "name": "Common", - "value": "25-75mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "0-3 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/propofol", - "experiencesUrl": null, - "name": "Propofol", - "aliases": [ - "diprivan", - "milk-of-amnesia" - ], - "aliasesStr": "diprivan,milk-of-amnesia", - "summary": "A very short acting sedative that is usually given at the start of general anesthesia, and for maintenance of the prior. It should never be used outside of a medical setting. With that in mind, if you do plan to use this drug recreational, please have a very experienced friend with you that has the skills to insert a cannula, and monitor you very closely.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Intravenously", - "dosage": [ - { - "name": "Light", - "value": "10-30mg" - }, - { - "name": "Common", - "value": "30-60mg" - }, - { - "name": "Strong", - "value": "60-100mg" - } - ] - }, - { - "name": "Intravenous", - "duration": [ - { - "name": "Onset", - "value": "0-2 minutes" - }, - { - "name": "Duration", - "value": "10-20 minutes" - }, - { - "name": "After effects", - "value": "1-3 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/propoxyphene", - "experiencesUrl": null, - "name": "Propoxyphene", - "aliases": [], - "aliasesStr": "", - "summary": "Is an analgesic in the opioid family. It is intended for mild pain and for its antitussive effects. Has been taken off the market in Europe and the US due to concerns of fatal overdoses and heart arrhythmias.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "30-65mg" - }, - { - "name": "Common", - "value": "65-100" - }, - { - "name": "Strong", - "value": "100-200mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-30 minutes" - }, - { - "name": "Duration", - "value": "1-3 hours" - }, - { - "name": "After effects", - "value": "2-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/propranolol", - "experiencesUrl": null, - "name": "Propranolol", - "aliases": [ - "hemangeol", - "inderal", - "innopran" - ], - "aliasesStr": "hemangeol,inderal,innopran", - "summary": "Is a nonselective beta blocker. It is used in medication for high blood pressure, anxiety, and tremors. Also fun fact, it was the first successful beta-blocker developed.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "10-30mg" - }, - { - "name": "Common", - "value": "40-80mg" - }, - { - "name": "Strong", - "value": "80-140mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-45 minutes" - }, - { - "name": "Duration", - "value": "3-7 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Propylhexedrine", - "experiencesUrl": null, - "name": "Propylhexedrine", - "aliases": [ - "benzedrex", - "hexahdromethamphetamine", - "propylhexadrine" - ], - "aliasesStr": "benzedrex,hexahdromethamphetamine,propylhexadrine", - "summary": "A relatively common CNS stimulant sold over the counter in benzedrex inhalers.", - "reagents": null, - "classes": { - "chemical": [ - "Cycloalkylamines" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": null, - "addictionPotential": null, - "tolerance": { - "full": "rapidly develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "dopamine", - "stimulant" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "10 mg" - }, - { - "name": "Light", - "value": "31.25 - 62.5 mg" - }, - { - "name": "Common", - "value": "62.5 - 125 mg" - }, - { - "name": "Strong", - "value": "125 - 187.5 mg" - }, - { - "name": "Heavy", - "value": "187.5 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 10 hours" - }, - { - "name": "Onset", - "value": "10 - 30 minutes" - }, - { - "name": "Come up", - "value": "15 - 90 minutes" - }, - { - "name": "Peak", - "value": "2 - 5 hours" - }, - { - "name": "Offset", - "value": "1 - 3 hours" - }, - { - "name": "After effects", - "value": "2 - 12 hours" - } - ] - }, - { - "name": "Oral(Pure)", - "dosage": [ - { - "name": "Light", - "value": "10-20mg" - }, - { - "name": "Common", - "value": "20-50mg" - }, - { - "name": "Strong", - "value": "50mg+" - } - ], - "duration": [ - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "1-16 hours" - } - ] - }, - { - "name": "Insufflated(Pure)", - "dosage": [ - { - "name": "Light", - "value": "5-15mg" - }, - { - "name": "Common", - "value": "15-30mg" - }, - { - "name": "Strong", - "value": "30-50mg+" - } - ], - "duration": [ - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "1-16 hours" - } - ] - }, - { - "name": "Oral(Benzedrex)", - "dosage": [ - { - "name": "Light", - "value": "20-60mg" - }, - { - "name": "Common", - "value": "60-125mg" - }, - { - "name": "Strong", - "value": "125-250mg" - }, - { - "name": "Heavy", - "value": "250mg+" - } - ], - "duration": [ - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "1-16 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "10-30mg" - }, - { - "name": "Common", - "value": "30-75mg" - }, - { - "name": "Strong", - "value": "75-100mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "Duration", - "value": "4-8 hours" - }, - { - "name": "After effects", - "value": "1-16 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/propylphenidate", - "experiencesUrl": null, - "name": "Propylphenidate", - "aliases": [ - "pph" - ], - "aliasesStr": "pph", - "summary": "Propylphenidate is a short acting stimulant.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "15-25mg" - }, - { - "name": "Common", - "value": "25-60mg" - }, - { - "name": "Strong", - "value": "60-100mg" - }, - { - "name": "Heavy", - "value": "100mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-25 minutes" - }, - { - "name": "Duration", - "value": "1.5-3 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Proscaline", - "experiencesUrl": null, - "name": "Proscaline", - "aliases": [], - "aliasesStr": "", - "summary": "A very uncommon psychedelic stimulant and phenethylamine and analogue on mescaline with similar effects. Roughly 5-7 times more potent than mescaline by weight.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted phenethylamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "no negative health effects attributed to trying this drug" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "10 mg" - }, - { - "name": "Light", - "value": "15 - 30 mg" - }, - { - "name": "Common", - "value": "30 - 40 mg" - }, - { - "name": "Strong", - "value": "40 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 12 hours" - }, - { - "name": "Onset", - "value": "30 - 60 minutes" - }, - { - "name": "After effects", - "value": "3 - 5 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/pseudoephedrine", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Pseudoephedrine.shtml", - "name": "Pseudoephrine", - "aliases": [], - "aliasesStr": "", - "summary": "Widely sold as a decongestant, and one isomer of Ephedrine. It is not generally considered to have any recreational value. Is also used in the synthesis of Methcathinone and Methamphetamine.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "30-60mg." - }, - { - "name": "Common", - "value": "60-90mg." - }, - { - "name": "Strong", - "value": "90-120mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-90 minutes" - }, - { - "name": "Duration", - "value": "2-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Psilocin", - "experiencesUrl": null, - "name": "Psilocin", - "aliases": [ - "4-ho-dmt", - "4-oh-dmt", - "psilocine", - "psilocyn", - "psilotsin" - ], - "aliasesStr": "4-ho-dmt,4-oh-dmt,psilocine,psilocyn,psilotsin", - "summary": "Psilocin is a substutued tryptamine alkaloid, that is present in most psychedelic mushrooms. It is relatively unstable in solution due to the -OH group.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted tryptamines" - ], - "psychoactive": [ - "Psychedelics" - ] - }, - "toxicity": [ - "extremely low toxicity" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 15 mg" - }, - { - "name": "Common", - "value": "15 - 25 mg" - }, - { - "name": "Strong", - "value": "25 - 40 mg" - }, - { - "name": "Heavy", - "value": "40 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 6 hours" - }, - { - "name": "Onset", - "value": "20 - 45 minutes" - }, - { - "name": "Come up", - "value": "1.5 - 3 hours" - }, - { - "name": "Peak", - "value": "2 - 3 hours" - }, - { - "name": "Offset", - "value": "1.5 - 2 hours" - }, - { - "name": "After effects", - "value": "4 - 24 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "2.5-5mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10-15mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "3-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/pst", - "experiencesUrl": null, - "name": "PST", - "aliases": [ - "poppy-seed-tea", - "poppy-tea" - ], - "aliasesStr": "poppy-seed-tea,poppy-tea", - "summary": "Poppy Tea can be made from poppy pods, stalks and seeds, and contains various opium alkaloids including primarily Morphine, as well as Codeine and others. There is great variation in Poppy Tea potency and therefor doses are indicated for opioid naive users.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "duration": [ - { - "name": "Duration", - "value": "8-24 hours" - }, - { - "name": "After effects", - "value": "1-30 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/pv-10", - "experiencesUrl": null, - "name": "PV-10", - "aliases": [], - "aliasesStr": "", - "summary": "Inactive.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/pv-8", - "experiencesUrl": null, - "name": "PV-8", - "aliases": [ - "a-phpp" - ], - "aliasesStr": "a-phpp", - "summary": "Stimulant of the pyrrolidinophenone class that is a higher homologue of \u03b1-PHP and generally less potent and less effective.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "10-20mg" - }, - { - "name": "Common", - "value": "20-40mg" - }, - { - "name": "Strong", - "value": "40-60mg" - }, - { - "name": "Heavy", - "value": "60+mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "6-12 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "Duration", - "value": "2-5 hours" - }, - { - "name": "After effects", - "value": "4-8 hours" - } - ] - }, - { - "name": "Vapourized", - "duration": [ - { - "name": "Onset", - "value": "1-2 minutes" - }, - { - "name": "Duration", - "value": "0.5-1.5 hours" - }, - { - "name": "After effects", - "value": "2-5 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/pv-9", - "experiencesUrl": null, - "name": "PV-9", - "aliases": [], - "aliasesStr": "", - "summary": "Inactive.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Pyrazolam", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Pyrazolam.shtml", - "name": "Pyrazolam", - "aliases": [], - "aliasesStr": "", - "summary": "RC benzodiazepine discovered by Hoffman-LaRoche in the 1970s. Came to the RC market in the early 2010s. At lower doses it is mainly an anxiolytic compound, yet at higher doses can be quite sedating, hypnotic, amnesic, and can cause loss of inhibitions. Structurally similar to Alprazolam, Bromazepam, and Triazolam. Is 12x as potent as Diazepam.", - "reagents": null, - "classes": { - "chemical": [ - "Benzodiazepines" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol or opioids" - ], - "addictionPotential": "extremely physically and psychologically addictive", - "tolerance": { - "full": "within a couple of days of continuous use", - "half": null, - "zero": "7 - 14 days" - }, - "crossTolerances": [ - "benzodiazepines" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.5 mg" - }, - { - "name": "Light", - "value": "1 - 2 mg" - }, - { - "name": "Common", - "value": "2 - 3 mg" - }, - { - "name": "Strong", - "value": "3 - 4 mg" - }, - { - "name": "Heavy", - "value": "4 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "5 - 8 hours" - }, - { - "name": "Onset", - "value": "10 - 15 minutes" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "5 minutes" - }, - { - "name": "Duration", - "value": "3-5 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/pyrophenidone", - "experiencesUrl": null, - "name": "Pyrophenidone", - "aliases": [], - "aliasesStr": "", - "summary": "An NDRI pyrovalerone derivative reported to have very similar subjective effects. Virtually no information exists about this drug's effects in humans.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Vaporized", - "dosage": [ - { - "name": "Light", - "value": "5-10mg" - }, - { - "name": "Common", - "value": "10-25mg" - }, - { - "name": "Strong", - "value": "25-50mg" - }, - { - "name": "Heavy", - "value": "50mg+." - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-30 minutes" - }, - { - "name": "Duration", - "value": "1-1.5 hours" - }, - { - "name": "After effects", - "value": "1-3 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "20-40mg" - }, - { - "name": "Common", - "value": "40-60mg" - }, - { - "name": "Strong", - "value": "60-90mg" - }, - { - "name": "Heavy", - "value": "90mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-15 minutes" - }, - { - "name": "Duration", - "value": "1-3 hours" - }, - { - "name": "After effects", - "value": "1-3 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/quazepam", - "experiencesUrl": null, - "name": "Quazepam", - "aliases": [ - "doral" - ], - "aliasesStr": "doral", - "summary": "Benzodiazepine derivate drug, noral is prescribed for short term treatment of insomnia, and sleep maintenance. its MOA is very similar to Ambien and Sonata and substitutes for those in animal studies.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "7.5-10mg" - }, - { - "name": "Common", - "value": "10-15mg." - }, - { - "name": "Strong", - "value": "15-30mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "6-12 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ], - "bioavailability": "29-35%" - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Quetiapine", - "experiencesUrl": null, - "name": "Quetiapine", - "aliases": [ - "seroquel" - ], - "aliasesStr": "seroquel", - "summary": "An atypical antipsychotic medication under the brand name Seroquel. Also used to treat insomnia and mood swings. This drug is very sedating and can stop/slow down psychedelic drug trips. Infrequently abused.", - "reagents": null, - "classes": { - "chemical": [ - "Dibenzothiazepine" - ], - "psychoactive": [ - "Antipsychotic" - ] - }, - "toxicity": [ - "low toxicity" - ], - "addictionPotential": "moderately physically and psychologically addictive", - "tolerance": { - "full": "within a week of continuous use", - "half": null, - "zero": "7 - 14 days" - }, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "10 mg" - }, - { - "name": "Light", - "value": "25 - 50 mg" - }, - { - "name": "Common", - "value": "50 - 150 mg" - }, - { - "name": "Strong", - "value": "150 - 300 mg" - }, - { - "name": "Heavy", - "value": "300 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "4 - 8 hours" - }, - { - "name": "Onset", - "value": "20 - 40 minutes" - }, - { - "name": "Peak", - "value": "1.5 - 6 hours" - }, - { - "name": "Offset", - "value": "6 - 7 hours" - }, - { - "name": "After effects", - "value": "24 - 48 hours" - } - ], - "bioavailability": "100% - 100%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/rilmazafone", - "experiencesUrl": null, - "name": "Rilmazafone", - "aliases": [ - "rhythmy" - ], - "aliasesStr": "rhythmy", - "summary": "Unique to Japan, this drug, also known as Rhythmy, is a benzodiazepine pro-drug which while inactive itself, is metabolised into the active compound in-vivo. Soluble in water.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": ".5-1mg" - }, - { - "name": "Common", - "value": "1-2mg" - }, - { - "name": "Strong", - "value": "2-4mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-60 minutes" - }, - { - "name": "Duration", - "value": "6-8 hours" - }, - { - "name": "After effects", - "value": "6-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Risperidone", - "experiencesUrl": null, - "name": "Risperidone", - "aliases": [ - "risperdal" - ], - "aliasesStr": "risperdal", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Benzisoxazole" - ], - "psychoactive": [ - "Antipsychotic" - ] - }, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "0.25 mg" - }, - { - "name": "Light", - "value": "0.5 - 1 mg" - }, - { - "name": "Common", - "value": "1 - 3 mg" - }, - { - "name": "Strong", - "value": "3 - 6 mg" - }, - { - "name": "Heavy", - "value": "6 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "12 - 20 hours" - }, - { - "name": "Onset", - "value": "20 - 60 minutes" - }, - { - "name": "Peak", - "value": "2 - 8 hours" - }, - { - "name": "Offset", - "value": "2 - 4 hours" - }, - { - "name": "After effects", - "value": "12 - 24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/rolicyclidine", - "experiencesUrl": null, - "name": "Rolicyclidine", - "aliases": [ - "pcpy" - ], - "aliasesStr": "pcpy", - "summary": "Rolicyclidine, also known as PCPy, is a dissociative with effects similar to PCP. While this dissociative anesthetic has hallucinogenic and sedative effects, it is said to be much less stimulating than PCP. In this sense it is more similar to opioids, or other central nervous system depressants.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "2-4mg" - }, - { - "name": "Common", - "value": "4-8mg" - }, - { - "name": "Strong", - "value": "8mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-60 minutes" - }, - { - "name": "Duration", - "value": "2-6 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - }, - { - "name": "Nasal", - "duration": [ - { - "name": "Onset", - "value": "30 minutes" - }, - { - "name": "Duration", - "value": "2-6 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/ronlax", - "experiencesUrl": null, - "name": "Ronlax", - "aliases": [ - "ethyl-loflazepate", - "meilax", - "victan" - ], - "aliasesStr": "ethyl-loflazepate,meilax,victan", - "summary": "A benzodiazepine derivative that posses the standard benzodiazepine effects. It has a very long half life (51-103 hours) it metabolizes into an active compound. (Descarboxyloflazepate) Is sold in Mexico.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "0.5-1mg" - }, - { - "name": "Common", - "value": "1-2mg" - }, - { - "name": "Strong", - "value": "2-4mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "45-90 minutes" - }, - { - "name": "Duration", - "value": "8-16 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Salvinorin_A", - "experiencesUrl": null, - "name": "Salvia", - "aliases": [ - "diviner's sage", - "sally", - "salvia divinorum", - "salvinorin a", - "seer's sage", - "ska mar\u00eda pastora" - ], - "aliasesStr": "diviner's sage,sally,salvia divinorum,salvinorin a,seer's sage,ska mar\u00eda pastora", - "summary": "A plant which, when smoked, causes short but very intense psychedelic experiences. It is considered physically safe, though users of high dosages often experience bizarre other-worldly scenarios which may be confusing or terrifying.", - "reagents": null, - "classes": { - "chemical": [ - "Terpenoid", - "Salvinorin" - ], - "psychoactive": [ - "Hallucinogens" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": null, - "crossTolerances": [ - "hallucinogen" - ], - "roas": [ - { - "name": "Smoked", - "dosage": null, - "duration": [ - { - "name": "Total", - "value": "15 - 90 minutes" - }, - { - "name": "Onset", - "value": "15 - 60 seconds" - }, - { - "name": "After effects", - "value": "15 - 60 minutes" - } - ] - }, - { - "name": "Sublingual", - "dosage": null, - "duration": [ - { - "name": "Total", - "value": "30 - 90 minutes" - }, - { - "name": "Onset", - "value": "10 - 20 minutes" - }, - { - "name": "After effects", - "value": "30 - 120 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/SAM-e", - "experiencesUrl": null, - "name": "SAM-e", - "aliases": [ - "methylguanidoacetic acid", - "s-adenosyl methionine" - ], - "aliasesStr": "methylguanidoacetic acid,s-adenosyl methionine", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Nitrogenous organic acid" - ], - "psychoactive": [ - "Nootropic" - ] - }, - "toxicity": null, - "addictionPotential": "not habit-forming with a low potential for abuse", - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "200 mg" - }, - { - "name": "Light", - "value": "400 - 800 mg" - }, - { - "name": "Common", - "value": "800 - 1200 mg" - }, - { - "name": "Strong", - "value": "1200 - 1600 mg" - }, - { - "name": "Heavy", - "value": "1600 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 12 hours" - }, - { - "name": "Onset", - "value": "100 - 180 minutes" - } - ], - "bioavailability": "2-10%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/scopolamine", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Scopolamine.shtml", - "name": "Scopolamine", - "aliases": [], - "aliasesStr": "", - "summary": "The main active compound in datura, medium and high doses have serious side effects and cause extremely unpleasant deleriant hallucinations. Avoid it.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Secobarbital", - "experiencesUrl": null, - "name": "Secobarbital", - "aliases": [ - "secobarbitone", - "seconal" - ], - "aliasesStr": "secobarbitone,seconal", - "summary": "A Barbiturate derivative that possesses all the classic effects of todays Benzodiazepines, and the old Barbiturates. It's used in the treatment of Epilepsy, short term treatment for insomnia, and a preoperative medication for anaesthesia and anxiolysis for short surgical/diagnostic/therapeutic procedures.", - "reagents": null, - "classes": { - "chemical": [ - "Barbiturates" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "moderate toxicity" - ], - "addictionPotential": "extremely physically and psychologically addictive", - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "20 mg" - }, - { - "name": "Light", - "value": "25 - 50 mg" - }, - { - "name": "Common", - "value": "50 - 150 mg" - }, - { - "name": "Strong", - "value": "150 - 300 mg" - }, - { - "name": "Heavy", - "value": "300 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 10 hours" - }, - { - "name": "Onset", - "value": "15 - 60 minutes" - }, - { - "name": "Peak", - "value": "4 - 8 hours" - }, - { - "name": "Offset", - "value": "2 - 4 hours" - }, - { - "name": "After effects", - "value": "1 - 24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/sertraline", - "experiencesUrl": null, - "name": "Sertraline", - "aliases": [ - "lustral", - "zoloft" - ], - "aliasesStr": "lustral,zoloft", - "summary": null, - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/sinicuichi", - "experiencesUrl": null, - "name": "Sinicuichi", - "aliases": [ - "heimia-salicifolia", - "shrubby-yellowcrest", - "sini", - "sun-opener", - "willow-leaf-heimia" - ], - "aliasesStr": "heimia-salicifolia,shrubby-yellowcrest,sini,sun-opener,willow-leaf-heimia", - "summary": "A perennial shrub with small narrow leaves and yellow flowers growing up to ~1.5 meters. Known under many different names. Has been used for Shamanic purposes by natives in Central America and Mexico. Mostly auditory based.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/sonata", - "experiencesUrl": null, - "name": "Sonata", - "aliases": [ - "zaleplon" - ], - "aliasesStr": "zaleplon", - "summary": "Sedative-Hypnotic of the nonbenzodiazepine from the Pyrazolopyramide class. It is used mostly for short term insomnia.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "2.5-5mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10-20mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/STS-135", - "experiencesUrl": null, - "name": "STS-135", - "aliases": [], - "aliasesStr": "", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Adamantanes", - "Indolecarboxamide" - ], - "psychoactive": [ - "Cannabinoid" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "cannabinoids" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "< 0.5 mg" - }, - { - "name": "Light", - "value": "0.5 - 1.5 mg" - }, - { - "name": "Common", - "value": "1.5 - 2 mg" - }, - { - "name": "Strong", - "value": "2 - 4 mg" - }, - { - "name": "Heavy", - "value": "4 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "30 - 60 minutes" - }, - { - "name": "Onset", - "value": "10 - 45 seconds" - }, - { - "name": "Come up", - "value": "10 - 45 minutes" - }, - { - "name": "Peak", - "value": "10 - 30 minutes" - }, - { - "name": "Offset", - "value": "5 - 10 minutes" - }, - { - "name": "After effects", - "value": "15 - 45 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/sufentanil", - "experiencesUrl": null, - "name": "Sufentanil", - "aliases": [], - "aliasesStr": "", - "summary": "An synthetic analgesic drug that is roughly between 5-10x the potency of it's parent drug, (Fentanyl); It's use is very contained to surgery and post-operative pain.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "1-5ug" - }, - { - "name": "Common", - "value": "5-10ug" - }, - { - "name": "Strong", - "value": "10-25ug." - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-2 minutes" - }, - { - "name": "Duration", - "value": "5-10 minutes" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/sulbutiamine", - "experiencesUrl": null, - "name": "Sulbutiamine", - "aliases": [ - "arcalion", - "bisibuthiamine", - "enerion", - "sulbut", - "youvitan" - ], - "aliasesStr": "arcalion,bisibuthiamine,enerion,sulbut,youvitan", - "summary": "A thiamine derivative nootropic and stimulant drug. Caution should be used as sulbutiamine reduces dopamine output over time with consistant usage.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "200-400mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-40 minutes" - }, - { - "name": "Duration", - "value": "6-10 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Tapentadol", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_Tapentadol.shtml", - "name": "Tapentadol", - "aliases": [ - "nucynta", - "palexia", - "yantil", - "yantil sr" - ], - "aliasesStr": "nucynta,palexia,yantil,yantil sr", - "summary": "An opioid analgesic drug with potency somewhere between tramadol and morphine, and with a similar action to Tramadol. Also an adrenergic reuptake inhibitor. High addiction potential. Potential for respiratory depression in overdose. Should not be combined with depressants or stimulants.", - "reagents": null, - "classes": { - "chemical": [ - "Phenylpropylamine" - ], - "psychoactive": [ - "Opioids" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol or benzodiazepines" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "opioids" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "12.5 mg" - }, - { - "name": "Light", - "value": "25 - 50 mg" - }, - { - "name": "Common", - "value": "50 - 75 mg" - }, - { - "name": "Strong", - "value": "75 - 150 mg" - }, - { - "name": "Heavy", - "value": "150 mg +" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15 - 45 minutes" - }, - { - "name": "Peak", - "value": "4 - 6 hours" - }, - { - "name": "After effects", - "value": "1 - 6 hours" - } - ] - }, - { - "name": "Oral_IR", - "duration": [ - { - "name": "Onset", - "value": "20-40 minutes" - }, - { - "name": "Duration", - "value": "3-5 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - }, - { - "name": "Oral_ER", - "duration": [ - { - "name": "Onset", - "value": "60-120 minutes" - }, - { - "name": "Duration", - "value": "5-8 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Temazepam", - "experiencesUrl": null, - "name": "Temazepam", - "aliases": [ - "normison", - "restoril" - ], - "aliasesStr": "normison,restoril", - "summary": "Temazepam's brand name is Restoril. It is a hypnotic benzodiazepine with effects similar to clonazepam, frequently prescribed as a sleep aid. Some users report mild euphoria alongside the hypnotic effects.", - "reagents": null, - "classes": { - "chemical": [ - "Benzodiazepines" - ], - "psychoactive": [ - "Depressant" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol or opioids" - ], - "addictionPotential": "extremely physically and psychologically addictive", - "tolerance": { - "full": "within a couple of days of continuous use", - "half": null, - "zero": "7-14 days" - }, - "crossTolerances": [ - "benzodiazepines" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "5 - 10 mg" - }, - { - "name": "Common", - "value": "10 - 25 mg" - }, - { - "name": "Strong", - "value": "25 - 40 mg" - }, - { - "name": "Heavy", - "value": "40 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 10 hours" - }, - { - "name": "Onset", - "value": "20 - 90 minutes" - }, - { - "name": "After effects", - "value": "6 - 12 hour" - } - ], - "bioavailability": "96%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/tetrahydrofuran-fentanyl", - "experiencesUrl": null, - "name": "TETRAHYDROFURAN-FENTANYL", - "aliases": [ - "thf-f", - "thff" - ], - "aliasesStr": "thf-f,thff", - "summary": "An analogue of fentanyl that is unknown in literature. Is most likely less potent than most other analogues. Yet very few reports are around. Be careful.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/tetrazepam", - "experiencesUrl": null, - "name": "Tetrazepam", - "aliases": [], - "aliasesStr": "", - "summary": "A benzodiazepine that has most of the properties of more common benzodiazepines. Yet was taken off the market in 2013. Has been noted to be more euphoric than most others.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "25-50mg" - }, - { - "name": "Common", - "value": "50-100mg" - }, - { - "name": "Strong", - "value": "100-200mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-35 minutes" - }, - { - "name": "Duration", - "value": "6-10 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/th-pvp", - "experiencesUrl": null, - "name": "TH-PVP", - "aliases": [], - "aliasesStr": "", - "summary": "A pyrovalerone stimulant related to a-PVP and naphyrone. Very little information about effects or safety profile, virtually no evidence of human use.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "20-30mg" - }, - { - "name": "Common", - "value": "30-50mg" - }, - { - "name": "Strong", - "value": "50-70mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-30 minutes" - }, - { - "name": "Duration", - "value": "3-5 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "10-15mg" - }, - { - "name": "Common", - "value": "15-25mg" - }, - { - "name": "Strong", - "value": "25-35mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-15 minutes" - }, - { - "name": "Duration", - "value": "2-3 hours" - } - ] - }, - { - "name": "Vapourized", - "dosage": [ - { - "name": "Light", - "value": "10-15mg" - }, - { - "name": "Common", - "value": "15-25mg" - }, - { - "name": "Strong", - "value": "25-35mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-2 minutes" - }, - { - "name": "Duration", - "value": "1 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Theacrine", - "experiencesUrl": null, - "name": "Theacrine", - "aliases": [ - "temorine", - "temurin" - ], - "aliasesStr": "temorine,temurin", - "summary": "Small alkaloid which can be seen as a structurally modified version of caffeine, with similar stimulating effects. It also shares anti-inflammatory and analgesic effects with caffeine.", - "reagents": null, - "classes": { - "chemical": [ - "Xanthines", - "Purine alkaloid" - ], - "psychoactive": [ - "Stimulants", - "Nootropic" - ] - }, - "toxicity": null, - "addictionPotential": "produces dependence with chronic use and has a low abuse potential", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "25 mg" - }, - { - "name": "Light", - "value": "50 - 100 mg" - }, - { - "name": "Common", - "value": "100 - 150 mg" - }, - { - "name": "Strong", - "value": "150 - 300 mg" - }, - { - "name": "Heavy", - "value": "300 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 10 hours" - }, - { - "name": "Onset", - "value": "30 - 60 minutes" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "25 mg" - }, - { - "name": "Common", - "value": "25 - 100 mg" - } - ], - "duration": [ - { - "name": "Total", - "value": "1 - 3 hours" - }, - { - "name": "Onset", - "value": "5 - 30 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/theobromine", - "experiencesUrl": null, - "name": "Theobromine", - "aliases": [], - "aliasesStr": "", - "summary": "Theobromine is the principal bitter alkaloid of the cacao bean. It has been used in various pharmaceutical products as vasodilator, diuretic and as heart stimulant. Theobromine is consumed in cocoa, chocolate and in various forms of chocolate-based foods. It is also present in small amounts in green coffee beans, tea, mate and the kola nut.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "100-200mg" - }, - { - "name": "Common", - "value": "200-300mg" - }, - { - "name": "Strong", - "value": "300-600mg" - }, - { - "name": "Heavy", - "value": "600mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "2-3 hours" - } - ] - }, - { - "name": "onset", - "duration": [ - { - "name": "Duration", - "value": "30-40 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/thiopental", - "experiencesUrl": null, - "name": "Thiopental", - "aliases": [], - "aliasesStr": "", - "summary": "Barbiturate that kicks in very quickly, that is used to Anesthesia, Medical induced comas among other things.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Intravenous", - "duration": [ - { - "name": "Onset", - "value": "0-2 minutes" - }, - { - "name": "Duration", - "value": "6-10 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/thiopropamine", - "experiencesUrl": null, - "name": "Thiopropamine", - "aliases": [ - "a-methyl-2-thipheneethanamine", - "normethiopropamine", - "tpa" - ], - "aliasesStr": "a-methyl-2-thipheneethanamine,normethiopropamine,tpa", - "summary": "A substance that is closely related to Methiopopramine (MPA). Is roughly about 1/3rd the potency of amphetamine, differs from amphetmine from the phenyl ring is switched with a thiophene ring.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "20-50mg" - }, - { - "name": "Common", - "value": "50-100mg" - }, - { - "name": "Strong", - "value": "100-125mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "1-4 hours" - }, - { - "name": "After effects", - "value": "1-3 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "5-15mg. minutes" - }, - { - "name": "Duration", - "value": "1-2 hours" - }, - { - "name": "After effects", - "value": "1-2 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/THJ-018", - "experiencesUrl": null, - "name": "THJ-018", - "aliases": [], - "aliasesStr": "", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Naphthoylindazole" - ], - "psychoactive": [ - "Cannabinoid" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "cannabinoids" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "< 1 mg" - }, - { - "name": "Light", - "value": "1 - 2 mg" - }, - { - "name": "Common", - "value": "2 - 3 mg" - }, - { - "name": "Strong", - "value": "3 - 5 mg" - }, - { - "name": "Heavy", - "value": "5 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 3 hours" - }, - { - "name": "Onset", - "value": "5 - 10 minutes" - }, - { - "name": "Peak", - "value": "60 - 90 minutes" - }, - { - "name": "Offset", - "value": "5 - 10 minutes" - }, - { - "name": "After effects", - "value": "60 - 90 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/THJ-2201", - "experiencesUrl": null, - "name": "THJ-2201", - "aliases": [], - "aliasesStr": "", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Naphthoylindazole" - ], - "psychoactive": [ - "Cannabinoid" - ] - }, - "toxicity": [ - "exact toxic dosage is unknown" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "cannabinoids" - ], - "roas": [ - { - "name": "Smoked", - "dosage": [ - { - "name": "Threshold", - "value": "< 0.5 mg" - }, - { - "name": "Light", - "value": "0.5 - 1 mg" - }, - { - "name": "Common", - "value": "1 - 2 mg" - }, - { - "name": "Strong", - "value": "2 - 5 mg" - }, - { - "name": "Heavy", - "value": "5 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "1 - 2 hours" - }, - { - "name": "Onset", - "value": "5 - 10 minutes" - }, - { - "name": "Peak", - "value": "30 - 45 minutes" - }, - { - "name": "Offset", - "value": "0 - 0 minutes (Abrupt)" - }, - { - "name": "After effects", - "value": "60 - 90 minutes" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Tianeptine", - "experiencesUrl": null, - "name": "Tianeptine", - "aliases": [ - "coaxil", - "stablon", - "tatinol" - ], - "aliasesStr": "coaxil,stablon,tatinol", - "summary": "A Tricyclic antidepressant, that has quite unique pharmacological properties than others in its class. Such as the possible indirect action on NMDA/AMPA and a full agonist at the \u03bc-opioid receptor. While abuse of this substance is uncommon, it has been shown in a few countries.", - "reagents": null, - "classes": { - "chemical": [ - "Dibenzothiazepine", - "Tricyclic antidepressant" - ], - "psychoactive": [ - "Nootropic", - "Opioids", - "Antidepressants" - ] - }, - "toxicity": [ - "large therapeutic index and margin of safety" - ], - "addictionPotential": "mildly addictive", - "tolerance": { - "full": "with prolonged use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "trycyclic antidepressants", - "opioids" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "3 mg" - }, - { - "name": "Light", - "value": "6 - 12 mg" - }, - { - "name": "Common", - "value": "12 - 35 mg" - }, - { - "name": "Strong", - "value": "35 - 100 mg" - }, - { - "name": "Heavy", - "value": "100 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 3 hours" - }, - { - "name": "Onset", - "value": "30 - 60 minutes" - }, - { - "name": "Come up", - "value": "15 - 30 minutes" - }, - { - "name": "Peak", - "value": "60 - 90 minutes" - }, - { - "name": "Offset", - "value": "30 - 60 minutes" - } - ], - "bioavailability": "99%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/tiletamine", - "experiencesUrl": null, - "name": "Tiletamine", - "aliases": [ - "telazol" - ], - "aliasesStr": "telazol", - "summary": "A relatively rare dissociative anesthetic, pharmacologically classified as an NMDA receptor antagonist. It is related to other anesthetics in this family such as Ketamine and phencyclidine. Has been used to cut Ketamine, in which case it may cause additional nausea. In Veterinary practice it is mixed with Zolazolam, a potent anaesthetic at a 1:1 ratio.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "10-25mg" - }, - { - "name": "Common", - "value": "25-50mg" - }, - { - "name": "Strong", - "value": "50-100mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-45 minutes" - }, - { - "name": "Duration", - "value": "6-12 hours" - }, - { - "name": "After effects", - "value": "1-72 hours" - } - ] - }, - { - "name": "Intramuscular", - "dosage": [ - { - "name": "Light", - "value": "2.5-5mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10-20mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-5 minutes" - }, - { - "name": "Duration", - "value": "1-4 hours" - }, - { - "name": "After effects", - "value": "1-72 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "2-10 minutes" - }, - { - "name": "Duration", - "value": "2-5 hours" - }, - { - "name": "After effects", - "value": "1-72 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/tilidine", - "experiencesUrl": null, - "name": "Tilidine", - "aliases": [ - "tilidate", - "tilidin", - "valoron", - "valtran" - ], - "aliasesStr": "tilidate,tilidin,valoron,valtran", - "summary": "Synthetic opioid, used mainly for treatment of moderate to severe pain. In some countries it's mixed with Naloxone to lower the abuse liability. Though in some only Tilidine. Roughly 0.2 - 1 on the potency scale to Morphine. (So 20mg's of Morphine to 100mg's Tilidine)", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Tilidine", - "dosage": [ - { - "name": "Light", - "value": "25-50mg" - }, - { - "name": "Common", - "value": "50-100mg" - }, - { - "name": "Strong", - "value": "100-200mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-20 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/TMA-2", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_TMA2.shtml", - "name": "TMA-2", - "aliases": [], - "aliasesStr": "", - "summary": "Trimethoxyamphetamine-2, a psychedelic amphetamine and stimulant first synthesised by Alexander Shulgin. An uncommon compound of similar activity to other psychedelic amphetamines. Short history of human use.", - "reagents": null, - "classes": { - "chemical": [ - "Substituted amphetamines" - ], - "psychoactive": [ - "Stimulants", - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 40 mg" - }, - { - "name": "Strong", - "value": "40 - 60 mg" - }, - { - "name": "Heavy", - "value": "60 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "8 - 12 hours" - }, - { - "name": "Onset", - "value": "20 - 120 minutes" - }, - { - "name": "Come up", - "value": "1.5 - 3 hours" - }, - { - "name": "Peak", - "value": "4 - 6 hours" - }, - { - "name": "Offset", - "value": "2 - 4 hours" - }, - { - "name": "After effects", - "value": "4 - 24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/TMA-6", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_TMA6.shtml", - "name": "TMA-6", - "aliases": [], - "aliasesStr": "", - "summary": "A rarely seen Psychedelic Amphetamine and Mescaline analogue. First synthesised by Alexander Shulgin, who descrived it as \"one of the most rewarding and pleasurable of the methoxylated amphetamines.\"", - "reagents": null, - "classes": { - "chemical": [ - "Amphetamine", - "Substituted amphetamines" - ], - "psychoactive": [ - "Stimulants", - "Psychedelics" - ] - }, - "toxicity": [ - "toxic dose is unknown" - ], - "addictionPotential": "not habit-forming", - "tolerance": { - "full": "almost immediately after ingestion", - "half": "3 days", - "zero": "7 days" - }, - "crossTolerances": [ - "psychedelic" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 35 mg" - }, - { - "name": "Strong", - "value": "35 - 50 mg" - }, - { - "name": "Heavy", - "value": "50 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "10 - 16 hours" - }, - { - "name": "Onset", - "value": "30 - 90 minutes" - }, - { - "name": "Come up", - "value": "1.5 - 3 hours" - }, - { - "name": "Peak", - "value": "5 - 8 hours" - }, - { - "name": "Offset", - "value": "3 - 5 hours" - }, - { - "name": "After effects", - "value": "6 - 18 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/tolibut", - "experiencesUrl": null, - "name": "Tolibut", - "aliases": [], - "aliasesStr": "", - "summary": "Analogue of GABA, and the 4-methyl analogue of Phenibut. Has similar effects, acts on GABA(B).", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Tramadol", - "experiencesUrl": null, - "name": "Tramadol", - "aliases": [ - "tadol", - "tram", - "tramacur", - "tramal", - "tramundin" - ], - "aliasesStr": "tadol,tram,tramacur,tramal,tramundin", - "summary": "A synthetic opioid analgesic, tramadol is used to treat moderate pain and can be considered a medium-strength opioid. Tramadol also has the unusual effect of being a serotonin releasing agent and a serotonin reuptake inhibitor, and as a consequence should not be taken in excess due to the risk of serotonin syndrome. Risk of seizures above 300mg doses.", - "reagents": null, - "classes": { - "chemical": [ - "Phenylpropylamine" - ], - "psychoactive": [ - "Opioids" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol or benzodiazepines" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "opioids" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "25 mg" - }, - { - "name": "Light", - "value": "50 - 100 mg" - }, - { - "name": "Common", - "value": "100 - 250 mg" - }, - { - "name": "Strong", - "value": "250 - 300 mg" - }, - { - "name": "Heavy", - "value": "300 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "6 - 10 hours" - }, - { - "name": "Onset", - "value": "15 - 60 minutes" - }, - { - "name": "Come up", - "value": "30 - 60 minutes" - }, - { - "name": "Peak", - "value": "2 - 6 hours" - }, - { - "name": "Offset", - "value": "2 - 4 hours" - } - ], - "bioavailability": "70 - 90%" - } - ], - "interactions": [ - { - "status": "Unsafe", - "name": "2C-T-x" - }, - { - "status": "Unsafe", - "note": "Tramadol is well known to lower seizure threshold and psychedelics raise the risk of seizures.", - "name": "2C-x" - }, - { - "status": "Unsafe", - "name": "5-MeO-xxT" - }, - { - "status": "Dangerous", - "note": "Heavy CNS depressants, risk of seizures. Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place affected patients in the recovery position to prevent vomit aspiration from excess. Memory blackouts are likely.", - "name": "Alcohol" - }, - { - "status": "Dangerous", - "note": "Tramadol and stimulants both increase the risk of seizures.", - "name": "Amphetamines" - }, - { - "status": "Dangerous", - "note": "Central nervous system- and/or respiratory-depressant effects may be additively or synergistically present. Vomit aspiration a risk when passed out, lay down in recovery position if ingested.", - "name": "Benzodiazepines" - }, - { - "status": "Low Risk & No Synergy", - "name": "Caffeine" - }, - { - "status": "Low Risk & Synergy", - "name": "Cannabis" - }, - { - "status": "Dangerous", - "note": "Tramadol and stimulants both increase the risk of seizures.", - "name": "Cocaine" - }, - { - "status": "Unsafe", - "note": "Tramadol is well known to lower seizure threshold and psychedelics also cause occasional seizures.", - "name": "DMT" - }, - { - "status": "Unsafe", - "note": "Tramadol is well known to lower seizure threshold and psychedelics also cause occasional seizures.", - "name": "DOx" - }, - { - "status": "Dangerous", - "name": "DXM" - }, - { - "status": "Dangerous", - "note": "The sedative effects of this combination can lead to dangerous respiratory depression.", - "name": "GHB/GBL" - }, - { - "status": "Dangerous", - "name": "Ketamine" - }, - { - "status": "Unsafe", - "note": "Tramadol is well known to lower seizure threshold and psychedelics also cause occasional seizures.", - "name": "LSD" - }, - { - "status": "Dangerous", - "name": "MAOIs" - }, - { - "status": "Dangerous", - "note": "Tramadol and stimulants both increase the risk of seizures.", - "name": "MDMA" - }, - { - "status": "Dangerous", - "name": "MXE" - }, - { - "status": "Unsafe", - "note": "This combination can cause seizures due to the lowering of the threshold by tramadol and the potential of mescaline to cause seziures.", - "name": "Mescaline" - }, - { - "status": "Unsafe", - "note": "Tramadol is well known to lower seizure threshold and psychedelics also cause occasional seizures.", - "name": "Mushrooms" - }, - { - "status": "Unsafe", - "note": "Tramadol is well known to lower seizure threshold and NBOMes have also shown a tendency to cause severe seizures", - "name": "NBOMes" - }, - { - "status": "Caution", - "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely.", - "name": "Nitrous" - }, - { - "status": "Dangerous", - "note": "Concomitant use of tramadol increases the seizure risk in patients taking other opioids. These agents are often individually epileptogenic and may have additive effects on seizure threshold during coadministration. Central nervous system- and/or respiratory-depressant effects may be additively or synergistically present", - "name": "Opioids" - }, - { - "status": "Dangerous", - "name": "PCP" - }, - { - "status": "Dangerous", - "name": "SSRIs" - }, - { - "status": "Dangerous", - "name": "aMT" - } - ] - }, - { - "url": "https://drugs.tripsit.me/trazodone", - "experiencesUrl": null, - "name": "Trazodone", - "aliases": [], - "aliasesStr": "", - "summary": "A novel antidepressant of the SARI class, a serotonin antagonist and reuptake inhibitor. Often used to treat depression and anxiety. It has anxiolytic and hypnotic effects.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Light:", - "dosage": [ - { - "name": "Light", - "value": "25-50mg" - }, - { - "name": "Common", - "value": "50-100mg" - }, - { - "name": "Strong", - "value": "100-150" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-40 minutes" - }, - { - "name": "Duration", - "value": "6-10 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/triazolam", - "experiencesUrl": null, - "name": "Triazolam", - "aliases": [ - "halcion" - ], - "aliasesStr": "halcion", - "summary": "An uncommon and very short acting benzodiazepine. Sedating and hypnotic, and may induce amnesia and lowered inhibitions at high doses.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "0.125-0.25mg" - }, - { - "name": "Common", - "value": "0.25-0.5mg" - }, - { - "name": "Strong", - "value": "0.5-1.5mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-20 minutes" - }, - { - "name": "Duration", - "value": "4-7 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Duration", - "value": "3-5 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/troparil", - "experiencesUrl": null, - "name": "Troparil", - "aliases": [], - "aliasesStr": "", - "summary": "A stimulant and dopamine reuptake inhibitor developed in the 1970s, it is frequently used in scientific research but has seen little usage outside of the lab. Similar effects to cocaine, though much longer and without any local anaesthetic action. Probably hard on the nose.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Common", - "value": "20-30mg" - }, - { - "name": "Strong", - "value": "30-60mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10 minutes" - }, - { - "name": "Duration", - "value": "45-70 minutes" - }, - { - "name": "After effects", - "value": "1-2 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/truffles", - "experiencesUrl": null, - "name": "Truffles", - "aliases": [], - "aliasesStr": "", - "summary": "Truffles (magic truffles, sclerotium) are the thickened root sections of magic mushrooms. Like magic mushrooms, Truffles contain the psycho-active chemicals psilocybin and psilocin. See mushrooms for more information.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Wet", - "dosage": [ - { - "name": "Light", - "value": "5g" - }, - { - "name": "Common", - "value": "10g" - }, - { - "name": "Heavy", - "value": "15g+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-60 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - } - ] - }, - { - "name": "Dry", - "dosage": [ - { - "name": "Light", - "value": "0.5-1.5g" - }, - { - "name": "Common", - "value": "1.5-4g" - }, - { - "name": "Heavy", - "value": "4g+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-60 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/tuinal", - "experiencesUrl": null, - "name": "Tuinal", - "aliases": [ - "beans", - "chirstmas-trees", - "jeebs", - "nawls", - "rainbows", - "tuinol" - ], - "aliasesStr": "beans,chirstmas-trees,jeebs,nawls,rainbows,tuinol", - "summary": "Brand name of a combination drug of two barbiturate salts (Secobarbital/Amobarbital) in equal amounts. It was introduced in the late 1940's.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "25-75mg" - }, - { - "name": "Common", - "value": "75-150mg." - }, - { - "name": "Strong", - "value": "150-300mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-45 minutes" - }, - { - "name": "Duration", - "value": "5-12 hours" - }, - { - "name": "After effects", - "value": "1-8 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Tyrosine", - "experiencesUrl": null, - "name": "Tyrosine", - "aliases": [ - "l-tyrosine or 4-hydroxyphenylalanine" - ], - "aliasesStr": "l-tyrosine or 4-hydroxyphenylalanine", - "summary": null, - "reagents": null, - "classes": { - "chemical": [ - "Amino acid", - "Substituted phenethylamines" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "toxicity": [ - "extremely low toxicity" - ], - "addictionPotential": "mildly habit forming", - "tolerance": { - "full": "after repeated and frequent usage", - "half": "7 days", - "zero": "14 days" - }, - "crossTolerances": [ - "dopamine" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "300 mg" - }, - { - "name": "Light", - "value": "500 - 1000 mg" - }, - { - "name": "Common", - "value": "1000 - 2000 mg" - }, - { - "name": "Strong", - "value": "2000 - 3000 mg" - }, - { - "name": "Heavy", - "value": "3000 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 4 hours" - }, - { - "name": "Onset", - "value": "30 - 90 minutes" - }, - { - "name": "Peak", - "value": "1 - 3 hours" - }, - { - "name": "After effects", - "value": "6 - 12 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/U-47700", - "experiencesUrl": "https://www.erowid.org/experiences/subs/exp_U47700.shtml", - "name": "U-47700", - "aliases": [ - "u47700" - ], - "aliasesStr": "u47700", - "summary": "A \u00b5-opioid receptor agonist that is related to AH-7921. Having a very short duration.", - "reagents": null, - "classes": { - "chemical": [ - "Benzamide" - ], - "psychoactive": [ - "Opioids" - ] - }, - "toxicity": [ - "high toxicity relative to its dose due to its extreme potency", - "potentially lethal when mixed with depressants like alcohol or benzodiazepines" - ], - "addictionPotential": "moderately addictive with a high potential for abuse", - "tolerance": { - "full": "develops with prolonged and repeated use", - "half": "3 - 7 days", - "zero": "1 - 2 weeks" - }, - "crossTolerances": [ - "opioids" - ], - "roas": [ - { - "name": "Insufflated", - "dosage": [ - { - "name": "Threshold", - "value": "1 mg" - }, - { - "name": "Light", - "value": "4 - 6 mg" - }, - { - "name": "Common", - "value": "6 - 8 mg" - }, - { - "name": "Strong", - "value": "8 - 10 mg" - }, - { - "name": "Heavy", - "value": "10 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "2 - 3 hours" - }, - { - "name": "Onset", - "value": "5 - 10 minutes" - }, - { - "name": "Come up", - "value": "15 - 20 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ] - }, - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "5-7.5mg" - }, - { - "name": "Common", - "value": "7.5-15mg" - }, - { - "name": "Strong", - "value": "15-25mg" - }, - { - "name": "Heavy", - "value": "25+mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "15 minutes" - }, - { - "name": "Duration", - "value": "5-7 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - }, - { - "name": "Insufflated/Plugged", - "duration": [ - { - "name": "Onset", - "value": "15 minutes" - }, - { - "name": "Duration", - "value": "3-4 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - }, - { - "name": "Intravenous", - "duration": [ - { - "name": "Onset", - "value": "0-1 minutes" - }, - { - "name": "Duration", - "value": "1-2 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/u-49900", - "experiencesUrl": null, - "name": "U-49900", - "aliases": [], - "aliasesStr": "", - "summary": "A substance that is an analogue of U-47700, yet doesn't share much with it. If you are interested in trying it, I recommend reading this. https://www.reddit.com/r/researchchemicals/comments/5gbo3e/u49900_experiment_and_warning/", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/u-51754", - "experiencesUrl": null, - "name": "U-51754", - "aliases": [ - "methene-u-47700", - "methene-u47700" - ], - "aliasesStr": "methene-u-47700,methene-u47700", - "summary": "A very potent opioid, that seems to have a fair bit of \u03ba-opioid action. So Dyshopria, Auditory hallucinations can be an effect. Is an analogue of U-47700.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Rectal", - "dosage": [ - { - "name": "Light", - "value": "1-3mg" - }, - { - "name": "Common", - "value": "3-5mg" - }, - { - "name": "Strong", - "value": "5-10mg" - } - ], - "duration": [ - { - "name": "After effects", - "value": "3-6 hours" - } - ] - }, - { - "name": "Oral", - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "3-6 hours" - } - ] - }, - { - "name": "Insufflated", - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "Duration", - "value": "1-2 hours" - }, - { - "name": "After effects", - "value": "3-6 hours" - } - ] - }, - { - "name": "Plugged", - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "Duration", - "value": "1-2 hours" - }, - { - "name": "After effects", - "value": "3-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/valerylfentanyl", - "experiencesUrl": null, - "name": "Valerylfentanyl", - "aliases": [ - "vf" - ], - "aliasesStr": "vf", - "summary": "Opioid that is a higher homologue of Butyrfentanyl with greatly reduced potency.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50+mg" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/viagra", - "experiencesUrl": null, - "name": "Sildenafil", - "aliases": [], - "aliasesStr": "", - "summary": "A medication originally developed to lower blood pressure, and now widely used to treat erectile dysfunction in men. Do not mix with anything that lowers blood pressure. Contact EMS if erection lasts longer than 4 hours.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "25-30mg" - }, - { - "name": "Common", - "value": "30-50mg" - }, - { - "name": "Strong", - "value": "50-100mg." - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-60 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/viloxazine", - "experiencesUrl": null, - "name": "Viloxazine", - "aliases": [], - "aliasesStr": "", - "summary": "NRI that was used as an antidepressant in some European countries, and had a pronouced stimulant effect similar to amphetamines without any signs of dependence. Withdrawn in the early 2000s.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "50-75mg" - }, - { - "name": "Common", - "value": "75-150mg" - }, - { - "name": "Strong", - "value": "150mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-30 minutes" - }, - { - "name": "Duration", - "value": "3-6 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/w-15", - "experiencesUrl": null, - "name": "W-15", - "aliases": [], - "aliasesStr": "", - "summary": "A potent opioid that is 5.4x more potent than Morphine. Has a distinct structure unrelated to nearly all other opioid compounds.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "2-5mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10-15mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "15-40 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "2-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/yerba-mate", - "experiencesUrl": null, - "name": "YERBA-MATE", - "aliases": [], - "aliasesStr": "", - "summary": "Is marketed for its ability to suppress appetite and burn fat. Yet only with high doses. It has a quite high ratio of caffeine. It has anti-inflammatory properties.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Common:", - "dosage": [ - { - "name": "Common", - "value": "1000-1500mg" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/yopo", - "experiencesUrl": null, - "name": "YOPO", - "aliases": [ - "\"anadenanthera", - "anadenanthera" - ], - "aliasesStr": "\"anadenanthera,anadenanthera", - "summary": "Anadenanthera peregrina, also known as yopo, is a perennial tree native to the Caribbean and South America. It is an entheogen containing 5-MeO-DMT and DMT, and is used in healing ceremonies and rituals. It is also a source of dietary calcium.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/zolazepam", - "experiencesUrl": null, - "name": "Zolazepam", - "aliases": [], - "aliasesStr": "", - "summary": "A substance that is structurally related to benzodiazepines. Is only used in Veterinary medicine. It is usually used in tandem with either the potent NMDA antagonist Tiletamine (at a 1:1 ratio) or with the \u03b12 adrenergic receptor agonist Xylazine. Is roughly around four times the potency of Diazepam. Yet is water soluable.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "2.5-5mg" - }, - { - "name": "Common", - "value": "5-10mg" - }, - { - "name": "Strong", - "value": "10-20mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "10-30 minutes" - }, - { - "name": "Duration", - "value": "4-6 hours" - }, - { - "name": "After effects", - "value": "1-6 hours" - } - ] - }, - { - "name": "Insufflated", - "dosage": [ - { - "name": "Light", - "value": "1-3mg" - }, - { - "name": "Common", - "value": "3-6mg" - }, - { - "name": "Strong", - "value": "6-12mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "5-10 minutes" - }, - { - "name": "Duration", - "value": "2-3 hours" - }, - { - "name": "After effects", - "value": "1-4 hours" - } - ] - }, - { - "name": "Intramuscular", - "dosage": [ - { - "name": "Light", - "value": "1-3mg" - }, - { - "name": "Common", - "value": "3-5mg" - }, - { - "name": "Strong", - "value": "5-10mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "1-5 minutes" - }, - { - "name": "Duration", - "value": "2-4 hours" - }, - { - "name": "After effects", - "value": "1-3 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Zolpidem", - "experiencesUrl": null, - "name": "Zolpidem", - "aliases": [ - "ambien", - "edluar", - "intermezzo", - "stilnox", - "zolpimist" - ], - "aliasesStr": "ambien,edluar,intermezzo,stilnox,zolpimist", - "summary": "Commonly prescribed for insomnia, Ambien (zolpidem) can cause realistic hallucinations similar to those of deliriants, and is very likely to cause amnesia at higher doses. Take care when using this drug, as it tends to lower inhibitions to a level which causes the user to do things they might not normally do when sober.", - "reagents": null, - "classes": { - "chemical": [ - "Imidazopyridine" - ], - "psychoactive": [ - "Hallucinogens", - "Depressant" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like alcohol or opioids" - ], - "addictionPotential": "moderately addictive", - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "5 mg" - }, - { - "name": "Light", - "value": "10 - 20 mg" - }, - { - "name": "Common", - "value": "20 - 30 mg" - }, - { - "name": "Strong", - "value": "30 - 50 mg" - }, - { - "name": "Heavy", - "value": "50 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "60 - 120 minutes" - }, - { - "name": "Onset", - "value": "5 - 30 minutes" - }, - { - "name": "Peak", - "value": "1 - 2 hours" - }, - { - "name": "Offset", - "value": "5 - 15 minutes" - }, - { - "name": "After effects", - "value": "2 - 4 hours" - } - ], - "bioavailability": "70%" - } - ], - "interactions": null - }, - { - "url": "https://psychonautwiki.org/wiki/Zopiclone", - "experiencesUrl": null, - "name": "Zopiclone", - "aliases": [ - "imovane", - "zimovane" - ], - "aliasesStr": "imovane,zimovane", - "summary": "A nonbenzodiazepine sedative sleep aid (Z-drug), which can have hallucinogenic effects if taken while awake. Often causes users to have a metallic taste in the mouth for ~12h. Has been reported in some cases to cause certain users to black out, redose excessively and undertake dangerous activities such as driving.", - "reagents": null, - "classes": { - "chemical": [ - "Cyclopyrrolone" - ], - "psychoactive": [ - "Hallucinogens", - "Depressant" - ] - }, - "toxicity": [ - "low toxicity", - "potentially lethal when mixed with depressants like benzodiazepines, alcohol or opioids" - ], - "addictionPotential": "extremely physically and psychologically addictive", - "tolerance": { - "full": "within a couple of weeks of daily use", - "half": null, - "zero": "7 - 14 days" - }, - "crossTolerances": [ - "benzodiazepines" - ], - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Threshold", - "value": "2 mg" - }, - { - "name": "Light", - "value": "3.5 - 5 mg" - }, - { - "name": "Common", - "value": "5 - 7.5 mg" - }, - { - "name": "Strong", - "value": "7.5 - 15 mg" - }, - { - "name": "Heavy", - "value": "15 mg +" - } - ], - "duration": [ - { - "name": "Total", - "value": "3.5 - 9 hours" - }, - { - "name": "Onset", - "value": "10 - 30 minutes" - }, - { - "name": "Peak", - "value": "3 - 4 hours" - } - ], - "bioavailability": "52 - 59%" - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/\u03b1-pbp", - "experiencesUrl": null, - "name": "\u03b1-PBP", - "aliases": [ - "a-pbp", - "alpha-pbp" - ], - "aliasesStr": "a-pbp,alpha-pbp", - "summary": "Stimulant that is the homologue between \u03b1-PPP and \u03b1-PVP.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "10-25mg" - }, - { - "name": "Common", - "value": "25-50mg" - }, - { - "name": "Strong", - "value": "50mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "20-35 minutes" - }, - { - "name": "Duration", - "value": "3-4 hours" - }, - { - "name": "After effects", - "value": "1-24 hours" - } - ] - } - ], - "interactions": null - }, - { - "url": "https://drugs.tripsit.me/\u03b2h-2c-b", - "experiencesUrl": null, - "name": "\u03b2H-2C-B", - "aliases": [ - "beta-hydroxy-2c-b", - "bh-2c-b", - "bh-2cb", - "boh-2c-b", - "boh-2cb", - "bohb" - ], - "aliasesStr": "beta-hydroxy-2c-b,bh-2c-b,bh-2cb,boh-2c-b,boh-2cb,bohb", - "summary": "\u03b2-Hydroxy-2C-B is a novel analogue of 2C-B that is a bit less potent and has a longer duration. It's thought to be the active metabolite of \u03b2k-2C-B.", - "reagents": null, - "classes": null, - "toxicity": null, - "addictionPotential": null, - "tolerance": null, - "crossTolerances": null, - "roas": [ - { - "name": "Oral", - "dosage": [ - { - "name": "Light", - "value": "25-40mg" - }, - { - "name": "Common", - "value": "40-60mg" - }, - { - "name": "Strong", - "value": "60-75mg" - }, - { - "name": "Heavy", - "value": "75mg+" - } - ], - "duration": [ - { - "name": "Onset", - "value": "30-50 minutes" - }, - { - "name": "Duration", - "value": "7-10 hours" - }, - { - "name": "After effects", - "value": "1-12 hours" - } - ] - } - ], - "interactions": null - } -] \ No newline at end of file diff --git a/src/global/assets/data/drug_db_psychonaut.json b/src/global/assets/data/psychonautDB.json similarity index 99% rename from src/global/assets/data/drug_db_psychonaut.json rename to src/global/assets/data/psychonautDB.json index a4b2e3e72..f7ea16745 100644 --- a/src/global/assets/data/drug_db_psychonaut.json +++ b/src/global/assets/data/psychonautDB.json @@ -1,86 +1,4 @@ [ - { - "url": "https://psychonautwiki.org/wiki/1,3-DMAA", - "name": "1,3-DMAA", - "summary": "", - "addictionPotential": null, - "toxicity": null, - "crossTolerances": null, - "commonNames": null, - "class": { - "chemical": [ - "Amine" - ], - "psychoactive": [ - "Stimulants" - ] - }, - "tolerance": null, - "uncertainInteractions": null, - "unsafeInteractions": null, - "dangerousInteractions": null, - "roa": { - "oral": { - "name": "oral", - "dose": { - "units": "mg", - "threshold": 30, - "heavy": 500, - "common": { - "min": 100, - "max": 200 - }, - "light": { - "min": 50, - "max": 100 - }, - "strong": { - "min": 200, - "max": 500 - } - }, - "duration": { - "afterglow": { - "min": 2, - "max": 10, - "units": "hours" - }, - "comeup": null, - "duration": null, - "offset": { - "min": 3, - "max": 5, - "units": "hours" - }, - "onset": { - "min": 15, - "max": 30, - "units": "minutes" - }, - "peak": { - "min": 2, - "max": 4, - "units": "hours" - }, - "total": { - "min": 6, - "max": 8, - "units": "hours" - } - }, - "bioavailability": null - }, - "sublingual": null, - "buccal": null, - "insufflated": null, - "rectal": null, - "transdermal": null, - "subcutaneous": null, - "intramuscular": null, - "intravenous": null, - "smoked": null - } - }, { "url": "https://psychonautwiki.org/wiki/1,3-dimethylbutylamine", "name": "1,3-dimethylbutylamine", @@ -16052,6 +15970,90 @@ "smoked": null } }, + { + "url": "https://psychonautwiki.org/wiki/DMXE", + "name": "DMXE", + "summary": "", + "addictionPotential": null, + "toxicity": [ + "exact toxic dosage is unknown" + ], + "crossTolerances": null, + "commonNames": null, + "class": { + "chemical": [ + "Arylcyclohexylamines" + ], + "psychoactive": [ + "Dissociatives" + ] + }, + "tolerance": null, + "uncertainInteractions": null, + "unsafeInteractions": null, + "dangerousInteractions": null, + "roa": { + "oral": null, + "sublingual": null, + "buccal": null, + "insufflated": { + "name": "insufflated", + "dose": { + "units": "mg", + "threshold": 5, + "heavy": 60, + "common": { + "min": 20, + "max": 35 + }, + "light": { + "min": 5, + "max": 20 + }, + "strong": { + "min": 35, + "max": 60 + } + }, + "duration": { + "afterglow": null, + "comeup": { + "min": 30, + "max": 90, + "units": "minutes" + }, + "duration": null, + "offset": { + "min": 1, + "max": 2, + "units": "hours" + }, + "onset": { + "min": 5, + "max": 15, + "units": "minutes" + }, + "peak": { + "min": 1, + "max": 3, + "units": "hours" + }, + "total": { + "min": 2, + "max": 6, + "units": "hours" + } + }, + "bioavailability": null + }, + "rectal": null, + "transdermal": null, + "subcutaneous": null, + "intramuscular": null, + "intravenous": null, + "smoked": null + } + }, { "url": "https://psychonautwiki.org/wiki/DOB", "name": "DOB", @@ -21253,6 +21255,96 @@ "smoked": null } }, + { + "url": "https://psychonautwiki.org/wiki/Glaucine", + "name": "Glaucine", + "summary": "", + "addictionPotential": null, + "toxicity": null, + "crossTolerances": null, + "commonNames": null, + "class": { + "chemical": [ + "Aporphine" + ], + "psychoactive": [ + "Psychedelic", + "Depressant" + ] + }, + "tolerance": null, + "uncertainInteractions": null, + "unsafeInteractions": null, + "dangerousInteractions": null, + "roa": { + "oral": { + "name": "oral", + "dose": { + "units": "mg", + "threshold": 20, + "heavy": 180, + "common": { + "min": 75, + "max": 150 + }, + "light": { + "min": 20, + "max": 75 + }, + "strong": { + "min": 150, + "max": 180 + } + }, + "duration": { + "afterglow": { + "min": 3, + "max": 8, + "units": "hours" + }, + "comeup": { + "min": 30, + "max": 60, + "units": "minutes" + }, + "duration": null, + "offset": { + "min": 1, + "max": 2, + "units": "hours" + }, + "onset": { + "min": 20, + "max": 45, + "units": "minutes" + }, + "peak": { + "min": 1, + "max": 3, + "units": "hours" + }, + "total": { + "min": 3, + "max": 6, + "units": "hours" + } + }, + "bioavailability": { + "min": 17, + "max": null + } + }, + "sublingual": null, + "buccal": null, + "insufflated": null, + "rectal": null, + "transdermal": null, + "subcutaneous": null, + "intramuscular": null, + "intravenous": null, + "smoked": null + } + }, { "url": "https://psychonautwiki.org/wiki/HXE", "name": "HXE", diff --git a/src/global/assets/data/tripsitCombos.json b/src/global/assets/data/tripsitCombos.json new file mode 100644 index 000000000..8ae285d4d --- /dev/null +++ b/src/global/assets/data/tripsitCombos.json @@ -0,0 +1,2543 @@ +{ + "2c-t-x": { + "2c-t-x": { + "status": "Self" + }, + "2c-x": { + "status": "Caution" + }, + "5-meo-xxt": { + "note": "Both classes of compounds can be unpredictable alone", + "status": "Caution" + }, + "alcohol": { + "note": "Both these classes of compound can interact unpredictably. Caution should be exercised.", + "status": "Low Risk & Decrease" + }, + "amphetamines": { + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences. In extreme cases, they can result in severe vasoconstriction, tachycardia, hypertension, and in extreme cases heart failure.", + "status": "Unsafe" + }, + "amt": { + "status": "Dangerous" + }, + "benzodiazepines": { + "status": "Low Risk & Decrease" + }, + "caffeine": { + "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.", + "status": "Low Risk & No Synergy" + }, + "cannabis": { + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", + "status": "Caution" + }, + "cocaine": { + "note": "Cocaine and 2c-t-x both provide considerable stimulation. When combined they can result in severe vasoconstriction, tachycardia, hypertension, and in extreme cases heart failure.", + "status": "Unsafe" + }, + "dmt": { + "status": "Low Risk & Synergy" + }, + "dox": { + "status": "Caution" + }, + "dxm": { + "status": "Unsafe" + }, + "ghb/gbl": { + "status": "Low Risk & Decrease" + }, + "ketamine": { + "status": "Low Risk & Synergy" + }, + "lsd": { + "status": "Low Risk & Synergy" + }, + "maois": { + "note": "MAO-B inhibitors can increase the potency and duration of phenethylamines unpredictably, which could be dangerous given the unpredictability of the 2C-T-x series", + "status": "Caution" + }, + "mdma": { + "status": "Caution" + }, + "mescaline": { + "status": "Caution" + }, + "mushrooms": { + "status": "Low Risk & Synergy" + }, + "mxe": { + "status": "Caution" + }, + "nbomes": { + "status": "Caution" + }, + "nitrous": { + "status": "Low Risk & Synergy" + }, + "opioids": { + "note": "No expected interactions, some opioids have serotonin action, and could lead to Serotonin Syndrome or a seizure. These are pretty much only to Pentazocine, Methadone, Tramadol, Tapenatdol.", + "status": "Low Risk & No Synergy" + }, + "pcp": { + "status": "Dangerous" + }, + "ssris": { + "status": "Low Risk & Decrease" + }, + "tramadol": { + "status": "Unsafe" + } + }, + "2c-x": { + "2c-t-x": { + "status": "Caution" + }, + "2c-x": { + "status": "Self" + }, + "5-meo-xxt": { + "note": "The 5-MeO psychedelics can interact unpredictably to potentiate other psychedelics", + "status": "Caution" + }, + "alcohol": { + "status": "Low Risk & Decrease" + }, + "amphetamines": { + "note": "The anxiogenic and focusing effects of stimulants increase the chance of unpleasant thought loops. The combination is generally uneccessary because of the stimulating effects of psychedelics. Combination of the stimulating effects may be uncomfortable.", + "status": "Caution" + }, + "amt": { + "status": "Dangerous" + }, + "benzodiazepines": { + "status": "Low Risk & Decrease" + }, + "caffeine": { + "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.", + "status": "Low Risk & No Synergy" + }, + "cannabis": { + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", + "status": "Caution" + }, + "cocaine": { + "note": "The anxiogenic and focusing effects of stimulants increase the chance of unpleasant thought loops. The combination is generally unnecessary because of the stimulating effects of psychedelics. Combination of the stimulating effects may be uncomfortable.", + "status": "Caution" + }, + "dmt": { + "status": "Low Risk & Synergy" + }, + "dox": { + "status": "Caution" + }, + "dxm": { + "status": "Low Risk & Synergy" + }, + "ghb/gbl": { + "status": "Low Risk & Decrease" + }, + "ketamine": { + "status": "Low Risk & Synergy" + }, + "lsd": { + "status": "Low Risk & Synergy" + }, + "maois": { + "note": "MAO-B inhibitors can increase the potency and duration of phenethylamines unpredictably", + "status": "Caution" + }, + "mdma": { + "status": "Low Risk & Synergy" + }, + "mescaline": { + "status": "Caution" + }, + "mushrooms": { + "status": "Low Risk & Synergy" + }, + "mxe": { + "status": "Low Risk & Synergy" + }, + "nbomes": { + "status": "Caution" + }, + "nitrous": { + "status": "Low Risk & Synergy" + }, + "opioids": { + "status": "Low Risk & No Synergy" + }, + "pcp": { + "status": "Low Risk & Synergy" + }, + "ssris": { + "status": "Low Risk & Decrease" + }, + "tramadol": { + "note": "Tramadol is well known to lower seizure threshold and psychedelics raise the risk of seizures.", + "status": "Unsafe" + } + }, + "5-meo-xxt": { + "2c-t-x": { + "note": "Both classes of compounds can be unpredictable alone", + "status": "Caution" + }, + "2c-x": { + "note": "The 5-MeO psychedelics can interact unpredictably to potentiate other psychedelics", + "status": "Caution" + }, + "5-meo-xxt": { + "status": "Self" + }, + "alcohol": { + "status": "Low Risk & Decrease" + }, + "amphetamines": { + "note": "The anxiogenic and focusing effects of stimulants increase the chance of unpleasant thought loops. The combination is generally unnecessary because of the stimulating effects of psychedelics. ", + "status": "Unsafe" + }, + "amt": { + "status": "Dangerous" + }, + "benzodiazepines": { + "status": "Low Risk & Decrease" + }, + "caffeine": { + "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.", + "status": "Low Risk & No Synergy" + }, + "cannabis": { + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", + "status": "Caution" + }, + "cocaine": { + "note": "The anxiogenic and focusing effects of stimulants increase the chance of unpleasant thought loops. The combination is generally unnecessary because of the stimulating effects of psychedelics. ", + "status": "Unsafe" + }, + "dmt": { + "status": "Low Risk & Synergy" + }, + "dox": { + "note": "The 5-MeO class of tryptamines can be unpredictable in their interactions, particularly increasing the risk of unpleasant physical side effects.", + "status": "Caution" + }, + "dxm": { + "note": "Little information exists about this combination.", + "status": "Unsafe" + }, + "ghb/gbl": { + "status": "Low Risk & Decrease" + }, + "ketamine": { + "status": "Low Risk & Synergy" + }, + "lsd": { + "status": "Low Risk & Synergy" + }, + "maois": { + "status": "Dangerous" + }, + "mdma": { + "note": "Some of the 5-MeO tryptamines are a bit unpredictable and should be mixed with MDMA with care", + "status": "Caution" + }, + "mescaline": { + "note": "The 5-MeO class of tryptamines can be unpredictable in their interactions", + "status": "Caution" + }, + "mushrooms": { + "status": "Low Risk & Synergy" + }, + "mxe": { + "note": "Little information exists about this combination.", + "status": "Low Risk & Synergy" + }, + "nbomes": { + "note": "The 5-MeO class of tryptamines can be unpredictable in their interactions and the NBOMes are known to be unpredictable even alone. This combination is best avoided", + "status": "Caution" + }, + "nitrous": { + "status": "Low Risk & Synergy" + }, + "opioids": { + "status": "Low Risk & No Synergy" + }, + "pcp": { + "status": "Dangerous" + }, + "ssris": { + "status": "Low Risk & Decrease" + }, + "tramadol": { + "status": "Unsafe" + } + }, + "alcohol": { + "2c-t-x": { + "note": "Both these classes of compound can interact unpredictably. Caution should be exercised.", + "status": "Low Risk & Decrease" + }, + "2c-x": { + "status": "Low Risk & Decrease" + }, + "5-meo-xxt": { + "status": "Low Risk & Decrease" + }, + "alcohol": { + "status": "Self" + }, + "amphetamines": { + "note": "Drinking on stimulants is risky because the sedative effects of the alcohol are reduced, and these are what the body uses to gauge drunkenness. This typically leads to excessive drinking with greatly reduced inhibitions, high risk of liver damage and increased dehydration. They will also allow you to drink past a point where you might normally pass out, increasing the risk. If you do decide to do this then you should set a limit of how much you will drink each hour and stick to it, bearing in mind that you will feel the alcohol and the stimulant less. Extended release formulations may severely impede sleep, further worsening the hangover.", + "status": "Caution" + }, + "amt": { + "note": "aMT has a broad mechanism of action in the brain and so does alcohol so the combination can be unpredictable", + "status": "Caution" + }, + "benzodiazepines": { + "note": "Ethanol ingestion may potentiate the CNS effects of many benzodiazepines. The two substances potentiate each other strongly and unpredictably, very rapidly leading to unconsciousness. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Blacking out and memory loss is almost certain.", + "status": "Dangerous" + }, + "caffeine": { + "status": "Low Risk & No Synergy" + }, + "cannabis": { + "note": "In excess, this combination can cause nausea.", + "status": "Low Risk & Synergy" + }, + "cocaine": { + "note": "Drinking on stimulants is risky because the sedative effects of the alcohol are reduced, and these are what the body uses to gauge drunkenness. This typically leads to excessive drinking with greatly reduced inhibitions, high risk of liver damage and increased dehydration. They will also allow you to drink past a point where you might normally pass out, increasing the risk. If you do decide to do this then you should set a limit of how much you will drink each hour and stick to it, bearing in mind that you will feel the alcohol less. Cocaine is potentiated somewhat by alcohol because of the formation of cocaethylene.", + "status": "Unsafe" + }, + "dmt": { + "status": "Low Risk & Decrease" + }, + "dox": { + "note": "Drinking on stimulants is risky because the sedative effects of the alcohol are reduced, and these are what the body uses to gauge drunkenness. This typically leads to excessive drinking with greatly reduced inhibitions, high risk of liver damage and increased dehydration. They will also allow you to drink past a point where you might normally pass out, increasing the risk.", + "status": "Low Risk & Decrease" + }, + "dxm": { + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place affected patients in the recovery position to prevent vomit aspiration from excess. Additionally CNS depression can lead to difficulty breathing. Avoid on anything higher than 1st plateau.", + "status": "Dangerous" + }, + "ghb/gbl": { + "note": "Even in very low doses this combination rapidly leads to memory loss, severe ataxia and unconsciousness. There is a high risk of vomit aspiration while unconscious.", + "status": "Dangerous" + }, + "ketamine": { + "note": "Both substances cause ataxia and bring a very high risk of vomiting and unconsciousness. If the user falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position.", + "status": "Dangerous" + }, + "lsd": { + "status": "Low Risk & Decrease" + }, + "maois": { + "note": "Tyramine found in many alcoholic beverages can have dangerous reactions with MAOIs, causing an increase in blood pressure.", + "status": "Unsafe" + }, + "mdma": { + "note": "Both MDMA and alcohol cause dehydration. Approach this combination with caution, moderation and sufficient hydration. More than a small amount of alcohol will dull the euphoria of MDMA", + "status": "Caution" + }, + "mescaline": { + "status": "Low Risk & Decrease" + }, + "mushrooms": { + "status": "Low Risk & Decrease" + }, + "mxe": { + "note": "There is a high risk of memory loss, vomiting and severe ataxia from this combination.", + "status": "Dangerous" + }, + "nbomes": { + "status": "Low Risk & Decrease" + }, + "nitrous": { + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely.", + "status": "Caution" + }, + "opioids": { + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place affected patients in the recovery position to prevent vomit aspiration from excess. Memory blackouts are likely", + "status": "Dangerous" + }, + "pcp": { + "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner.", + "status": "Unsafe" + }, + "ssris": { + "note": "Alcohol may potentiate some of the pharmacologic effects of CNS-active agents. Use in combination may result in additive central nervous system depression and/or impairment of judgment, thinking, and psychomotor skills.", + "status": "Caution" + }, + "tramadol": { + "note": "Heavy CNS depressants, risk of seizures. Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place affected patients in the recovery position to prevent vomit aspiration from excess. Memory blackouts are likely.", + "status": "Dangerous" + } + }, + "amphetamines": { + "2c-t-x": { + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences. In extreme cases, they can result in severe vasoconstriction, tachycardia, hypertension, and in extreme cases heart failure.", + "status": "Unsafe" + }, + "2c-x": { + "note": "The anxiogenic and focusing effects of stimulants increase the chance of unpleasant thought loops. The combination is generally uneccessary because of the stimulating effects of psychedelics. Combination of the stimulating effects may be uncomfortable.", + "status": "Caution" + }, + "5-meo-xxt": { + "note": "The anxiogenic and focusing effects of stimulants increase the chance of unpleasant thought loops. The combination is generally unnecessary because of the stimulating effects of psychedelics. ", + "status": "Unsafe" + }, + "alcohol": { + "note": "Drinking on stimulants is risky because the sedative effects of the alcohol are reduced, and these are what the body uses to gauge drunkenness. This typically leads to excessive drinking with greatly reduced inhibitions, high risk of liver damage and increased dehydration. They will also allow you to drink past a point where you might normally pass out, increasing the risk. If you do decide to do this then you should set a limit of how much you will drink each hour and stick to it, bearing in mind that you will feel the alcohol and the stimulant less. Extended release formulations may severely impede sleep, further worsening the hangover.", + "status": "Caution" + }, + "amphetamines": { + "status": "Self" + }, + "amt": { + "status": "Dangerous" + }, + "benzodiazepines": { + "note": "Both can dull each other's effects, so if one wears off before the other it's possible to overdose due to the lack of counteraction", + "status": "Low Risk & Decrease" + }, + "caffeine": { + "note": "This combination of stimulants is not generally necessary and may increase strain on the heart, as well as potentially causing anxiety and greater physical discomfort.", + "status": "Caution" + }, + "cannabis": { + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", + "status": "Caution" + }, + "cocaine": { + "note": "This combination of stimulants will increase strain on the heart. It is not generally worth it as cocaine has a mild blocking effect on dopamine releasers like amphetamine", + "status": "Caution" + }, + "dmt": { + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", + "status": "Caution" + }, + "dox": { + "note": "The combined stimulating effects of the two can lead to an uncomfortable body-load, while the focusing effects of amphetamine can easily lead to thought loops. Coming down from amphetamines while the DOx is still active can be quite anxiogenic. ", + "status": "Unsafe" + }, + "dxm": { + "note": "Both substances raise heart rate, in extreme cases, panic attacks caused by these drugs have led to more serious heart issues.", + "status": "Unsafe" + }, + "ghb/gbl": { + "note": "Stimulants increase respiration rate allowing a higher dose of sedatives. If the stimulant wears off first then the opiate may overcome the patient and cause respiratory arrest.", + "status": "Caution" + }, + "ketamine": { + "note": "No unexpected interactions, though likely to increase blood pressure but not an issue with sensible doses. Moving around on high doses of this combination may be ill advised due to risk of physical injury.", + "status": "Caution" + }, + "lsd": { + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", + "status": "Caution" + }, + "maois": { + "note": "MAO-B inhibitors can increase the potency and duration of phenethylamines unpredictably. MAO-A inhibitors with amphetamine can lead to hypertensive crises.", + "status": "Dangerous" + }, + "mdma": { + "note": "Amphetamines increase the neurotoxic effects of MDMA", + "status": "Low Risk & Synergy" + }, + "mescaline": { + "note": "The focus and anxiety caused by stimulants is magnified by psychedelics and results in an increased risk of thought loops", + "status": "Caution" + }, + "mushrooms": { + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", + "status": "Caution" + }, + "mxe": { + "note": "Risk of tachycardia, hypertension, and manic states", + "status": "Caution" + }, + "nbomes": { + "note": "Amphetamines and NBOMes both provide considerable stimulation. When combined they can result in tachycardia, hypertension, vasoconstriction and in extreme cases heart failure. The anxiogenic and focusing effects of stimulants are also not good in combination with psychedelics as they can lead to unpleasant thought loops. NBOMes are known to cause seizures and stimulants can increase this risk.", + "status": "Unsafe" + }, + "nitrous": { + "status": "Low Risk & Synergy" + }, + "opioids": { + "note": "Stimulants increase respiration rate allowing a higher dose of opiates. If the stimulant wears off first then the opiate may overcome the patient and cause respiratory arrest.", + "status": "Caution" + }, + "pcp": { + "note": "This combination can easily lead to hypermanic states", + "status": "Unsafe" + }, + "ssris": { + "status": "Low Risk & No Synergy" + }, + "tramadol": { + "note": "Tramadol and stimulants both increase the risk of seizures.", + "status": "Dangerous" + } + }, + "amt": { + "2c-t-x": { + "status": "Dangerous" + }, + "2c-x": { + "status": "Dangerous" + }, + "5-meo-xxt": { + "status": "Dangerous" + }, + "alcohol": { + "note": "aMT has a broad mechanism of action in the brain and so does alcohol so the combination can be unpredictable", + "status": "Caution" + }, + "amphetamines": { + "status": "Dangerous" + }, + "amt": { + "status": "Self" + }, + "benzodiazepines": { + "status": "Low Risk & Decrease" + }, + "caffeine": { + "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.", + "status": "Caution" + }, + "cannabis": { + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics. Small amounts can reduce nausea with aMT but take care.", + "status": "Caution" + }, + "cocaine": { + "status": "Dangerous" + }, + "dmt": { + "status": "Low Risk & Synergy" + }, + "dox": { + "status": "Dangerous" + }, + "dxm": { + "status": "Dangerous" + }, + "ghb/gbl": { + "status": "Low Risk & Decrease" + }, + "ketamine": { + "status": "Low Risk & Synergy" + }, + "lsd": { + "status": "Low Risk & Synergy" + }, + "maois": { + "note": "aMT is an MAOI on its own. Using enzyme inhibitors can greatly reduce predictability of effects.", + "status": "Dangerous" + }, + "mdma": { + "status": "Dangerous" + }, + "mescaline": { + "status": "Dangerous" + }, + "mushrooms": { + "status": "Low Risk & Synergy" + }, + "mxe": { + "status": "Dangerous" + }, + "nbomes": { + "status": "Dangerous" + }, + "nitrous": { + "status": "Low Risk & Synergy" + }, + "opioids": { + "note": "No unexpected interactions", + "status": "Low Risk & No Synergy" + }, + "pcp": { + "status": "Dangerous" + }, + "ssris": { + "status": "Dangerous" + }, + "tramadol": { + "status": "Dangerous" + } + }, + "benzodiazepines": { + "2c-t-x": { + "status": "Low Risk & Decrease" + }, + "2c-x": { + "status": "Low Risk & Decrease" + }, + "5-meo-xxt": { + "status": "Low Risk & Decrease" + }, + "alcohol": { + "note": "Ethanol ingestion may potentiate the CNS effects of many benzodiazepines. The two substances potentiate each other strongly and unpredictably, very rapidly leading to unconsciousness. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Blacking out and memory loss is almost certain.", + "status": "Dangerous" + }, + "amphetamines": { + "note": "Both can dull each other's effects, so if one wears off before the other it's possible to overdose due to the lack of counteraction", + "status": "Low Risk & Decrease" + }, + "amt": { + "status": "Low Risk & Decrease" + }, + "benzodiazepines": { + "status": "Self" + }, + "caffeine": { + "status": "Low Risk & Decrease" + }, + "cannabis": { + "status": "Low Risk & Decrease" + }, + "cocaine": { + "status": "Low Risk & Decrease" + }, + "dmt": { + "status": "Low Risk & Decrease" + }, + "dox": { + "status": "Low Risk & Decrease" + }, + "dxm": { + "note": "Small doses of benzos can end a bad trip, but both substances potentiate the ataxia and sedation caused by the other and this can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position.", + "status": "Caution" + }, + "ghb/gbl": { + "note": "The two substances potentiate each other strongly and unpredictably, very rapidly leading to unconsciousness. While unconscious, vomit aspiration is a risk if not placed in the recovery position.", + "status": "Dangerous" + }, + "ketamine": { + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position.", + "status": "Caution" + }, + "lsd": { + "status": "Low Risk & Decrease" + }, + "maois": { + "status": "Low Risk & Synergy" + }, + "mdma": { + "status": "Low Risk & Decrease" + }, + "mescaline": { + "status": "Low Risk & Decrease" + }, + "mushrooms": { + "status": "Low Risk & Decrease" + }, + "mxe": { + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place affected patients in the recovery position to prevent vomit aspiration from excess.", + "status": "Caution" + }, + "nbomes": { + "status": "Low Risk & Decrease" + }, + "nitrous": { + "status": "Low Risk & Decrease" + }, + "opioids": { + "note": "Central nervous system and/or respiratory-depressant effects may be additively or synergistically present. The two substances potentiate each other strongly and unpredictably, very rapidly leading to unconsciousness. While unconscious, vomit aspiration is a risk if not placed in the recovery position Blackouts/memory loss likely", + "status": "Dangerous" + }, + "pcp": { + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely", + "status": "Unsafe" + }, + "ssris": { + "status": "Low Risk & No Synergy" + }, + "tramadol": { + "note": "Central nervous system- and/or respiratory-depressant effects may be additively or synergistically present. Vomit aspiration a risk when passed out, lay down in recovery position if ingested.", + "status": "Dangerous" + } + }, + "caffeine": { + "2c-t-x": { + "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.", + "status": "Low Risk & No Synergy" + }, + "2c-x": { + "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.", + "status": "Low Risk & No Synergy" + }, + "5-meo-xxt": { + "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.", + "status": "Low Risk & No Synergy" + }, + "alcohol": { + "status": "Low Risk & No Synergy" + }, + "amphetamines": { + "note": "This combination of stimulants is not generally necessary and may increase strain on the heart, as well as potentially causing anxiety and greater physical discomfort.", + "status": "Caution" + }, + "amt": { + "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.", + "status": "Caution" + }, + "benzodiazepines": { + "status": "Low Risk & Decrease" + }, + "caffeine": { + "status": "Self" + }, + "cannabis": { + "status": "Low Risk & No Synergy" + }, + "cocaine": { + "note": "Both stimulants, risk of tachycardia, hypertension, and in extreme cases heart failure.", + "status": "Caution" + }, + "dmt": { + "status": "Low Risk & No Synergy" + }, + "dox": { + "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating it may cause some physical discomfort.", + "status": "Caution" + }, + "dxm": { + "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.", + "status": "Low Risk & No Synergy" + }, + "ghb/gbl": { + "status": "Low Risk & No Synergy" + }, + "ketamine": { + "note": "No unexpected interactions.", + "status": "Low Risk & No Synergy" + }, + "lsd": { + "status": "Low Risk & No Synergy" + }, + "maois": { + "status": "Low Risk & No Synergy" + }, + "mdma": { + "note": "Caffiene is not really necessary with MDMA and increases any neurotoxic effects from MDMA", + "status": "Caution" + }, + "mescaline": { + "note": "High doses of caffeine are uncomfortable and this will be magnified by psychedelics", + "status": "Low Risk & No Synergy" + }, + "mushrooms": { + "status": "Low Risk & No Synergy" + }, + "mxe": { + "note": "No likely interactions", + "status": "Low Risk & No Synergy" + }, + "nbomes": { + "note": "Caffiene can bring out the natural stimulation from psychedelic drugs to make it uncomfortable. High doses can cause anxiety which is hard to handle while tripping", + "status": "Caution" + }, + "nitrous": { + "status": "Low Risk & No Synergy" + }, + "opioids": { + "status": "Low Risk & No Synergy" + }, + "pcp": { + "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner.", + "status": "Caution" + }, + "ssris": { + "status": "Low Risk & No Synergy" + }, + "tramadol": { + "status": "Low Risk & No Synergy" + } + }, + "cannabis": { + "2c-t-x": { + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", + "status": "Caution" + }, + "2c-x": { + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", + "status": "Caution" + }, + "5-meo-xxt": { + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", + "status": "Caution" + }, + "alcohol": { + "note": "In excess, this combination can cause nausea.", + "status": "Low Risk & Synergy" + }, + "amphetamines": { + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", + "status": "Caution" + }, + "amt": { + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics. Small amounts can reduce nausea with aMT but take care.", + "status": "Caution" + }, + "benzodiazepines": { + "status": "Low Risk & Decrease" + }, + "caffeine": { + "status": "Low Risk & No Synergy" + }, + "cannabis": { + "status": "Self" + }, + "cocaine": { + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", + "status": "Caution" + }, + "dmt": { + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", + "status": "Caution" + }, + "dox": { + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", + "status": "Caution" + }, + "dxm": { + "status": "Low Risk & Synergy" + }, + "ghb/gbl": { + "status": "Low Risk & Synergy" + }, + "ketamine": { + "status": "Low Risk & Synergy" + }, + "lsd": { + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", + "status": "Caution" + }, + "maois": { + "status": "Low Risk & Synergy" + }, + "mdma": { + "note": "Large amounts of cannabis may cause strong and somewhat unpredictable experiences in combination with MDMA. Cannabis should be saved for towards the end of the experience if possible.", + "status": "Low Risk & Synergy" + }, + "mescaline": { + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", + "status": "Caution" + }, + "mushrooms": { + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", + "status": "Caution" + }, + "mxe": { + "status": "Low Risk & Synergy" + }, + "nbomes": { + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", + "status": "Caution" + }, + "nitrous": { + "status": "Low Risk & Synergy" + }, + "opioids": { + "status": "Low Risk & Synergy" + }, + "pcp": { + "status": "Low Risk & Synergy" + }, + "ssris": { + "status": "Low Risk & No Synergy" + }, + "tramadol": { + "status": "Low Risk & Synergy" + } + }, + "cocaine": { + "2c-t-x": { + "note": "Cocaine and 2c-t-x both provide considerable stimulation. When combined they can result in severe vasoconstriction, tachycardia, hypertension, and in extreme cases heart failure.", + "status": "Unsafe" + }, + "2c-x": { + "note": "The anxiogenic and focusing effects of stimulants increase the chance of unpleasant thought loops. The combination is generally unnecessary because of the stimulating effects of psychedelics. Combination of the stimulating effects may be uncomfortable.", + "status": "Caution" + }, + "5-meo-xxt": { + "note": "The anxiogenic and focusing effects of stimulants increase the chance of unpleasant thought loops. The combination is generally unnecessary because of the stimulating effects of psychedelics. ", + "status": "Unsafe" + }, + "alcohol": { + "note": "Drinking on stimulants is risky because the sedative effects of the alcohol are reduced, and these are what the body uses to gauge drunkenness. This typically leads to excessive drinking with greatly reduced inhibitions, high risk of liver damage and increased dehydration. They will also allow you to drink past a point where you might normally pass out, increasing the risk. If you do decide to do this then you should set a limit of how much you will drink each hour and stick to it, bearing in mind that you will feel the alcohol less. Cocaine is potentiated somewhat by alcohol because of the formation of cocaethylene.", + "status": "Unsafe" + }, + "amphetamines": { + "note": "This combination of stimulants will increase strain on the heart. It is not generally worth it as cocaine has a mild blocking effect on dopamine releasers like amphetamine", + "status": "Caution" + }, + "amt": { + "status": "Dangerous" + }, + "benzodiazepines": { + "status": "Low Risk & Decrease" + }, + "caffeine": { + "note": "Both stimulants, risk of tachycardia, hypertension, and in extreme cases heart failure.", + "status": "Caution" + }, + "cannabis": { + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", + "status": "Caution" + }, + "cocaine": { + "status": "Self" + }, + "dmt": { + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", + "status": "Caution" + }, + "dox": { + "note": "The combined stimulating effects of the two can lead to an uncomfortable body-load, while the focusing effects of cocaine can easily lead to thought loops. Coming down from cocaine while the DOx is still active can be quite anxiogenic", + "status": "Unsafe" + }, + "dxm": { + "note": "Both substances raise heart rate, in extreme cases, panic attacks caused by these drugs have led to more serious heart issues", + "status": "Unsafe" + }, + "ghb/gbl": { + "note": "Stimulants increase respiration rate allowing a higher dose of sedatives. If the stimulant wears off first then the opiate may overcome the patient and cause respiratory arrest. Likewise the G can wear off and leave a dangerous concentration of cocaine behind", + "status": "Caution" + }, + "ketamine": { + "note": "No unexpected interactions, though likely to increase blood pressure but not an issue with sensible doses. Moving around on high doses of this combination may be ill advised due to risk of physical injury.", + "status": "Caution" + }, + "lsd": { + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", + "status": "Caution" + }, + "maois": { + "note": "This combination is poorly explored", + "status": "Dangerous" + }, + "mdma": { + "note": "Cocaine blocks some of the desirable effects of MDMA while increasing the risk of heart attack.", + "status": "Caution" + }, + "mescaline": { + "note": "The focus and anxiety caused by stimulants is magnified by psychedelics and results in an increased risk of thought loops", + "status": "Caution" + }, + "mushrooms": { + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", + "status": "Caution" + }, + "mxe": { + "note": "Stimulants taken with MXE can lead to hypermanic states much more easily, especially if sleep is avoided.", + "status": "Caution" + }, + "nbomes": { + "note": "Cocaine and NBOMes both provide considerable stimulation. When combined they can result in severe vasoconstriction, tachycardia, hypertension, and in extreme cases heart failure.", + "status": "Unsafe" + }, + "nitrous": { + "status": "Low Risk & Synergy" + }, + "opioids": { + "note": "Stimulants increase respiration rate allowing a higher dose of opiates. If the stimulant wears off first then the opiate may overcome the patient and cause respiratory arrest.", + "status": "Dangerous" + }, + "pcp": { + "note": "This combination can easily lead to hypermanic states", + "status": "Unsafe" + }, + "ssris": { + "note": "May reduce each others' effectiveness. Cocaine can reduce mental stability and therefore exacerbate conditions which SSRIs are used to treat.", + "status": "Low Risk & No Synergy" + }, + "tramadol": { + "note": "Tramadol and stimulants both increase the risk of seizures.", + "status": "Dangerous" + } + }, + "dmt": { + "2c-t-x": { + "status": "Low Risk & Synergy" + }, + "2c-x": { + "status": "Low Risk & Synergy" + }, + "5-meo-xxt": { + "status": "Low Risk & Synergy" + }, + "alcohol": { + "status": "Low Risk & Decrease" + }, + "amphetamines": { + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", + "status": "Caution" + }, + "amt": { + "status": "Low Risk & Synergy" + }, + "benzodiazepines": { + "status": "Low Risk & Decrease" + }, + "caffeine": { + "status": "Low Risk & No Synergy" + }, + "cannabis": { + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", + "status": "Caution" + }, + "cocaine": { + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", + "status": "Caution" + }, + "dmt": { + "status": "Self" + }, + "dox": { + "status": "Low Risk & Synergy" + }, + "dxm": { + "status": "Low Risk & Synergy" + }, + "ghb/gbl": { + "status": "Low Risk & Decrease" + }, + "ketamine": { + "status": "Low Risk & Synergy" + }, + "lsd": { + "status": "Low Risk & Synergy" + }, + "maois": { + "status": "Low Risk & Synergy" + }, + "mdma": { + "status": "Low Risk & Synergy" + }, + "mescaline": { + "status": "Low Risk & Synergy" + }, + "mushrooms": { + "status": "Low Risk & Synergy" + }, + "mxe": { + "status": "Low Risk & Synergy" + }, + "nbomes": { + "status": "Low Risk & Synergy" + }, + "nitrous": { + "status": "Low Risk & Synergy" + }, + "opioids": { + "status": "Low Risk & No Synergy" + }, + "pcp": { + "status": "Low Risk & Synergy" + }, + "ssris": { + "status": "Low Risk & Decrease" + }, + "tramadol": { + "note": "Tramadol is well known to lower seizure threshold and psychedelics also cause occasional seizures.", + "status": "Unsafe" + } + }, + "dox": { + "2c-t-x": { + "status": "Caution" + }, + "2c-x": { + "status": "Caution" + }, + "5-meo-xxt": { + "note": "The 5-MeO class of tryptamines can be unpredictable in their interactions, particularly increasing the risk of unpleasant physical side effects.", + "status": "Caution" + }, + "alcohol": { + "note": "Drinking on stimulants is risky because the sedative effects of the alcohol are reduced, and these are what the body uses to gauge drunkenness. This typically leads to excessive drinking with greatly reduced inhibitions, high risk of liver damage and increased dehydration. They will also allow you to drink past a point where you might normally pass out, increasing the risk.", + "status": "Low Risk & Decrease" + }, + "amphetamines": { + "note": "The combined stimulating effects of the two can lead to an uncomfortable body-load, while the focusing effects of amphetamine can easily lead to thought loops. Coming down from amphetamines while the DOx is still active can be quite anxiogenic. ", + "status": "Unsafe" + }, + "amt": { + "status": "Dangerous" + }, + "benzodiazepines": { + "status": "Low Risk & Decrease" + }, + "caffeine": { + "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating it may cause some physical discomfort.", + "status": "Caution" + }, + "cannabis": { + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", + "status": "Caution" + }, + "cocaine": { + "note": "The combined stimulating effects of the two can lead to an uncomfortable body-load, while the focusing effects of cocaine can easily lead to thought loops. Coming down from cocaine while the DOx is still active can be quite anxiogenic", + "status": "Unsafe" + }, + "dmt": { + "status": "Low Risk & Synergy" + }, + "dox": { + "status": "Self" + }, + "dxm": { + "note": "The DOx class as psychedelic stimulants have the potential to mask the effects of DXM and could lead to redosing to an unsafe level. DXM can also potentiate DOx resulting in an unpleasantly intense experience.", + "status": "Unsafe" + }, + "ghb/gbl": { + "status": "Low Risk & Decrease" + }, + "ketamine": { + "note": "Ketamine and psychedelics tend to potentiate each other - go slowly.", + "status": "Low Risk & Synergy" + }, + "lsd": { + "status": "Low Risk & Synergy" + }, + "maois": { + "note": "MAO-B inhibitors can increase the potency and duration of phenethylamines unpredictably", + "status": "Caution" + }, + "mdma": { + "note": "The combined stimulating effects of the two can be uncomfortable. Coming down on the MDMA while the DOx is still active can be quite anxiogenic. ", + "status": "Caution" + }, + "mescaline": { + "status": "Caution" + }, + "mushrooms": { + "status": "Low Risk & Synergy" + }, + "mxe": { + "note": "As an NMDA antagonist MXE potentiates DOx which can be unpleasantly intense", + "status": "Caution" + }, + "nbomes": { + "status": "Caution" + }, + "nitrous": { + "status": "Low Risk & Synergy" + }, + "opioids": { + "note": "No unexpected interactions.", + "status": "Low Risk & No Synergy" + }, + "pcp": { + "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner.", + "status": "Unsafe" + }, + "ssris": { + "status": "Low Risk & Decrease" + }, + "tramadol": { + "note": "Tramadol is well known to lower seizure threshold and psychedelics also cause occasional seizures.", + "status": "Unsafe" + } + }, + "dxm": { + "2c-t-x": { + "status": "Unsafe" + }, + "2c-x": { + "status": "Low Risk & Synergy" + }, + "5-meo-xxt": { + "note": "Little information exists about this combination.", + "status": "Unsafe" + }, + "alcohol": { + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place affected patients in the recovery position to prevent vomit aspiration from excess. Additionally CNS depression can lead to difficulty breathing. Avoid on anything higher than 1st plateau.", + "status": "Dangerous" + }, + "amphetamines": { + "note": "Both substances raise heart rate, in extreme cases, panic attacks caused by these drugs have led to more serious heart issues.", + "status": "Unsafe" + }, + "amt": { + "status": "Dangerous" + }, + "benzodiazepines": { + "note": "Small doses of benzos can end a bad trip, but both substances potentiate the ataxia and sedation caused by the other and this can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position.", + "status": "Caution" + }, + "caffeine": { + "note": "High doses of caffeine may cause anxiety which is less manageable when tripping, and since both are stimulating the combination may cause some physical discomfort.", + "status": "Low Risk & No Synergy" + }, + "cannabis": { + "status": "Low Risk & Synergy" + }, + "cocaine": { + "note": "Both substances raise heart rate, in extreme cases, panic attacks caused by these drugs have led to more serious heart issues", + "status": "Unsafe" + }, + "dmt": { + "status": "Low Risk & Synergy" + }, + "dox": { + "note": "The DOx class as psychedelic stimulants have the potential to mask the effects of DXM and could lead to redosing to an unsafe level. DXM can also potentiate DOx resulting in an unpleasantly intense experience.", + "status": "Unsafe" + }, + "dxm": { + "status": "Self" + }, + "ghb/gbl": { + "note": "Both substances cause ataxia and bring a risk of vomiting and unconsciousness. If the patient falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position. This combination is hard to predict", + "status": "Dangerous" + }, + "ketamine": { + "status": "Low Risk & No Synergy" + }, + "lsd": { + "status": "Low Risk & Synergy" + }, + "maois": { + "note": "High risk of serotonin syndrome", + "status": "Dangerous" + }, + "mdma": { + "status": "Dangerous" + }, + "mescaline": { + "status": "Low Risk & Synergy" + }, + "mushrooms": { + "status": "Low Risk & Synergy" + }, + "mxe": { + "status": "Low Risk & No Synergy" + }, + "nbomes": { + "status": "Unsafe" + }, + "nitrous": { + "status": "Low Risk & Synergy" + }, + "opioids": { + "note": "CNS depression, difficult breathing, heart issues, hepatoxic, just very unsafe combination all around. Additionally if one takes dxm, their tolerance of opiates goes down slightly, thus causing additional synergistic effects.", + "status": "Dangerous" + }, + "pcp": { + "status": "Dangerous" + }, + "ssris": { + "note": "High risk of serotonin syndrome.", + "status": "Dangerous" + }, + "tramadol": { + "status": "Dangerous" + } + }, + "ghb/gbl": { + "2c-t-x": { + "status": "Low Risk & Decrease" + }, + "2c-x": { + "status": "Low Risk & Decrease" + }, + "5-meo-xxt": { + "status": "Low Risk & Decrease" + }, + "alcohol": { + "note": "Even in very low doses this combination rapidly leads to memory loss, severe ataxia and unconsciousness. There is a high risk of vomit aspiration while unconscious.", + "status": "Dangerous" + }, + "amphetamines": { + "note": "Stimulants increase respiration rate allowing a higher dose of sedatives. If the stimulant wears off first then the opiate may overcome the patient and cause respiratory arrest.", + "status": "Caution" + }, + "amt": { + "status": "Low Risk & Decrease" + }, + "benzodiazepines": { + "note": "The two substances potentiate each other strongly and unpredictably, very rapidly leading to unconsciousness. While unconscious, vomit aspiration is a risk if not placed in the recovery position.", + "status": "Dangerous" + }, + "caffeine": { + "status": "Low Risk & No Synergy" + }, + "cannabis": { + "status": "Low Risk & Synergy" + }, + "cocaine": { + "note": "Stimulants increase respiration rate allowing a higher dose of sedatives. If the stimulant wears off first then the opiate may overcome the patient and cause respiratory arrest. Likewise the G can wear off and leave a dangerous concentration of cocaine behind", + "status": "Caution" + }, + "dmt": { + "status": "Low Risk & Decrease" + }, + "dox": { + "status": "Low Risk & Decrease" + }, + "dxm": { + "note": "Both substances cause ataxia and bring a risk of vomiting and unconsciousness. If the patient falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position. This combination is hard to predict", + "status": "Dangerous" + }, + "ghb/gbl": { + "status": "Self" + }, + "ketamine": { + "note": "Both substances cause ataxia and bring a risk of vomiting and unconsciousness. If the user falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position.", + "status": "Dangerous" + }, + "lsd": { + "status": "Low Risk & Decrease" + }, + "maois": { + "status": "Low Risk & Synergy" + }, + "mdma": { + "note": "Large amounts of GHB/GBL may overwhelm the effects of MDMA on the comedown.", + "status": "Caution" + }, + "mescaline": { + "status": "Low Risk & Decrease" + }, + "mushrooms": { + "status": "Low Risk & Decrease" + }, + "mxe": { + "note": "Both substances cause ataxia and bring a risk of vomiting and unconsciousness. If the patient falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position.", + "status": "Dangerous" + }, + "nbomes": { + "status": "Low Risk & Decrease" + }, + "nitrous": { + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely.", + "status": "Caution" + }, + "opioids": { + "note": "The two substances potentiate each other strongly and unpredictably, very rapidly leading to unconsciousness. While unconscious, vomit aspiration is a risk if not placed in the recovery position", + "status": "Dangerous" + }, + "pcp": { + "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner.", + "status": "Dangerous" + }, + "ssris": { + "status": "Low Risk & No Synergy" + }, + "tramadol": { + "note": "The sedative effects of this combination can lead to dangerous respiratory depression.", + "status": "Dangerous" + } + }, + "ketamine": { + "2c-t-x": { + "status": "Low Risk & Synergy" + }, + "2c-x": { + "status": "Low Risk & Synergy" + }, + "5-meo-xxt": { + "status": "Low Risk & Synergy" + }, + "alcohol": { + "note": "Both substances cause ataxia and bring a very high risk of vomiting and unconsciousness. If the user falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position.", + "status": "Dangerous" + }, + "amphetamines": { + "note": "No unexpected interactions, though likely to increase blood pressure but not an issue with sensible doses. Moving around on high doses of this combination may be ill advised due to risk of physical injury.", + "status": "Caution" + }, + "amt": { + "status": "Low Risk & Synergy" + }, + "benzodiazepines": { + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position.", + "status": "Caution" + }, + "caffeine": { + "note": "No unexpected interactions.", + "status": "Low Risk & No Synergy" + }, + "cannabis": { + "status": "Low Risk & Synergy" + }, + "cocaine": { + "note": "No unexpected interactions, though likely to increase blood pressure but not an issue with sensible doses. Moving around on high doses of this combination may be ill advised due to risk of physical injury.", + "status": "Caution" + }, + "dmt": { + "status": "Low Risk & Synergy" + }, + "dox": { + "note": "Ketamine and psychedelics tend to potentiate each other - go slowly.", + "status": "Low Risk & Synergy" + }, + "dxm": { + "status": "Low Risk & No Synergy" + }, + "ghb/gbl": { + "note": "Both substances cause ataxia and bring a risk of vomiting and unconsciousness. If the user falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position.", + "status": "Dangerous" + }, + "ketamine": { + "status": "Self" + }, + "lsd": { + "status": "Low Risk & Synergy" + }, + "maois": { + "note": "MAO-B inhibitors appear to increase the potency of Ketamine. MAO-A inhbitors have some negative reports associated with the combination but there isn't much information available", + "status": "Caution" + }, + "mdma": { + "note": "No unexpected interactions, though likely to increase blood pressure but not an issue with sensible doses. Moving around on high doses of this combination may be ill advised due to risk of physical injury.", + "status": "Low Risk & Synergy" + }, + "mescaline": { + "status": "Low Risk & Synergy" + }, + "mushrooms": { + "status": "Low Risk & Synergy" + }, + "mxe": { + "status": "Low Risk & Synergy" + }, + "nbomes": { + "status": "Low Risk & Synergy" + }, + "nitrous": { + "status": "Low Risk & Synergy" + }, + "opioids": { + "note": "Both substances bring a risk of vomiting and unconsciousness. If the user falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position.", + "status": "Dangerous" + }, + "pcp": { + "status": "Low Risk & Synergy" + }, + "ssris": { + "status": "Low Risk & No Synergy" + }, + "tramadol": { + "status": "Dangerous" + } + }, + "lsd": { + "2c-t-x": { + "status": "Low Risk & Synergy" + }, + "2c-x": { + "status": "Low Risk & Synergy" + }, + "5-meo-xxt": { + "status": "Low Risk & Synergy" + }, + "alcohol": { + "status": "Low Risk & Decrease" + }, + "amphetamines": { + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", + "status": "Caution" + }, + "amt": { + "status": "Low Risk & Synergy" + }, + "benzodiazepines": { + "status": "Low Risk & Decrease" + }, + "caffeine": { + "status": "Low Risk & No Synergy" + }, + "cannabis": { + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", + "status": "Caution" + }, + "cocaine": { + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", + "status": "Caution" + }, + "dmt": { + "status": "Low Risk & Synergy" + }, + "dox": { + "status": "Low Risk & Synergy" + }, + "dxm": { + "status": "Low Risk & Synergy" + }, + "ghb/gbl": { + "status": "Low Risk & Decrease" + }, + "ketamine": { + "status": "Low Risk & Synergy" + }, + "lsd": { + "status": "Self" + }, + "maois": { + "status": "Low Risk & Decrease" + }, + "mdma": { + "status": "Low Risk & Synergy" + }, + "mescaline": { + "status": "Low Risk & Synergy" + }, + "mushrooms": { + "status": "Low Risk & Synergy" + }, + "mxe": { + "status": "Low Risk & Synergy" + }, + "nbomes": { + "status": "Low Risk & Synergy" + }, + "nitrous": { + "status": "Low Risk & Synergy" + }, + "opioids": { + "status": "Low Risk & No Synergy" + }, + "pcp": { + "status": "Low Risk & Synergy" + }, + "ssris": { + "status": "Low Risk & Decrease" + }, + "tramadol": { + "note": "Tramadol is well known to lower seizure threshold and psychedelics also cause occasional seizures.", + "status": "Unsafe" + } + }, + "maois": { + "2c-t-x": { + "note": "MAO-B inhibitors can increase the potency and duration of phenethylamines unpredictably, which could be dangerous given the unpredictability of the 2C-T-x series", + "status": "Caution" + }, + "2c-x": { + "note": "MAO-B inhibitors can increase the potency and duration of phenethylamines unpredictably", + "status": "Caution" + }, + "5-meo-xxt": { + "status": "Dangerous" + }, + "alcohol": { + "note": "Tyramine found in many alcoholic beverages can have dangerous reactions with MAOIs, causing an increase in blood pressure.", + "status": "Unsafe" + }, + "amphetamines": { + "note": "MAO-B inhibitors can increase the potency and duration of phenethylamines unpredictably. MAO-A inhibitors with amphetamine can lead to hypertensive crises.", + "status": "Dangerous" + }, + "amt": { + "note": "aMT is an MAOI on its own. Using enzyme inhibitors can greatly reduce predictability of effects.", + "status": "Dangerous" + }, + "benzodiazepines": { + "status": "Low Risk & Synergy" + }, + "caffeine": { + "status": "Low Risk & No Synergy" + }, + "cannabis": { + "status": "Low Risk & Synergy" + }, + "cocaine": { + "note": "This combination is poorly explored", + "status": "Dangerous" + }, + "dmt": { + "status": "Low Risk & Synergy" + }, + "dox": { + "note": "MAO-B inhibitors can increase the potency and duration of phenethylamines unpredictably", + "status": "Caution" + }, + "dxm": { + "note": "High risk of serotonin syndrome", + "status": "Dangerous" + }, + "ghb/gbl": { + "status": "Low Risk & Synergy" + }, + "ketamine": { + "note": "MAO-B inhibitors appear to increase the potency of Ketamine. MAO-A inhbitors have some negative reports associated with the combination but there isn't much information available", + "status": "Caution" + }, + "lsd": { + "status": "Low Risk & Decrease" + }, + "maois": { + "status": "Self" + }, + "mdma": { + "note": "MAO-B inhibitors can increase the potency and duration of phenethylamines unpredictably. MAO-A inhibitors with MDMA will lead to hypertensive crises.", + "status": "Dangerous" + }, + "mescaline": { + "status": "Caution" + }, + "mushrooms": { + "status": "Low Risk & Synergy" + }, + "mxe": { + "note": "MAO-B inhibitors appear to increase the potency of MXE. MAO-A inhbitors have some negative reports associated with the combination but there isn't much information available", + "status": "Unsafe" + }, + "nbomes": { + "note": "MAO-B inhibitors can increase the potency and duration of phenethylamines unpredictably", + "status": "Caution" + }, + "nitrous": { + "status": "Low Risk & No Synergy" + }, + "opioids": { + "note": "Coadministration of monoamine oxidase inhibitors (MAOIs) with certain opioids has been associated with rare reports of severe and fatal adverse reactions. There appear to be two types of interaction, an excitatory and a depressive one. Symptoms of the excitatory reaction may include agitation, headache, diaphoresis, hyperpyrexia, flushing, shivering, myoclonus, rigidity, tremor, diarrhea, hypertension, tachycardia, seizures, and coma. Death has occurred in some cases.", + "status": "Caution" + }, + "pcp": { + "note": "This combination is very poorly explored", + "status": "Dangerous" + }, + "ssris": { + "status": "Dangerous" + }, + "tramadol": { + "status": "Dangerous" + } + }, + "mdma": { + "2c-t-x": { + "status": "Caution" + }, + "2c-x": { + "status": "Low Risk & Synergy" + }, + "5-meo-xxt": { + "note": "Some of the 5-MeO tryptamines are a bit unpredictable and should be mixed with MDMA with care", + "status": "Caution" + }, + "alcohol": { + "note": "Both MDMA and alcohol cause dehydration. Approach this combination with caution, moderation and sufficient hydration. More than a small amount of alcohol will dull the euphoria of MDMA", + "status": "Caution" + }, + "amphetamines": { + "note": "Amphetamines increase the neurotoxic effects of MDMA", + "status": "Low Risk & Synergy" + }, + "amt": { + "status": "Dangerous" + }, + "benzodiazepines": { + "status": "Low Risk & Decrease" + }, + "caffeine": { + "note": "Caffiene is not really necessary with MDMA and increases any neurotoxic effects from MDMA", + "status": "Caution" + }, + "cannabis": { + "note": "Large amounts of cannabis may cause strong and somewhat unpredictable experiences in combination with MDMA. Cannabis should be saved for towards the end of the experience if possible.", + "status": "Low Risk & Synergy" + }, + "cocaine": { + "note": "Cocaine blocks some of the desirable effects of MDMA while increasing the risk of heart attack.", + "status": "Caution" + }, + "dmt": { + "status": "Low Risk & Synergy" + }, + "dox": { + "note": "The combined stimulating effects of the two can be uncomfortable. Coming down on the MDMA while the DOx is still active can be quite anxiogenic. ", + "status": "Caution" + }, + "dxm": { + "status": "Dangerous" + }, + "ghb/gbl": { + "note": "Large amounts of GHB/GBL may overwhelm the effects of MDMA on the comedown.", + "status": "Caution" + }, + "ketamine": { + "note": "No unexpected interactions, though likely to increase blood pressure but not an issue with sensible doses. Moving around on high doses of this combination may be ill advised due to risk of physical injury.", + "status": "Low Risk & Synergy" + }, + "lsd": { + "status": "Low Risk & Synergy" + }, + "maois": { + "note": "MAO-B inhibitors can increase the potency and duration of phenethylamines unpredictably. MAO-A inhibitors with MDMA will lead to hypertensive crises.", + "status": "Dangerous" + }, + "mdma": { + "status": "Self" + }, + "mescaline": { + "status": "Low Risk & Synergy" + }, + "mushrooms": { + "status": "Low Risk & Synergy" + }, + "mxe": { + "note": "There have been reports of risky serotonergic interactions when the two are taken at the same time, but MXE taken to the end of an MDMA experience does not appear to cause the same issues.", + "status": "Caution" + }, + "nbomes": { + "status": "Caution" + }, + "nitrous": { + "status": "Low Risk & Synergy" + }, + "opioids": { + "status": "Low Risk & No Synergy" + }, + "pcp": { + "note": "This combination can easily lead to hypermanic states", + "status": "Unsafe" + }, + "ssris": { + "status": "Low Risk & Decrease" + }, + "tramadol": { + "note": "Tramadol and stimulants both increase the risk of seizures.", + "status": "Dangerous" + } + }, + "mescaline": { + "2c-t-x": { + "status": "Caution" + }, + "2c-x": { + "status": "Caution" + }, + "5-meo-xxt": { + "note": "The 5-MeO class of tryptamines can be unpredictable in their interactions", + "status": "Caution" + }, + "alcohol": { + "status": "Low Risk & Decrease" + }, + "amphetamines": { + "note": "The focus and anxiety caused by stimulants is magnified by psychedelics and results in an increased risk of thought loops", + "status": "Caution" + }, + "amt": { + "status": "Dangerous" + }, + "benzodiazepines": { + "status": "Low Risk & Decrease" + }, + "caffeine": { + "note": "High doses of caffeine are uncomfortable and this will be magnified by psychedelics", + "status": "Low Risk & No Synergy" + }, + "cannabis": { + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", + "status": "Caution" + }, + "cocaine": { + "note": "The focus and anxiety caused by stimulants is magnified by psychedelics and results in an increased risk of thought loops", + "status": "Caution" + }, + "dmt": { + "status": "Low Risk & Synergy" + }, + "dox": { + "status": "Caution" + }, + "dxm": { + "status": "Low Risk & Synergy" + }, + "ghb/gbl": { + "status": "Low Risk & Decrease" + }, + "ketamine": { + "status": "Low Risk & Synergy" + }, + "lsd": { + "status": "Low Risk & Synergy" + }, + "maois": { + "status": "Caution" + }, + "mdma": { + "status": "Low Risk & Synergy" + }, + "mescaline": { + "status": "Self" + }, + "mushrooms": { + "status": "Low Risk & Synergy" + }, + "mxe": { + "status": "Low Risk & Synergy" + }, + "nbomes": { + "status": "Caution" + }, + "nitrous": { + "status": "Low Risk & Synergy" + }, + "opioids": { + "status": "Low Risk & No Synergy" + }, + "pcp": { + "status": "Low Risk & Synergy" + }, + "ssris": { + "status": "Low Risk & Decrease" + }, + "tramadol": { + "note": "This combination can cause seizures due to the lowering of the threshold by tramadol and the potential of mescaline to cause seziures.", + "status": "Unsafe" + } + }, + "mushrooms": { + "2c-t-x": { + "status": "Low Risk & Synergy" + }, + "2c-x": { + "status": "Low Risk & Synergy" + }, + "5-meo-xxt": { + "status": "Low Risk & Synergy" + }, + "alcohol": { + "status": "Low Risk & Decrease" + }, + "amphetamines": { + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", + "status": "Caution" + }, + "amt": { + "status": "Low Risk & Synergy" + }, + "benzodiazepines": { + "status": "Low Risk & Decrease" + }, + "caffeine": { + "status": "Low Risk & No Synergy" + }, + "cannabis": { + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", + "status": "Caution" + }, + "cocaine": { + "note": "Stimulants increase anxiety levels and the risk of thought loops which can lead to negative experiences", + "status": "Caution" + }, + "dmt": { + "status": "Low Risk & Synergy" + }, + "dox": { + "status": "Low Risk & Synergy" + }, + "dxm": { + "status": "Low Risk & Synergy" + }, + "ghb/gbl": { + "status": "Low Risk & Decrease" + }, + "ketamine": { + "status": "Low Risk & Synergy" + }, + "lsd": { + "status": "Low Risk & Synergy" + }, + "maois": { + "status": "Low Risk & Synergy" + }, + "mdma": { + "status": "Low Risk & Synergy" + }, + "mescaline": { + "status": "Low Risk & Synergy" + }, + "mushrooms": { + "status": "Self" + }, + "mxe": { + "status": "Low Risk & Synergy" + }, + "nbomes": { + "status": "Low Risk & Synergy" + }, + "nitrous": { + "status": "Low Risk & Synergy" + }, + "opioids": { + "status": "Low Risk & No Synergy" + }, + "pcp": { + "status": "Low Risk & Synergy" + }, + "ssris": { + "status": "Low Risk & Decrease" + }, + "tramadol": { + "note": "Tramadol is well known to lower seizure threshold and psychedelics also cause occasional seizures.", + "status": "Unsafe" + } + }, + "mxe": { + "2c-t-x": { + "status": "Caution" + }, + "2c-x": { + "status": "Low Risk & Synergy" + }, + "5-meo-xxt": { + "note": "Little information exists about this combination.", + "status": "Low Risk & Synergy" + }, + "alcohol": { + "note": "There is a high risk of memory loss, vomiting and severe ataxia from this combination.", + "status": "Dangerous" + }, + "amphetamines": { + "note": "Risk of tachycardia, hypertension, and manic states", + "status": "Caution" + }, + "amt": { + "status": "Dangerous" + }, + "benzodiazepines": { + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place affected patients in the recovery position to prevent vomit aspiration from excess.", + "status": "Caution" + }, + "caffeine": { + "note": "No likely interactions", + "status": "Low Risk & No Synergy" + }, + "cannabis": { + "status": "Low Risk & Synergy" + }, + "cocaine": { + "note": "Stimulants taken with MXE can lead to hypermanic states much more easily, especially if sleep is avoided.", + "status": "Caution" + }, + "dmt": { + "status": "Low Risk & Synergy" + }, + "dox": { + "note": "As an NMDA antagonist MXE potentiates DOx which can be unpleasantly intense", + "status": "Caution" + }, + "dxm": { + "status": "Low Risk & No Synergy" + }, + "ghb/gbl": { + "note": "Both substances cause ataxia and bring a risk of vomiting and unconsciousness. If the patient falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position.", + "status": "Dangerous" + }, + "ketamine": { + "status": "Low Risk & Synergy" + }, + "lsd": { + "status": "Low Risk & Synergy" + }, + "maois": { + "note": "MAO-B inhibitors appear to increase the potency of MXE. MAO-A inhbitors have some negative reports associated with the combination but there isn't much information available", + "status": "Unsafe" + }, + "mdma": { + "note": "There have been reports of risky serotonergic interactions when the two are taken at the same time, but MXE taken to the end of an MDMA experience does not appear to cause the same issues.", + "status": "Caution" + }, + "mescaline": { + "status": "Low Risk & Synergy" + }, + "mushrooms": { + "status": "Low Risk & Synergy" + }, + "mxe": { + "status": "Self" + }, + "nbomes": { + "note": "As an NMDA antagonist MXE potentiates NBOMes which can be unpleasantly intense", + "status": "Caution" + }, + "nitrous": { + "status": "Low Risk & Synergy" + }, + "opioids": { + "note": "This combination can potentiate the effects of the opioid", + "status": "Dangerous" + }, + "pcp": { + "note": "There are no reports available about this combination", + "status": "Caution" + }, + "ssris": { + "note": "Depending on the SSRI this combination can be unpredictable", + "status": "Caution" + }, + "tramadol": { + "status": "Dangerous" + } + }, + "nbomes": { + "2c-t-x": { + "status": "Caution" + }, + "2c-x": { + "status": "Caution" + }, + "5-meo-xxt": { + "note": "The 5-MeO class of tryptamines can be unpredictable in their interactions and the NBOMes are known to be unpredictable even alone. This combination is best avoided", + "status": "Caution" + }, + "alcohol": { + "status": "Low Risk & Decrease" + }, + "amphetamines": { + "note": "Amphetamines and NBOMes both provide considerable stimulation. When combined they can result in tachycardia, hypertension, vasoconstriction and in extreme cases heart failure. The anxiogenic and focusing effects of stimulants are also not good in combination with psychedelics as they can lead to unpleasant thought loops. NBOMes are known to cause seizures and stimulants can increase this risk.", + "status": "Unsafe" + }, + "amt": { + "status": "Dangerous" + }, + "benzodiazepines": { + "status": "Low Risk & Decrease" + }, + "caffeine": { + "note": "Caffiene can bring out the natural stimulation from psychedelic drugs to make it uncomfortable. High doses can cause anxiety which is hard to handle while tripping", + "status": "Caution" + }, + "cannabis": { + "note": "Cannabis has an unexpectedly strong and somewhat unpredictable synergy with psychedelics.", + "status": "Caution" + }, + "cocaine": { + "note": "Cocaine and NBOMes both provide considerable stimulation. When combined they can result in severe vasoconstriction, tachycardia, hypertension, and in extreme cases heart failure.", + "status": "Unsafe" + }, + "dmt": { + "status": "Low Risk & Synergy" + }, + "dox": { + "status": "Caution" + }, + "dxm": { + "status": "Unsafe" + }, + "ghb/gbl": { + "status": "Low Risk & Decrease" + }, + "ketamine": { + "status": "Low Risk & Synergy" + }, + "lsd": { + "status": "Low Risk & Synergy" + }, + "maois": { + "note": "MAO-B inhibitors can increase the potency and duration of phenethylamines unpredictably", + "status": "Caution" + }, + "mdma": { + "status": "Caution" + }, + "mescaline": { + "status": "Caution" + }, + "mushrooms": { + "status": "Low Risk & Synergy" + }, + "mxe": { + "note": "As an NMDA antagonist MXE potentiates NBOMes which can be unpleasantly intense", + "status": "Caution" + }, + "nbomes": { + "status": "Self" + }, + "nitrous": { + "status": "Low Risk & Synergy" + }, + "opioids": { + "status": "Low Risk & No Synergy" + }, + "pcp": { + "status": "Low Risk & Synergy" + }, + "ssris": { + "status": "Low Risk & Decrease" + }, + "tramadol": { + "note": "Tramadol is well known to lower seizure threshold and NBOMes have also shown a tendency to cause severe seizures", + "status": "Unsafe" + } + }, + "nitrous": { + "2c-t-x": { + "status": "Low Risk & Synergy" + }, + "2c-x": { + "status": "Low Risk & Synergy" + }, + "5-meo-xxt": { + "status": "Low Risk & Synergy" + }, + "alcohol": { + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely.", + "status": "Caution" + }, + "amphetamines": { + "status": "Low Risk & Synergy" + }, + "amt": { + "status": "Low Risk & Synergy" + }, + "benzodiazepines": { + "status": "Low Risk & Decrease" + }, + "caffeine": { + "status": "Low Risk & No Synergy" + }, + "cannabis": { + "status": "Low Risk & Synergy" + }, + "cocaine": { + "status": "Low Risk & Synergy" + }, + "dmt": { + "status": "Low Risk & Synergy" + }, + "dox": { + "status": "Low Risk & Synergy" + }, + "dxm": { + "status": "Low Risk & Synergy" + }, + "ghb/gbl": { + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely.", + "status": "Caution" + }, + "ketamine": { + "status": "Low Risk & Synergy" + }, + "lsd": { + "status": "Low Risk & Synergy" + }, + "maois": { + "status": "Low Risk & No Synergy" + }, + "mdma": { + "status": "Low Risk & Synergy" + }, + "mescaline": { + "status": "Low Risk & Synergy" + }, + "mushrooms": { + "status": "Low Risk & Synergy" + }, + "mxe": { + "status": "Low Risk & Synergy" + }, + "nbomes": { + "status": "Low Risk & Synergy" + }, + "nitrous": { + "status": "Self" + }, + "opioids": { + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely.", + "status": "Caution" + }, + "pcp": { + "status": "Low Risk & Synergy" + }, + "ssris": { + "status": "Low Risk & No Synergy" + }, + "tramadol": { + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely.", + "status": "Caution" + } + }, + "opioids": { + "2c-t-x": { + "note": "No expected interactions, some opioids have serotonin action, and could lead to Serotonin Syndrome or a seizure. These are pretty much only to Pentazocine, Methadone, Tramadol, Tapenatdol.", + "status": "Low Risk & No Synergy" + }, + "2c-x": { + "status": "Low Risk & No Synergy" + }, + "5-meo-xxt": { + "status": "Low Risk & No Synergy" + }, + "alcohol": { + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place affected patients in the recovery position to prevent vomit aspiration from excess. Memory blackouts are likely", + "status": "Dangerous" + }, + "amphetamines": { + "note": "Stimulants increase respiration rate allowing a higher dose of opiates. If the stimulant wears off first then the opiate may overcome the patient and cause respiratory arrest.", + "status": "Caution" + }, + "amt": { + "note": "No unexpected interactions", + "status": "Low Risk & No Synergy" + }, + "benzodiazepines": { + "note": "Central nervous system and/or respiratory-depressant effects may be additively or synergistically present. The two substances potentiate each other strongly and unpredictably, very rapidly leading to unconsciousness. While unconscious, vomit aspiration is a risk if not placed in the recovery position Blackouts/memory loss likely", + "status": "Dangerous" + }, + "caffeine": { + "status": "Low Risk & No Synergy" + }, + "cannabis": { + "status": "Low Risk & Synergy" + }, + "cocaine": { + "note": "Stimulants increase respiration rate allowing a higher dose of opiates. If the stimulant wears off first then the opiate may overcome the patient and cause respiratory arrest.", + "status": "Dangerous" + }, + "dmt": { + "status": "Low Risk & No Synergy" + }, + "dox": { + "note": "No unexpected interactions.", + "status": "Low Risk & No Synergy" + }, + "dxm": { + "note": "CNS depression, difficult breathing, heart issues, hepatoxic, just very unsafe combination all around. Additionally if one takes dxm, their tolerance of opiates goes down slightly, thus causing additional synergistic effects.", + "status": "Dangerous" + }, + "ghb/gbl": { + "note": "The two substances potentiate each other strongly and unpredictably, very rapidly leading to unconsciousness. While unconscious, vomit aspiration is a risk if not placed in the recovery position", + "status": "Dangerous" + }, + "ketamine": { + "note": "Both substances bring a risk of vomiting and unconsciousness. If the user falls unconscious while under the influence there is a severe risk of vomit aspiration if they are not placed in the recovery position.", + "status": "Dangerous" + }, + "lsd": { + "status": "Low Risk & No Synergy" + }, + "maois": { + "note": "Coadministration of monoamine oxidase inhibitors (MAOIs) with certain opioids has been associated with rare reports of severe and fatal adverse reactions. There appear to be two types of interaction, an excitatory and a depressive one. Symptoms of the excitatory reaction may include agitation, headache, diaphoresis, hyperpyrexia, flushing, shivering, myoclonus, rigidity, tremor, diarrhea, hypertension, tachycardia, seizures, and coma. Death has occurred in some cases.", + "status": "Caution" + }, + "mdma": { + "status": "Low Risk & No Synergy" + }, + "mescaline": { + "status": "Low Risk & No Synergy" + }, + "mushrooms": { + "status": "Low Risk & No Synergy" + }, + "mxe": { + "note": "This combination can potentiate the effects of the opioid", + "status": "Dangerous" + }, + "nbomes": { + "status": "Low Risk & No Synergy" + }, + "nitrous": { + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely.", + "status": "Caution" + }, + "opioids": { + "status": "Self" + }, + "pcp": { + "note": "PCP can reduce opioid tolerance, increasing the risk of overdose", + "status": "Caution" + }, + "ssris": { + "note": "There have been very infrequent reports of a risk of serotonin syndrome with this combination, though this should not be a practical concern.", + "status": "Low Risk & No Synergy" + }, + "tramadol": { + "note": "Concomitant use of tramadol increases the seizure risk in patients taking other opioids. These agents are often individually epileptogenic and may have additive effects on seizure threshold during coadministration. Central nervous system- and/or respiratory-depressant effects may be additively or synergistically present", + "status": "Dangerous" + } + }, + "pcp": { + "2c-t-x": { + "status": "Dangerous" + }, + "2c-x": { + "status": "Low Risk & Synergy" + }, + "5-meo-xxt": { + "status": "Dangerous" + }, + "alcohol": { + "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner.", + "status": "Unsafe" + }, + "amphetamines": { + "note": "This combination can easily lead to hypermanic states", + "status": "Unsafe" + }, + "amt": { + "status": "Dangerous" + }, + "benzodiazepines": { + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely", + "status": "Unsafe" + }, + "caffeine": { + "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner.", + "status": "Caution" + }, + "cannabis": { + "status": "Low Risk & Synergy" + }, + "cocaine": { + "note": "This combination can easily lead to hypermanic states", + "status": "Unsafe" + }, + "dmt": { + "status": "Low Risk & Synergy" + }, + "dox": { + "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner.", + "status": "Unsafe" + }, + "dxm": { + "status": "Dangerous" + }, + "ghb/gbl": { + "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner.", + "status": "Dangerous" + }, + "ketamine": { + "status": "Low Risk & Synergy" + }, + "lsd": { + "status": "Low Risk & Synergy" + }, + "maois": { + "note": "This combination is very poorly explored", + "status": "Dangerous" + }, + "mdma": { + "note": "This combination can easily lead to hypermanic states", + "status": "Unsafe" + }, + "mescaline": { + "status": "Low Risk & Synergy" + }, + "mushrooms": { + "status": "Low Risk & Synergy" + }, + "mxe": { + "note": "There are no reports available about this combination", + "status": "Caution" + }, + "nbomes": { + "status": "Low Risk & Synergy" + }, + "nitrous": { + "status": "Low Risk & Synergy" + }, + "opioids": { + "note": "PCP can reduce opioid tolerance, increasing the risk of overdose", + "status": "Caution" + }, + "pcp": { + "status": "Self" + }, + "ssris": { + "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner.", + "status": "Unsafe" + }, + "tramadol": { + "status": "Dangerous" + } + }, + "ssris": { + "2c-t-x": { + "status": "Low Risk & Decrease" + }, + "2c-x": { + "status": "Low Risk & Decrease" + }, + "5-meo-xxt": { + "status": "Low Risk & Decrease" + }, + "alcohol": { + "note": "Alcohol may potentiate some of the pharmacologic effects of CNS-active agents. Use in combination may result in additive central nervous system depression and/or impairment of judgment, thinking, and psychomotor skills.", + "status": "Caution" + }, + "amphetamines": { + "status": "Low Risk & No Synergy" + }, + "amt": { + "status": "Dangerous" + }, + "benzodiazepines": { + "status": "Low Risk & No Synergy" + }, + "caffeine": { + "status": "Low Risk & No Synergy" + }, + "cannabis": { + "status": "Low Risk & No Synergy" + }, + "cocaine": { + "note": "May reduce each others' effectiveness. Cocaine can reduce mental stability and therefore exacerbate conditions which SSRIs are used to treat.", + "status": "Low Risk & No Synergy" + }, + "dmt": { + "status": "Low Risk & Decrease" + }, + "dox": { + "status": "Low Risk & Decrease" + }, + "dxm": { + "note": "High risk of serotonin syndrome.", + "status": "Dangerous" + }, + "ghb/gbl": { + "status": "Low Risk & No Synergy" + }, + "ketamine": { + "status": "Low Risk & No Synergy" + }, + "lsd": { + "status": "Low Risk & Decrease" + }, + "maois": { + "status": "Dangerous" + }, + "mdma": { + "status": "Low Risk & Decrease" + }, + "mescaline": { + "status": "Low Risk & Decrease" + }, + "mushrooms": { + "status": "Low Risk & Decrease" + }, + "mxe": { + "note": "Depending on the SSRI this combination can be unpredictable", + "status": "Caution" + }, + "nbomes": { + "status": "Low Risk & Decrease" + }, + "nitrous": { + "status": "Low Risk & No Synergy" + }, + "opioids": { + "note": "There have been very infrequent reports of a risk of serotonin syndrome with this combination, though this should not be a practical concern.", + "status": "Low Risk & No Synergy" + }, + "pcp": { + "note": "Details of this combination are not well understood but PCP generally interacts in an unpredictable manner.", + "status": "Unsafe" + }, + "ssris": { + "status": "Self" + }, + "tramadol": { + "status": "Dangerous" + } + }, + "tramadol": { + "2c-t-x": { + "status": "Unsafe" + }, + "2c-x": { + "note": "Tramadol is well known to lower seizure threshold and psychedelics raise the risk of seizures.", + "status": "Unsafe" + }, + "5-meo-xxt": { + "status": "Unsafe" + }, + "alcohol": { + "note": "Heavy CNS depressants, risk of seizures. Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. Place affected patients in the recovery position to prevent vomit aspiration from excess. Memory blackouts are likely.", + "status": "Dangerous" + }, + "amphetamines": { + "note": "Tramadol and stimulants both increase the risk of seizures.", + "status": "Dangerous" + }, + "amt": { + "status": "Dangerous" + }, + "benzodiazepines": { + "note": "Central nervous system- and/or respiratory-depressant effects may be additively or synergistically present. Vomit aspiration a risk when passed out, lay down in recovery position if ingested.", + "status": "Dangerous" + }, + "caffeine": { + "status": "Low Risk & No Synergy" + }, + "cannabis": { + "status": "Low Risk & Synergy" + }, + "cocaine": { + "note": "Tramadol and stimulants both increase the risk of seizures.", + "status": "Dangerous" + }, + "dmt": { + "note": "Tramadol is well known to lower seizure threshold and psychedelics also cause occasional seizures.", + "status": "Unsafe" + }, + "dox": { + "note": "Tramadol is well known to lower seizure threshold and psychedelics also cause occasional seizures.", + "status": "Unsafe" + }, + "dxm": { + "status": "Dangerous" + }, + "ghb/gbl": { + "note": "The sedative effects of this combination can lead to dangerous respiratory depression.", + "status": "Dangerous" + }, + "ketamine": { + "status": "Dangerous" + }, + "lsd": { + "note": "Tramadol is well known to lower seizure threshold and psychedelics also cause occasional seizures.", + "status": "Unsafe" + }, + "maois": { + "status": "Dangerous" + }, + "mdma": { + "note": "Tramadol and stimulants both increase the risk of seizures.", + "status": "Dangerous" + }, + "mescaline": { + "note": "This combination can cause seizures due to the lowering of the threshold by tramadol and the potential of mescaline to cause seziures.", + "status": "Unsafe" + }, + "mushrooms": { + "note": "Tramadol is well known to lower seizure threshold and psychedelics also cause occasional seizures.", + "status": "Unsafe" + }, + "mxe": { + "status": "Dangerous" + }, + "nbomes": { + "note": "Tramadol is well known to lower seizure threshold and NBOMes have also shown a tendency to cause severe seizures", + "status": "Unsafe" + }, + "nitrous": { + "note": "Both substances potentiate the ataxia and sedation caused by the other and can lead to unexpected loss of consciousness at high doses. While unconscious, vomit aspiration is a risk if not placed in the recovery position. Memory blackouts are likely.", + "status": "Caution" + }, + "opioids": { + "note": "Concomitant use of tramadol increases the seizure risk in patients taking other opioids. These agents are often individually epileptogenic and may have additive effects on seizure threshold during coadministration. Central nervous system- and/or respiratory-depressant effects may be additively or synergistically present", + "status": "Dangerous" + }, + "pcp": { + "status": "Dangerous" + }, + "ssris": { + "status": "Dangerous" + }, + "tramadol": { + "status": "Self" + } + } +} \ No newline at end of file diff --git a/src/global/assets/data/drug_db_tripsit.json b/src/global/assets/data/tripsitDB.json similarity index 100% rename from src/global/assets/data/drug_db_tripsit.json rename to src/global/assets/data/tripsitDB.json diff --git a/src/global/commands/g.botstats.ts b/src/global/commands/g.botstats.ts index b17cdb41c..60a7811bd 100644 --- a/src/global/commands/g.botstats.ts +++ b/src/global/commands/g.botstats.ts @@ -7,8 +7,8 @@ import { os, NetStatMetrics, } from 'node-os-utils'; -import drugDataTripsit from '../assets/data/drug_db_tripsit.json'; -import drugDataCombined from '../assets/data/drug_db_combined.json'; +import drugDataTripsit from '../assets/data/tripsitDB.json'; +import drugDataCombined from '../assets/data/combinedDB.json'; export default botStats; diff --git a/src/global/commands/g.calcBenzo.ts b/src/global/commands/g.calcBenzo.ts index 58adb7ffa..6a32deb14 100644 --- a/src/global/commands/g.calcBenzo.ts +++ b/src/global/commands/g.calcBenzo.ts @@ -1,4 +1,4 @@ -import drugDataTripsit from '../assets/data/drug_db_tripsit.json'; +import drugDataTripsit from '../assets/data/tripsitDB.json'; const F = f(__filename); diff --git a/src/global/commands/g.combo.ts b/src/global/commands/g.combo.ts index 48d3339e9..c65a70e0f 100644 --- a/src/global/commands/g.combo.ts +++ b/src/global/commands/g.combo.ts @@ -1,9 +1,9 @@ // import { stripIndents } from 'common-tags'; import { Category, Combo, Drug } from 'tripsit_drug_db'; // import { CbSubstance, Interaction } from '../@types/combined'; -// import drugDataAll from '../assets/data/drug_db_combined.json'; -import comboJsonData from '../assets/data/combo.json'; -import drugJsonData from '../assets/data/drug_db_tripsit.json'; +// import drugDataAll from '../../../assets/data/combine dDB.json'; +import comboJsonData from '../assets/data/tripsitCombos.json'; +import drugJsonData from '../assets/data/tripsitDB.json'; import comboDefs from '../assets/data/combo_definitions.json'; const F = f(__filename); @@ -56,6 +56,32 @@ export async function combo( // Because users can input whatever they want, we need to clean the input function cleanDrugName(drugName:string):string { + // These matches need to come first because otherwise "2x-b" woould be found in the drug DB but not have any interaction info + if (/^do.$/i.test(drugName)) { + return 'dox'; + } + if (/^2c-.$/i.test(drugName)) { + return '2c-x'; + } + if (/^25.-nbome/i.test(drugName)) { + return '2c-t-x'; + } + if (/^25.-nbome/i.test(drugName)) { + return 'nbomes'; + } + if (/^5-meo-..t$/i.test(drugName)) { + return '5-meo-xxt'; + } + if (drugName === 'ghb' || drugName === 'gbl') { + return 'ghb/gbl'; + } + if (drugName === 'ssri' || drugName === 'snri' || drugName === 'snris') { + return 'ssris'; + } + if (drugName === 'maoi') { + return 'maois'; + } + // First, check if the given name exists in the drug database, if so, we should try to use that info if (Object.keys(drugData).includes(drugName.toLowerCase())) { const drug = (drugData as DrugData)[drugName.toLowerCase()] as Drug; @@ -97,31 +123,6 @@ export async function combo( } } - if (/^do.$/i.test(drugName)) { - return 'dox'; - } - if (/^2c-.$/i.test(drugName)) { - return '2c-x'; - } - if (/^25.-nbome/i.test(drugName)) { - return '2c-t-x'; - } - if (/^25.-nbome/i.test(drugName)) { - return 'nbomes'; - } - if (/^5-meo-..t$/i.test(drugName)) { - return '5-meo-xxt'; - } - if (drugName === 'ghb' || drugName === 'gbl') { - return 'ghb/gbl'; - } - if (drugName === 'ssri' || drugName === 'snri' || drugName === 'snris') { - return 'ssris'; - } - if (drugName === 'maoi') { - return 'maois'; - } - return drugName; } @@ -139,6 +140,7 @@ export async function combo( // If the drug is in the drugDB, we can use the combo data from there // If the drug is not in the drugDB, we can use the combo data from the comboDB // Either way, it's the same format, so they're interchangeable + // log.debug(F, `drugAName: ${drugAName}`); const drugAComboData = Object.keys(drugData).includes(drugAName.toLowerCase()) ? (drugData[drugAName.toLowerCase()]).combos : comboData[drugAName.toLowerCase() as keyof typeof comboData]; diff --git a/src/global/commands/g.drug.ts b/src/global/commands/g.drug.ts index 5bb7eebbe..dfff31deb 100644 --- a/src/global/commands/g.drug.ts +++ b/src/global/commands/g.drug.ts @@ -1,5 +1,5 @@ import { CbSubstance } from '../@types/combined'; -import drugDataAll from '../assets/data/drug_db_combined.json'; +import drugDataAll from '../assets/data/combinedDB.json'; const F = f(__filename); // eslint-disable-line diff --git a/src/global/utils/updateDb.ts b/src/global/utils/updateDb.ts index 651ec7c7b..b4fd9f5fc 100644 --- a/src/global/utils/updateDb.ts +++ b/src/global/utils/updateDb.ts @@ -1,80 +1,124 @@ +/* eslint-disable @typescript-eslint/no-unused-vars */ +/* eslint-disable no-underscore-dangle */ +/* eslint-disable no-console */ +/* eslint-disable no-unused-vars */ +/* eslint-disable camelcase */ +/* eslint-disable max-len */ + +import fs from 'fs/promises'; import axios from 'axios'; -import fs from 'fs'; -import { Drug } from 'tripsit_drug_db'; -import path from 'path'; import { GraphQLClient } from 'graphql-request'; -import { PwSubstance } from '../@types/psychonaut'; +import { + Dose as TsDose, + Drug, + Duration as TsDuration, +} from 'tripsit_drug_db'; +import path from 'path'; +import { + CbSubstance, + Strength, + Status, + Psychoactive, + Chemical, + Interaction, + Roa, + Period, + Dosage, + Duration, +} from '../@types/combined'; +import { + Dose as PwDose, + Duration as PwDuration, + PwSubstance, + Range, +} from '../@types/psychonaut'; import { Combos } from '../@types/tripsitCombos'; +// Limits API calls during development +const useCache = false; + const F = f(__filename); -const useCache = false; +const assetFolder = path.join(__dirname, '../assets'); + +const dataFolder = path.join(__dirname, '../assets/data'); -const dataDir = '../assets/data'; +// eslint-disable-next-line @typescript-eslint/no-explicit-any +async function saveData(data: any, fileName: string): Promise { + // log.debug(F, 'Starting save!'); -async function updateDb(): Promise { - // log.debug(F, 'Updating database'); + const filePath = path.join(dataFolder, `${fileName}.json`); - // log.debug(F, '[getTSData] Starting!'); + // log.debug(F, `Saving ${Object.values(data).length} data to ${filePath}!`); - const tsFilePath = path.join(__dirname, dataDir, 'drug_db_tripsit.json'); + await fs.writeFile(filePath, JSON.stringify(data, null, 2)); + return new Promise(resolve => { + resolve(filePath); + }); +} + +async function getTSData(): Promise<{ + [key: string]: Drug; +}> { // Check if the cache exists, and if so, use it. - if (useCache && fs.existsSync(tsFilePath)) { - const rawData = fs.readFileSync(tsFilePath); - const data = JSON.parse(rawData.toString()); - log.info(F, `Using ${Object.keys(data).length} drugs from TripSit Cache!`); - return; + if (useCache) { + try { + const rawData = fs.readFile(path.join(dataFolder, 'tripsitDB.json')); + log.debug(F, `Got ${Object.keys(rawData).length} drugs from TripSit Cache!`); + return JSON.parse(rawData.toString()); + } catch (err) { + log.error(F, `Error reading TripSit Cache: ${err}`); + } } - // log.debug(F, 'Getting data from TripSit API!'); + // log.debug(F, '[getTSData] Getting data from TripSit API!'); - const tsDrugResponse = await axios.get('https://raw.githubusercontent.com/TripSit/drugs/main/drugs.json'); - const tsDrugData = tsDrugResponse.data as { - [key: string]: Drug + const data = await axios.get('https://raw.githubusercontent.com/TripSit/drugs/main/drugs.json'); + const drugData = data.data as { + [key: string]: Drug; }; - log.info(F, `Got ${Object.values(tsDrugData).length} drugs from TripSit API!`); - - fs.writeFile(tsFilePath, JSON.stringify(tsDrugData, null, 2), err => { - if (err) { - log.debug(F, `${err}`); - } - }); + // log.info(F, `Got ${Object.values(drugData).length} drugs from TripSit API!`); - // log.debug(F, `Saved data to ${tsFilePath}!`); + await saveData(drugData, 'tripsitDB'); - const tsComboFilePath = path.join(__dirname, dataDir, 'combo.json'); + return drugData; +} +async function getTSCombos(): Promise { // Check if the cache exists, and if so, use it. - if (useCache && fs.existsSync(tsComboFilePath)) { - const rawData = fs.readFileSync(tsComboFilePath); - const tsComboData = JSON.parse(rawData.toString()); - log.info(F, `Using ${Object.keys(tsComboData).length} drugs from TripSit Cache!`); - return; - } - // log.debug(F, 'Getting data from TripSit API!'); + if (useCache) { + try { + const rawData = fs.readFile(path.join(dataFolder, 'tripsitCombos.json')); + log.debug(F, `Got ${Object.keys(rawData).length} drugs from TripSit Combo Cache!`); + return JSON.parse(rawData.toString()); + } catch (err) { + log.error(F, `Error reading TripSit Cache: ${err}`); + } + } const tsComboResponse = await axios.get('https://raw.githubusercontent.com/TripSit/drugs/main/combos.json'); const tsComboData = tsComboResponse.data as Combos; - log.info(F, `Got ${Object.values(tsComboData).length} combos from TripSit API!`); - - fs.writeFile(tsComboFilePath, JSON.stringify(tsComboData, null, 2), err => { - if (err) { - log.debug(F, `${err}`); - } - }); + // log.info(F, `Got ${Object.values(tsComboData).length} combos from TripSit API!`); - // log.debug(F, `Saved combo data to ${tsComboFilePath}!`); + await saveData(tsComboData, 'tripsitCombos'); - const pwFilePath = path.join(__dirname, dataDir, 'drug_db_psychonaut.json'); + return tsComboData; +} - if (useCache && fs.existsSync(pwFilePath)) { - const rawData = fs.readFileSync(pwFilePath); - const pwData = JSON.parse(rawData.toString()); - log.info(F, `Using ${Object.keys(pwData).length} drugs from Psychonaut Cache!`); +async function getPWData(): Promise { + // log.debug(F, 'Starting!'); + if (useCache) { + try { + const rawData = fs.readFile(path.join(dataFolder, 'psychonautDB.json')); + // log.debug(F, `Got ${Object.keys(rawData).length} drugs from Psychonaut Drug Cache!`); + return JSON.parse(rawData.toString()); + } catch (err) { + log.error(F, `Error reading TripSit Cache: ${err}`); + } } const pwResponse = await new GraphQLClient('https://api.psychonautwiki.org').request(` @@ -94,19 +138,597 @@ async function updateDb(): Promise { dangerousInteractions {name} roa {oral {name dose {units threshold heavy common {min max} light {min max} strong {min max}} duration { afterglow {min max units} comeup {min max units} duration {min max units} offset {min max units} onset {min max units} peak {min max units} total {min max units}} bioavailability {min max}} sublingual {name dose {units threshold heavy common {min max} light {min max} strong {min max}} duration { afterglow {min max units} comeup {min max units} duration {min max units} offset {min max units} onset {min max units} peak {min max units} total {min max units}} bioavailability {min max}} buccal {name dose {units threshold heavy common {min max} light {min max} strong {min max}} duration { afterglow {min max units} comeup {min max units} duration {min max units} offset {min max units} onset {min max units} peak {min max units} total {min max units}} bioavailability {min max}} insufflated {name dose {units threshold heavy common {min max} light {min max} strong {min max}} duration { afterglow {min max units} comeup {min max units} duration {min max units} offset {min max units} onset {min max units} peak {min max units} total {min max units}} bioavailability {min max}} rectal {name dose {units threshold heavy common {min max} light {min max} strong {min max}} duration { afterglow {min max units} comeup {min max units} duration {min max units} offset {min max units} onset {min max units} peak {min max units} total {min max units}} bioavailability {min max}} transdermal {name dose {units threshold heavy common {min max} light {min max} strong {min max}} duration { afterglow {min max units} comeup {min max units} duration {min max units} offset {min max units} onset {min max units} peak {min max units} total {min max units}} bioavailability {min max}} subcutaneous {name dose {units threshold heavy common {min max} light {min max} strong {min max}} duration { afterglow {min max units} comeup {min max units} duration {min max units} offset {min max units} onset {min max units} peak {min max units} total {min max units}} bioavailability {min max}} intramuscular {name dose {units threshold heavy common {min max} light {min max} strong {min max}} duration { afterglow {min max units} comeup {min max units} duration {min max units} offset {min max units} onset {min max units} peak {min max units} total {min max units}} bioavailability {min max}} intravenous {name dose {units threshold heavy common {min max} light {min max} strong {min max}} duration { afterglow {min max units} comeup {min max units} duration {min max units} offset {min max units} onset {min max units} peak {min max units} total {min max units}} bioavailability {min max}} smoked {name dose {units threshold heavy common {min max} light {min max} strong {min max}} duration { afterglow {min max units} comeup {min max units} duration {min max units} offset {min max units} onset {min max units} peak {min max units} total {min max units}} bioavailability {min max}}} } } - `) as any; + `) as { + substances: PwSubstance[]; + }; - const pwDrugData = pwResponse.substances as PwSubstance[]; + const { substances } = pwResponse; + + // log.info(F, `Got ${substances.length} drugs from Psychonaut API!`); + + await saveData(substances, 'psychonautDB'); + return substances; +} - log.info(F, `Using ${pwDrugData.length} drugs from Psychonaut API!`); +async function formatTsDuration( + durationData: TsDuration, + type: string, + combinedDrug: CbSubstance, +) { + const durationUnit = durationData._unit; + // Check if one of the keys is 'value' and if so, use that and assume "Oral" roa - fs.writeFile(pwFilePath, JSON.stringify(pwDrugData, null, 2), err => { - if (err) { - log.debug(F, `${err}`); + const periodName = type.slice(0, 1).toUpperCase() + type.slice(1) as Period; // Capitalize the first letter + + if (durationData.value) { + const roaEntry = combinedDrug.roas?.find(roa => roa.name === 'Oral') || {} as Roa; + + if (!roaEntry.duration) { + roaEntry.duration = []; + } + + // Check if the periodName already exists in the roaEntry duration list + if (roaEntry.duration.find(duration => duration.name === periodName)) { + return; + } + + roaEntry.duration.push({ + name: periodName, // Capitalize the first letter + value: `${durationData.value} ${durationUnit}`, + }); + } else { + Object.entries(durationData).forEach(([durationKey, durationValue]) => { + if (durationKey !== '_unit') { + const roaEntry = combinedDrug.roas?.find(roa => roa.name === durationKey) || {} as Roa; + + if (!roaEntry.duration) { + roaEntry.duration = []; + } + + // Check if the periodName already exists in the roaEntry duration list + if (roaEntry.duration.find(duration => duration.name === periodName)) { + return; + } + roaEntry.duration.push({ + name: periodName, + value: `${durationValue} ${durationUnit}`, + }); + } + }); + } +} + +async function combinePw( + pwData: PwSubstance[], + combinedDb: CbSubstance[], +) { + pwData.forEach(pwDrug => { + // Check if the drug already exists in the combinedDb + const combinedDrug = combinedDb.find(drug => drug.name.toLowerCase() === pwDrug.name.toLowerCase()) || {} as CbSubstance; + + combinedDrug.url = pwDrug.url; + // combinedDrug.experiencesUrl = // Tripsit only + combinedDrug.name = pwDrug.name; + combinedDrug.aliases = pwDrug.commonNames ?? undefined; + combinedDrug.aliasesStr = pwDrug.commonNames ? pwDrug.commonNames.join(', ') : undefined; + combinedDrug.summary = pwDrug.summary.length > 0 ? pwDrug.summary : undefined; + // combinedDrug.reagents = // Tripsit only + // combinedDrug.classes = pwDrug.class; + combinedDrug.toxicity = pwDrug.toxicity ?? undefined; + combinedDrug.addictionPotential = pwDrug.addictionPotential ?? undefined; + combinedDrug.tolerance = pwDrug.tolerance ?? undefined; + combinedDrug.crossTolerances = pwDrug.crossTolerances ?? undefined; + + if (pwDrug.roa) { + // combinedDrug.roas = []; + Object.entries(pwDrug.roa).forEach(([roaName, pwRoa]) => { + if (!pwRoa) return; + const roaEntry = { + name: roaName.slice(0, 1).toUpperCase() + roaName.slice(1), + } as { + name: string; + dosage?: Dosage[]; + duration?: Duration[]; + bioavailability?: string; + }; + + if (pwRoa.dose) { + roaEntry.dosage = []; + const { units } = pwRoa.dose; + + Object.entries(pwRoa.dose).forEach(([doseName, doseData]) => { + if (!doseData) return; + + // If the doseData is a string, it's the unit, don't do anything + if (typeof doseData === 'string') { + return; + } + + let doseString = ''; + + if ((doseData as Range).min) { + const { min } = doseData as Range; + const { max } = doseData as Range; + doseString = `${min}-${max} ${units}`; + } else { + doseString = `${doseData} ${units}`; + } + + const doseEntry = { + name: doseName.slice(0, 1).toUpperCase() + doseName.slice(1), + value: doseString, + } as Dosage; + + roaEntry.dosage?.push(doseEntry); + }); + + if (pwRoa.duration) { + roaEntry.duration = []; + Object.keys(pwRoa.duration).forEach(durationName => { + const duration = (pwRoa.duration as PwDuration)[durationName as keyof typeof pwRoa.duration]; + if (!duration) return; + if (!duration.min) return; + const durationMax = duration.max ? `-${duration.max}` : null; + + const durationEntry = { + name: durationName.slice(0, 1).toUpperCase() + durationName.slice(1) as Period, + value: `${duration.min}${durationMax} ${duration.units}`, + } as Duration; + + roaEntry.duration?.push(durationEntry); + }); + } + + if (pwRoa.bioavailability) { + roaEntry.bioavailability = pwRoa.bioavailability.max ? pwRoa.bioavailability.max.toString() : ''; + roaEntry.bioavailability = `${roaEntry.bioavailability}%`; + } + + if (roaEntry.dosage && roaEntry.dosage.length > 0 && roaEntry.duration && roaEntry.duration.length > 0) { + if (!combinedDrug.roas) { + combinedDrug.roas = [] as Roa[]; + } + combinedDrug.roas.push(roaEntry); + } + } + }); } + + if (pwDrug.uncertainInteractions || pwDrug.unsafeInteractions || pwDrug.dangerousInteractions) { + combinedDrug.interactions = []; + if (pwDrug.uncertainInteractions) { + pwDrug.uncertainInteractions.forEach(interaction => { + const interactionEntry = { + status: 'Caution' as Status, + name: interaction.name, + }; + combinedDrug.interactions?.push(interactionEntry); + }); + } + if (pwDrug.unsafeInteractions) { + pwDrug.unsafeInteractions.forEach(interaction => { + const interactionEntry = { + status: 'Unsafe' as Status, + name: interaction.name, + }; + combinedDrug.interactions?.push(interactionEntry); + }); + } + if (pwDrug.dangerousInteractions) { + pwDrug.dangerousInteractions.forEach(interaction => { + const interactionEntry = { + status: 'Dangerous' as Status, + name: interaction.name, + }; + combinedDrug.interactions?.push(interactionEntry); + }); + } + } + + if (combinedDrug.roas) { + combinedDrug.roas.forEach(roa => { + if (roa.dosage) { + // This is the order we want them to be in + const strengths = [ + 'Threshold', + 'Light', + 'Common', + 'Strong', + 'Heavy', + 'Dangerous', + 'Fatal', + ]; + + // Sort the dosage array by name + roa.dosage.sort( + (a, b) => strengths.indexOf(a.name) - strengths.indexOf(b.name), + ); + } + if (roa.duration) { + // This is the order we want them to be in + const periods = [ + 'Comeup', + 'Onset', + 'Duration', + 'Peak', + 'Offset', + 'Afterglow', + 'After Effects', + 'Total', + ]; + + // Sort the duration array by name + roa.duration.sort( + (a, b) => periods.indexOf(a.name) - periods.indexOf(b.name), + ); + } + }); + } + combinedDb.push(combinedDrug); }); +} + +async function combineTs( + tsData: { + [key: string]: Drug; + }, + combinedDb: CbSubstance[], +) { + Object.keys(tsData).forEach(key => { + const tsDrug = tsData[key as keyof typeof tsData] as Drug; + + // Check if the drug already exists in the combinedDb + let combinedDrug = combinedDb.find(drug => drug.name.toLowerCase() === tsDrug.name.toLowerCase()); + + // if (combinedDrug) { + // log.debug(F, `[combineData] ${tsDrug.name} already exists in the combined DB!`); + // } + + if (!combinedDrug) { + // log.debug(F, `(${combinedDbLength}) ${tsDrug.name} does not exist in the combined DB!`); + combinedDb.push({ + name: tsDrug.name, + url: `https://wiki.tripsit.me/wiki/${tsDrug.name}`, + } as CbSubstance); + + combinedDrug = combinedDb.find(drug => drug.name.toLowerCase() === tsDrug.name.toLowerCase()) as CbSubstance; + } + + if (tsDrug.links && tsDrug.links.experiences) { + combinedDrug.experiencesUrl = tsDrug.links.experiences; + } + + // combinedDrug.name = tsDrug.pretty_name; + + if (tsDrug.aliases) { + // Go through combinedDrug.aliases and add any aliases that don't already exist + if (!combinedDrug.aliases) { + combinedDrug.aliases = []; + } + tsDrug.aliases.forEach(alias => { + if (!combinedDrug?.aliases?.includes(alias)) { + combinedDrug?.aliases?.push(alias); + } + }); + + if (!combinedDrug.aliasesStr) { + combinedDrug.aliasesStr = tsDrug.aliases.join(', '); + } + tsDrug.aliases.forEach(alias => { + if (!combinedDrug?.aliasesStr?.includes(alias)) { + (combinedDrug as CbSubstance).aliasesStr = `${(combinedDrug as CbSubstance).aliasesStr}, ${alias}`; + } + }); + } + + if (tsDrug.properties && tsDrug.properties.summary) { + combinedDrug.summary = tsDrug.properties.summary; + } + + if (tsDrug.properties && tsDrug.properties['test-kits']) { + combinedDrug.reagents = tsDrug.properties['test-kits']; + } + + if (tsDrug.categories) { + const psychoactiveNames = { + Antidepressant: 'Antidepressant', + Antipsychotic: 'Antipsychotic', + 'Atypical neuroleptic': 'Atypical neuroleptic', + Cannabinoid: 'Cannabinoid', + Deliriant: 'Deliriant', + Depressant: 'Depressant', + Dissociative: 'Dissociative', + Empathogen: 'Empathogen', + Entactogen: 'Entactogen', + Eugeroic: 'Eugeroic', + 'Habit Forming': 'Habit Forming', + Hallucinogen: 'Hallucinogen', + Hypnotic: 'Hypnotic', + Inactive: 'Inactive', + Nootropic: 'Nootropic', + Oneirogen: 'Oneirogen', + Opioid: 'Opioid', + Psychedelic: 'Psychedelic', + 'Research Chemical': 'Research Chemical', + SSRI: 'SSRI', + Stimulant: 'Stimulant', + Supplement: 'Supplement', + Tentative: 'Tentative', + }; + + const chemicalNames = { + '4-oxazolidinone': '4-oxazolidinone', + 'Amino acid': 'Amino acid', + 'Amino acid analogue': 'Amino acid analogue', + 'Ammonium salt': 'Ammonium salt', + Amine: 'Amine', + Aminoindane: 'Aminoindane', + Amphetamine: 'Amphetamine', + Adamantane: 'Adamantane', + Alcohol: 'Alcohol', + Alkanediol: 'Alkanediol', + Anilidopiperidine: 'Anilidopiperidine', + Arylcyclohexylamine: 'Arylcyclohexylamine', + Barbiturate: 'Barbiturate', + Benzamide: 'Benzamide', + Benzazepine: 'Benzazepine', + Benzhydryl: 'Benzhydryl', + Benzisoxazole: 'Benzisoxazole', + Benzodiazepine: 'Benzodiazepine', + Butyrophenone: 'Butyrophenone', + 'Butyric acid': 'Butyric acid', + Cannabinoid: 'Cannabinoid', + Carbamate: 'Carbamate', + Common: 'Common', + 'Choline derivative': 'Choline derivative', + Cysteine: 'Cysteine', + Cycloalkylamine: 'Cycloalkylamine', + Cyclopyrrolone: 'Cyclopyrrolone', + Diarylethylamine: 'Diarylethylamine', + Diol: 'Diol', + Diphenylpropylamine: 'Diphenylpropylamine', + Dibenzothiazepine: 'Dibenzothiazepine', + 'Ethanolamine#1#': 'Ethanolamine#1#', + Gabapentinoid: 'Gabapentinoid', + Imidazoline: 'Imidazoline', + Imidazopyridine: 'Imidazopyridine', + Indazole: 'Indazole', + Indazolecarboxamide: 'Indazolecarboxamide', + Indolecarboxamide: 'Indolecarboxamide', + Indolecarboxylate: 'Indolecarboxylate', + 'Indole alkaloid': 'Indole alkaloid', + 'Indole cannabinoid': 'Indole cannabinoid', + Khat: 'Khat#1#', + Lactone: 'Lactone', + Lysergamide: 'Lysergamide', + MDxx: 'MDxx', + Naphthoylindole: 'Naphthoylindole', + Naphthoylindazole: 'Naphthoylindazole', + 'Nitrogenous organic acid': 'Nitrogenous organic acid', + Peptide: 'Peptide', + Phenothiazine: 'Phenothiazine', + Phenylmorpholine: 'Phenylmorpholine', + Phenylpropene: 'Phenylpropene', + Phenylpropylamine: 'Phenylpropylamine', + Piperazinoazepine: 'Piperazinoazepine', + Popper: 'Popper', + Pyridine: 'Pyridine', + Quinazolinone: 'Quinazolinone', + Racetam: 'Racetam', + Salvinorin: 'Salvinorin', + 'Substituted aminorexe': 'Substituted aminorexe', + 'Substituted amphetamine': 'Substituted amphetamine', + 'Substituted benzofuran': 'Substituted benzofuran', + 'Substituted cathinone': 'Substituted cathinone', + 'Substituted morphinan': 'Substituted morphinan', + 'Substituted phenethylamine': 'Substituted phenethylamine', + 'Substituted phenidate': 'Substituted phenidate', + 'Substituted piperazine': 'Substituted piperazine', + 'Substituted piperidine': 'Substituted piperidine', + 'Substituted pyrrolidine': 'Substituted pyrrolidine', + 'Substituted tropane': 'Substituted tropane', + 'Substituted tryptamine': 'Substituted tryptamine', + Terpenoid: 'Terpenoid', + Tetrahydroisoxazole: 'Tetrahydroisoxazole', + Tetrahydroisoxazolopyridine: 'Tetrahydroisoxazolopyridine', + Thienodiazepine: 'Thienodiazepine', + Thiophene: 'Thiophene', + 'Tricyclic antidepressant': 'Tricyclic antidepressant', + 'Purine alkaloid': 'Purine alkaloid', + Xanthine: 'Xanthine', + }; + + const categoryMap = { + barbiturate: 'Barbiturate', + benzodiazepine: 'Benzodiazepine', + common: 'Common', + deliriant: 'Deliriant', + depressant: 'Depressant', + dissociative: 'Dissociative', + empathogen: 'Empathogen', + 'habit-forming': 'Habit Forming', + inactive: 'Inactive', + nootropic: 'Nootropic', + opioid: 'Opioid', + psychedelic: 'Psychedelic', + 'research-chemical': 'Research Chemical', + ssri: 'SSRI', + stimulant: 'Stimulant', + supplement: 'Supplement', + tentative: 'Tentative', + }; + + const psychoactiveList = [] as Psychoactive[]; + const chemicalList = [] as Chemical[]; - // log.debug(F, `Saved data to ${pwFilePath}!`); + tsDrug.categories.forEach(category => { + const mappedCategory = categoryMap[category]; + + const chemFound = Object.keys(chemicalNames).find(name => name.toLowerCase() === mappedCategory.toLowerCase()); + const psychoactiveFound = Object.keys(psychoactiveNames).find(name => name.toLowerCase() === mappedCategory.toLowerCase()); + if (chemFound) { + chemicalList.push(chemFound as Chemical); + } else if (psychoactiveFound) { + psychoactiveList.push(psychoactiveFound as Psychoactive); + } else { + log.info(F, `[combineTs] ${tsDrug.name} has an unrecognized category: ${mappedCategory}`); + log.info(F, `Originally ${category} > ${mappedCategory}`); + } + }); + + combinedDrug.classes = { + psychoactive: psychoactiveList.sort() as [Psychoactive], + chemical: chemicalList.sort() as [Chemical], + }; + } + + // combinedDrug.toxicity = // PW only + // combinedDrug.addictionPotential = // PW only + // combinedDrug.tolerance = // PW only - ts has this filed but it's not populated often + // combinedDrug.crossTolerances = // PW only + + // Roas + if (tsDrug.formatted_dose + || tsDrug.formatted_duration + || tsDrug.formatted_onset + || tsDrug.formatted_aftereffects + || tsDrug.properties.bioavailability + ) { + if (tsDrug.formatted_dose) { + const dose = tsDrug.formatted_dose as TsDose; + Object.entries(dose).forEach(([doseRoa, dosage]) => { + if (!combinedDrug) return; + const roaEntry = combinedDrug.roas?.find(roa => roa.name === doseRoa) || {} as Roa; + roaEntry.name = doseRoa; + let roaNote = tsDrug.dose_note; + + // This is the order we want them to be in + const strengths = [ + 'Threshold', + 'Light', + 'Common', + 'Strong', + 'Heavy', + 'Dangerous', + 'Fatal', + ]; + + // Sort the keys according to that order + const sortedKeys = Object.keys(dosage).sort( + (a, b) => strengths.indexOf(a) - strengths.indexOf(b), + ); + + // For each strength in the ROA + sortedKeys.forEach(strength => { + // Check if the strength already exists from PW and if so, skip it + if (roaEntry.dosage?.find(doseVal => doseVal.name === strength as Strength)) { + return; + } + + const strengthData = dosage[strength as keyof typeof dosage] as string; + + if (strength.toLowerCase() === 'note') { + roaNote = strengthData; + } else { + // This essentially looks for "(any digit) (optional dash) (any digit) (optional unit)" + const regex = /(\d+(?:\.\d+)?)(?:-(\d+(?:\.\d+)?))?([a-zA-Z]+)?/; + const match = RegExp(regex).exec(strengthData); + + // This is mostly for type-safety + if (match) { + // The minimum number is the first number to appear + const strengthMinNumber = parseFloat(match[1]); + + // The max number m ay not appear at all + const strengthMaxNumber = match[2] + ? parseFloat(match[2]) + : null; + + if (!roaEntry.dosage) { + roaEntry.dosage = []; + } + + const roaUnit = match[3] ? match[3] : ''; + const maxString = strengthMaxNumber ? `-${strengthMaxNumber}` : ''; + + // Check if the strength is included as a Name value + if (strengths.includes(strength as Strength)) { + roaEntry.dosage.push({ + name: strength.slice(0, 1).toUpperCase() + strength.slice(1) as Strength, + value: `${strengthMinNumber}${maxString} ${roaUnit}`, + note: roaNote, + }); + } else { + log.info(F, `[combineTs] ${tsDrug.name} has an unrecognized strength: ${strength}`); + } + } + } + }); + if (!combinedDrug.roas) { + combinedDrug.roas = [] as Roa[]; + } + combinedDrug.roas.push(roaEntry); + }); + } + + if (tsDrug.formatted_onset) { + formatTsDuration(tsDrug.formatted_onset as TsDuration, 'Onset', combinedDrug); + } + if (tsDrug.formatted_duration) { + formatTsDuration(tsDrug.formatted_duration as TsDuration, 'Duration', combinedDrug); + } + if (tsDrug.formatted_aftereffects) { + formatTsDuration(tsDrug.formatted_aftereffects as TsDuration, 'After Effects', combinedDrug); + } + } + + if (tsDrug.combos) { + combinedDrug.interactions = []; + Object.keys(tsDrug.combos).forEach(comboName => { + if (!tsDrug.combos) return; + const combo = tsDrug.combos[comboName as keyof typeof tsDrug.combos]; + const interactionEntry = { + status: combo.status as Status, + name: comboName, + } as Interaction; + + if (combo.note) { + interactionEntry.note = combo.note; + } + + // if (combo.source) { + // interactionEntry.source = combo.source; + // } + + if (!combinedDrug) return; + combinedDrug.interactions?.push(interactionEntry); + }); + } + }); } -export default updateDb; +export default async function updateDrugDb():Promise { + const combinedDb = [] as CbSubstance[]; + // Check if the assets folder exists and if not, create it + // if (!fs.existsSync(assetFolder)) { + // fs.mkdirSync(assetFolder); + // } + + // // Check if the data folder exists and if not, create it + // if (!fs.existsSync(dataFolder)) { + // fs.mkdirSync(dataFolder); + // } + + await getTSCombos(); + const pwData = await getPWData(); + // log.debug(F, `Got ${pwData.length} drugs from Psychonaut Wiki`); + await combinePw(pwData, combinedDb); + // const pwDrugs = combinedDb.length; + // log.debug(F, `Added ${combinedDb.length} drugs to the combined DB!`); + const tsData = await getTSData(); + // log.debug(F, `Got ${Object.keys(tsData).length} drugs from TripSit`); + await combineTs(tsData, combinedDb); + // log.debug(F, `Added ${combinedDb.length - pwDrugs} drugs to the combined DB (and merged the rest) !`); + const filePath = await saveData(combinedDb, 'combinedDB'); + log.info(F, `Updated combinedDB of ${combinedDb.length} drugs to ${filePath}`); +} diff --git a/src/start.ts b/src/start.ts index 09c03ef0b..dc18d54c6 100755 --- a/src/start.ts +++ b/src/start.ts @@ -1,3 +1,4 @@ +/* eslint-disable @typescript-eslint/no-unused-vars */ import { getVoiceConnection } from '@discordjs/voice'; // import { stripIndents } from 'common-tags'; import sourceMap from 'source-map-support'; // eslint-disable-line @@ -41,13 +42,14 @@ const F = f(__filename); async function start() { log.info(F, 'Initializing service!'); - validateEnv('SERVICES'); - api(); - updateDb(); - if (env.DISCORD_CLIENT_TOKEN && validateEnv('DISCORD')) await discordConnect(); - // if (env.MATRIX_ACCESS_TOKEN && validateEnv('MATRIX') && env.NODE_ENV !== 'production') await startMatrix(); - // if (env.IRC_PASSWORD && validateEnv('IRC') && env.NODE_ENV !== 'production') ircConnect(); - // if (env.TELEGRAM_TOKEN && validateEnv('TELEGRAM')) await telegramConnect(); + if (validateEnv('SERVICES')) { + api(); + await updateDb(); + if (env.DISCORD_CLIENT_TOKEN && await validateEnv('DISCORD')) await discordConnect(); + // if (env.MATRIX_ACCESS_TOKEN && validateEnv( 'MATRIX') && env.NODE_ENV !== 'production') await startMatrix(); + // if (env.IRC_PASSWORD && validateEnv('IRC') && env.NODE_ENV !== 'production') ircConnect(); + // if (env.TELEGRAM_TOKEN && validateEnv('TELEGRAM')) await telegramConnect(); + } } start();