From 4a0228847f33aac4f57d889849736d39f0ee20e9 Mon Sep 17 00:00:00 2001 From: Berenger DALLE-CORT <111717478+bearmit@users.noreply.github.com> Date: Fri, 14 Apr 2023 17:34:42 -0400 Subject: [PATCH] Fix/typescript (#11) * feat(afrl): add typescript to transform a csv * fix(typescript): restore afrl project * doc(typescript): index.md and readme.md * fix(_config.yml): exclude node_modules * feat(typescript/afrl): add short description * changed AFRL TypeScript page wording --------- Co-authored-by: nh916 --- .idea/.gitignore | 14 - _config.yml | 4 +- scripts/package-lock.json | 6 + .../{typescript_scripts/AFRL => }/.gitignore | 0 .../{typescript_scripts/AFRL => }/.prettierrc | 0 scripts/typescript/README.md | 20 + scripts/typescript/index.md | 6 +- .../AFRL => }/package-lock.json | 82 +- .../AFRL => }/package.json | 7 +- scripts/typescript/src/afrl/README.md | 31 + .../typescript/src/afrl/afrl-csv-to-json.ts | 613 ++ ..._linear_polymer_3pdb_data_csv_4_5_2023.csv | 6525 +++++++++++++++++ ..._linear_polymer_3pdb_data_csv_4_5_2023.zip | Bin 0 -> 164011 bytes scripts/typescript/src/afrl/index.md | 16 + scripts/typescript/src/afrl/index.ts | 48 + scripts/typescript/src/afrl/types.ts | 27 + .../AFRL => }/src/types/cript/IAlgorithm.ts | 0 .../AFRL => }/src/types/cript/ICitation.ts | 0 .../AFRL => }/src/types/cript/ICollection..ts | 0 .../AFRL => }/src/types/cript/IComputation.ts | 0 .../src/types/cript/IComputationProcess.ts | 0 .../AFRL => }/src/types/cript/ICondition.d.ts | 0 .../AFRL => }/src/types/cript/IData.ts | 0 .../AFRL => }/src/types/cript/IEquipment.ts | 0 .../AFRL => }/src/types/cript/IExperiment.ts | 0 .../AFRL => }/src/types/cript/IFile.ts | 0 .../AFRL => }/src/types/cript/IIdentifier.ts | 0 .../AFRL => }/src/types/cript/IIngredient.ts | 0 .../AFRL => }/src/types/cript/IInventory.ts | 0 .../AFRL => }/src/types/cript/IMaterial.ts | 0 .../AFRL => }/src/types/cript/IParameter.ts | 0 .../AFRL => }/src/types/cript/IProcess.ts | 0 .../AFRL => }/src/types/cript/IProject.ts | 0 .../AFRL => }/src/types/cript/IProperty.ts | 0 .../AFRL => }/src/types/cript/IQuantity.ts | 0 .../AFRL => }/src/types/cript/IReference.ts | 0 .../AFRL => }/src/types/cript/ISoftware.ts | 0 .../src/types/cript/ISoftwareConfiguration.ts | 0 .../AFRL => }/src/types/cript/IUser.ts | 0 .../AFRL => }/src/types/cript/IVocab.ts | 0 .../AFRL => }/src/types/cript/index.ts | 2 - .../src/utils => src/utilities}/cript-json.ts | 0 scripts/typescript/src/utilities/index.ts | 3 + .../utilities/output_dir_path.ts} | 2 +- .../utilities/write_json_helper.ts} | 4 +- .../AFRL => }/tsconfig.json | 11 +- .../typescript_scripts/AFRL/README.md | 18 - scripts/typescript/typescript_scripts/afrl.md | 17 - 48 files changed, 7391 insertions(+), 65 deletions(-) delete mode 100644 .idea/.gitignore create mode 100644 scripts/package-lock.json rename scripts/typescript/{typescript_scripts/AFRL => }/.gitignore (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/.prettierrc (100%) create mode 100644 scripts/typescript/README.md rename scripts/typescript/{typescript_scripts/AFRL => }/package-lock.json (84%) rename scripts/typescript/{typescript_scripts/AFRL => }/package.json (73%) create mode 100644 scripts/typescript/src/afrl/README.md create mode 100644 scripts/typescript/src/afrl/afrl-csv-to-json.ts create mode 100644 scripts/typescript/src/afrl/data/AFRL_linear_polymer_3pdb_data_csv_4_5_2023.csv create mode 100644 scripts/typescript/src/afrl/data/AFRL_linear_polymer_3pdb_data_csv_4_5_2023.zip create mode 100644 scripts/typescript/src/afrl/index.md create mode 100644 scripts/typescript/src/afrl/index.ts create mode 100644 scripts/typescript/src/afrl/types.ts rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/IAlgorithm.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/ICitation.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/ICollection..ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/IComputation.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/IComputationProcess.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/ICondition.d.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/IData.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/IEquipment.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/IExperiment.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/IFile.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/IIdentifier.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/IIngredient.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/IInventory.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/IMaterial.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/IParameter.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/IProcess.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/IProject.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/IProperty.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/IQuantity.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/IReference.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/ISoftware.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/ISoftwareConfiguration.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/IUser.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/IVocab.ts (100%) rename scripts/typescript/{typescript_scripts/AFRL => }/src/types/cript/index.ts (97%) rename scripts/typescript/{typescript_scripts/AFRL/src/utils => src/utilities}/cript-json.ts (100%) create mode 100644 scripts/typescript/src/utilities/index.ts rename scripts/typescript/{typescript_scripts/AFRL/src/utils/path.ts => src/utilities/output_dir_path.ts} (73%) rename scripts/typescript/{typescript_scripts/AFRL/src/utils/file.ts => src/utilities/write_json_helper.ts} (89%) rename scripts/typescript/{typescript_scripts/AFRL => }/tsconfig.json (96%) delete mode 100644 scripts/typescript/typescript_scripts/AFRL/README.md delete mode 100644 scripts/typescript/typescript_scripts/afrl.md diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index f45d168..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,14 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml - -# ignore Jetbrains IDE configuration -.idea/ - -# ignore vs code configurations -.vscode/ diff --git a/_config.yml b/_config.yml index a977930..8510fc6 100644 --- a/_config.yml +++ b/_config.yml @@ -39,13 +39,13 @@ plugins: # Excluded items can be processed by explicitly listing the directories or # their entries' file path in the `include:` list. # -# exclude: +exclude: + - scripts/typescript/node_modules # - .sass-cache/ # - .jekyll-cache/ # - gemfiles/ # - Gemfile # - Gemfile.lock -# - node_modules/ # - vendor/bundle/ # - vendor/cache/ # - vendor/gems/ diff --git a/scripts/package-lock.json b/scripts/package-lock.json new file mode 100644 index 0000000..d62eadc --- /dev/null +++ b/scripts/package-lock.json @@ -0,0 +1,6 @@ +{ + "name": "scripts", + "lockfileVersion": 2, + "requires": true, + "packages": {} +} diff --git a/scripts/typescript/typescript_scripts/AFRL/.gitignore b/scripts/typescript/.gitignore similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/.gitignore rename to scripts/typescript/.gitignore diff --git a/scripts/typescript/typescript_scripts/AFRL/.prettierrc b/scripts/typescript/.prettierrc similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/.prettierrc rename to scripts/typescript/.prettierrc diff --git a/scripts/typescript/README.md b/scripts/typescript/README.md new file mode 100644 index 0000000..2afa3ac --- /dev/null +++ b/scripts/typescript/README.md @@ -0,0 +1,20 @@ +--- +layout: default +title: AFRL README.md +published: false +--- + +# TypeScript ingestion scripts for CRIPT + +This folder is a unique npm package shared between all ingestion scripts. Browse the `./src` folder. +# `npm i` + +Will install this npm package and dependencies. + +# This project contains several ingestion scripts + +Note: scripts are still WIP. + +- `afrl`: see [readme](src/afrl/README.md) +- `rcbc`: see [readme](src/rcbc/README.md) + diff --git a/scripts/typescript/index.md b/scripts/typescript/index.md index 19810c9..f9ad636 100644 --- a/scripts/typescript/index.md +++ b/scripts/typescript/index.md @@ -9,6 +9,8 @@ has_children: true -# TypeScript CRIPT Scripts +# TS CRIPT Scripts + +TypeScript script examples to prepare ingestion into [CRIPT](https://criptapp.org/). + -Example TypeScript CRIPT Scripts built with the used to upload polymer data to [CRIPT](https://criptapp.org/) diff --git a/scripts/typescript/typescript_scripts/AFRL/package-lock.json b/scripts/typescript/package-lock.json similarity index 84% rename from scripts/typescript/typescript_scripts/AFRL/package-lock.json rename to scripts/typescript/package-lock.json index 3684648..64e4813 100644 --- a/scripts/typescript/typescript_scripts/AFRL/package-lock.json +++ b/scripts/typescript/package-lock.json @@ -1,17 +1,20 @@ { - "name": "afrl-transformation", + "name": "cript-typescript", "version": "1.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { - "name": "afrl-transformation", + "name": "cript-typescript", "version": "1.0.0", "license": "MIT", "dependencies": { "csvtojson": "^2.0.10", "ts-node": "^10.9.1", "typescript": "^5.0.3" + }, + "devDependencies": { + "tsconfig-paths": "^4.2.0" } }, "node_modules/@cspotcode/source-map-support": { @@ -136,6 +139,18 @@ "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==" }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", @@ -146,6 +161,15 @@ "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/strip-bom": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", @@ -199,6 +223,29 @@ } } }, + "node_modules/tsconfig-paths": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", + "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", + "dev": true, + "dependencies": { + "json5": "^2.2.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/typescript": { "version": "5.0.3", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.3.tgz", @@ -324,6 +371,12 @@ "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==" }, + "json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true + }, "lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", @@ -334,6 +387,12 @@ "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true + }, "strip-bom": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", @@ -362,6 +421,25 @@ "yn": "3.1.1" } }, + "tsconfig-paths": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", + "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", + "dev": true, + "requires": { + "json5": "^2.2.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true + } + } + }, "typescript": { "version": "5.0.3", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.3.tgz", diff --git a/scripts/typescript/typescript_scripts/AFRL/package.json b/scripts/typescript/package.json similarity index 73% rename from scripts/typescript/typescript_scripts/AFRL/package.json rename to scripts/typescript/package.json index 00dcf68..a961489 100644 --- a/scripts/typescript/typescript_scripts/AFRL/package.json +++ b/scripts/typescript/package.json @@ -4,8 +4,8 @@ "description": "Set of typescript code to convert raw data (*.csv, *.ts) to CRIPT *.json format", "main": "index.js", "scripts": { - "afrl": "npx ts-node src/afrl/index.ts", - "rcbc": "npx ts-node src/rcbc/index.ts", + "afrl": "npx ts-node ./src/afrl/index.ts", + "rcbc": "npx ts-node ./src/rcbc/index.ts", "test": "echo \"Error: no test specified\" && exit 1" }, "author": "Bérenger Dalle-Cort, CRIPT, MIT", @@ -14,5 +14,8 @@ "csvtojson": "^2.0.10", "ts-node": "^10.9.1", "typescript": "^5.0.3" + }, + "devDependencies": { + "tsconfig-paths": "^4.2.0" } } diff --git a/scripts/typescript/src/afrl/README.md b/scripts/typescript/src/afrl/README.md new file mode 100644 index 0000000..c91c345 --- /dev/null +++ b/scripts/typescript/src/afrl/README.md @@ -0,0 +1,31 @@ +# AFRL CSV to JSON +## How to use? + +from project root, run `npm run afrl` + +Will run the AFRL CSV to JSON script and produce multiple JSON in the `out/afrl` folder from the CSV file present in `src/afrl/data` folder. + +After a run, check the *.errors.json file to be sure you do not skip important data. +Then, you can upload the data to CRIPT using curl: + +``` +curl -X POST -H "Content-Type: application/json" -d "@./out/afrl/afrl-transformed.min.json" /project/ --header "authorization: Bearer " +``` + +## How it works? + +Step by step of what the script does on a macro level (for more details look at the source code). + +- Load the data (`src/data/*.csv`) as an `Array`. +- For each CSV line (or object), we create 3 `Material`s (a mixture, a solvent, and a polymer) with some `Property`, `Condition` and `Citation` (`doi` is stored in a `Reference`) on it. +- Each type of material is registered in a dedicated `Inventory`. +- Inventories are store in a single `Collection` which is in a single `Project`. +- The `Project` is serialized as a single JSON (in two version, one minified and an other human-readable). +- If some data cannot be transformed, logs are added to the *.errors.json file. + + +## History + +This script was using Python originally (see [here](../../../python_sdk_scripts/AFRL/)), last commit was from December 2022. I figured out the python version was existing **after** starting this task, that's why I started using typescript. However, I couldn't use Python (no much experience and culture) and the PythonSDK (still in development), so I decided to continue this way. + +Berenger. \ No newline at end of file diff --git a/scripts/typescript/src/afrl/afrl-csv-to-json.ts b/scripts/typescript/src/afrl/afrl-csv-to-json.ts new file mode 100644 index 0000000..9dbef43 --- /dev/null +++ b/scripts/typescript/src/afrl/afrl-csv-to-json.ts @@ -0,0 +1,613 @@ +import { AFRLData } from "./types" +import { ICitation, ICollection, ICondition, IInventory, IMaterial, IProject, IProperty, IReference } from "../types/cript" +import csvtojson from "csvtojson"; + +/** + * This script is a typescript port of @see https://github.com/C-Accel-CRIPT/criptscripts/tree/master/scripts/python_sdk_scripts/AFRL + * The main difference is the source data is now read from the original CSV and not a preprocessed *.js. + */ + +export type Config = { + // Destination project's name + project_name: string; + // Destination inventory's basename + inventory_basename: string; +} + +export class AFRLtoJSON { + + // declare few maps to retreive data easily + + private readonly citations = new Map(); + private readonly solvents = new Map(); + private readonly polymers = new Map(); + private readonly mixtures = new Map(); + + // The project data will be stored in + private project: IProject; + + // The collection data will be stored in + private collection: ICollection; + + // The inventories data will be stored in + private inventory_solvents: IInventory; + private inventory_polymers: IInventory; + private inventory_mixtures: IInventory; + + private errors: Array = []; + + constructor(config: Config = AFRLtoJSON.load_config()) { + + // Create inventories + + this.inventory_solvents = { + name: `${config.inventory_basename} (solvents)`, + material: [], + node: ['Inventory'], + notes: `Gather all the solvents extracted from AFRL dataset`, + } as any; + + this.inventory_polymers = { + name: `${config.inventory_basename} (polymers)`, + material: [], + node: ['Inventory'], + notes: `Gather all the polymers extracted from AFRL dataset`, + } as any; + + this.inventory_mixtures = { + name: `${config.inventory_basename} (mixtures)`, + material: [], + node: ['Inventory'], + notes: `Gather all the mixtures extracted from AFRL dataset`, + } as any; + + // Create collection with the inventories in it + this.collection = { + name: "afrl", // will be overriden by user config + notes: `Gather the 3 inventories extracted from AFRL dataset`, + node: ['Collection'], + inventory: [ + this.inventory_solvents, + this.inventory_polymers, + this.inventory_mixtures + ] as IInventory[] + } as ICollection; + + // Create a project with the collection in it + this.project = { + name: config.project_name, + node: ['Project'], + collection: [this.collection], + material: new Array() + } as IProject; + + } + + get_errors(): any { + return [...this.errors]; + } + + private get_citation(row: AFRLData): ICitation | undefined { + + if(row.reference === undefined) { + this.record_error(`Unable to get)citation for row ${row.csv_raw_index}`) + return undefined; + } + // Check if citation was already created + const existing_citation = this.citations.get(row.reference); + if (existing_citation) { + console.log(`-- Found existing reference: ${existing_citation.reference.title}`) + return existing_citation; + } + + // Create citation + const citation: ICitation = { + node: ['Citation'], + reference: { + title: row.reference, + type: 'database', // raw string, should be ideally picked from vocab + node: ['Reference'], + } as IReference, + type: 'reference', + } as ICitation; + + // get DOI and authors + const DOI_DOT_ORG = "doi.org/"; + if (row.reference.includes(DOI_DOT_ORG)) { + citation.reference.doi = row.reference.replace(DOI_DOT_ORG, ""); + } else { + // Putting the whole text as an author + citation.reference.author = [row.reference]; + + // The following does not work, but a better version can work. + // I am unsure the reference is always formatted the same way. + // citation.reference.author = row.reference.split(',') // Authors are usually splitted by comas. + // .map( a => a.trim() ); // remove empty pre/post spaces + } + + // Store in hashmap + this.citations.set(row.reference, citation); + + return citation; + + } + + private get_solvent(row: AFRLData): IMaterial { + + const cas = row.solvent_CAS.trim(); // will be used as key in the hashmap this.solvent + + // Try to reuse an existing solvent + const existing_solvent = this.solvents.get(cas); + if (existing_solvent) { + console.log(`-- Found existing solvent: ${existing_solvent.name} (cas: ${cas})`) + return existing_solvent + } + + // Pull solvent from server + // Blocker: the script assumes the solvent already exists on the backend, but we probably don't have it. + /* + try { + solvent = api.get( + cript.Material, + { + "identifiers": [ + { + "key": "cas", + "value": cas + } + ], + "project": cript_project.uid + }, + max_level=0 + ) + print(f"ROW {index + 2} -- Found existing solvent: {solvent.name}") + solvents[cas] = solvent + return solvent + except (cript.exceptions.APIGetError): + return None + */ + + // Temporary solution: we create a new Solvent... + const solvent: IMaterial = { + node: ['Material'], + name: row.solvent, + cas, + } as IMaterial; + this.record_error(`Search material from "cas" is not implemented, creating a local solvent for ${JSON.stringify(solvent)}`) + + // Store in hashmap + this.solvents.set(cas, solvent); + + return solvent; + } + + private get_polymer(row: AFRLData, citation: ICitation[] = []): IMaterial { + + const polymer_id = row.polymer_id; + const name = row.polymer; + const unique_name = `${name}_${polymer_id}`; + const cas = row.polymer_CAS; + const bigsmiles = this.smiles_to_BigSMILES(row.polymer_SMILES) + const mw_w = row.polymer_Mw; + const mw_d = row.polymer_PDI; + + // Try to get the existing + if (citation) { + // Note: previous implementation was using both mw_w, mw_d, and name as hash, but using unique_name seems more appropriate. + const existing_polymer = this.polymers.get(unique_name); + if (existing_polymer) { + console.log(`-- Found existing polymer: ${unique_name}`) + return existing_polymer; + } + } + // Create properties + const properties: IProperty[] = []; + if (mw_w && !isNaN(mw_w)) + properties.push({ + key: "mw_w", + value: String(mw_w), // FIXME: backend does not accept numbers + unit: "g/mol", + citation, + node: ['Property'], + type: 'value' // FIXME: is this correct from a chemist point of view? + } as IProperty) + + if (mw_d && !isNaN(mw_d)) + properties.push({ + key: "mw_d", + value: String(mw_d), // FIXME: backend does not accept numbers, + unit: "", + citation, + node: ['Property'], + type: 'value' // FIXME: is this correct from a chemist point of view? + } as IProperty) + + + // Create new material object + const polymer: IMaterial = { + name: unique_name, + property: properties, + node: ['Material'], + } as IMaterial; + + // Create identifiers + // + // note: the new API does not have a concept for the legacy's API Identifiers. + // We have to set those directly on the Material node. + // + if (name) { + polymer.names = [name]; // Not sure about that, waiting for Brilant's answer. + //identifiers.push(cript.Identifier(key="prefered_name", value=name)) + } + if (cas) { + polymer.cas = cas; + //identifiers.push(cript.Identifier(key="cas", value=cas)) + } + if (bigsmiles) { + polymer.bigsmiles = bigsmiles; + //identifiers.push(cript.Identifier(key="bigsmiles", value=bigsmiles)) + } + + this.polymers.set(unique_name, polymer); + return polymer + } + + private get_mixture(row: AFRLData, polymer: IMaterial, solvent: IMaterial, citation: ICitation[] = []): IMaterial { + + const name = `${polymer.name}${solvent.name} mixture`; + const unique_name = `${name} (${row.mixture_id})` + + const conc_vol_fraction = row.polymer_vol_frac; + const conc_mass_fraction = row.polymer_wt_frac; + const temp_cloud = row.cloud_point_temp; + const one_phase_direction = row.one_phase_direction; + const pressure = row.pressure_MPa; + + // Create new material object + const mixture = { + node: ['Material'], + name: unique_name, + // "identifiers": identifiers, deprecated, see explanation below + component: [ + polymer, + solvent + ], + property: new Array, + names: [unique_name], + } satisfies IMaterial; + + // Create identifiers + // + // The concept of Identifier separate from Material does not exist anymore on the new API. + // Instead, a Material has each possible identifier as its own object property. + // + if (name) { + // There is no such field in the new API + // identifiers.append(cript.Identifier(key="preferred_name", value=name)) + // Waiting for Brilant's answer I am using names instead. + mixture.names.push(name); + } + + // Create properties + if (conc_vol_fraction && !isNaN(conc_vol_fraction)) { + const property: IProperty = { + key: "conc_vol_fraction", + value: String(conc_vol_fraction), // FIXME: backend does not accept numbers, + // "components_relative" does not exist on new API, using "component" instead. + component: [polymer], + citation, + node: ['Property'], + type: 'value', // FIXME: is this correct from a chemist point of view? + }; + mixture.property.push(property); + } + + if (conc_mass_fraction && !isNaN(conc_mass_fraction)) { + const property: IProperty = { + key: "conc_mass_fraction", + value: String(conc_mass_fraction), // FIXME: backend does not accept numbers + // "components_relative" does not exist on new API, using "component" instead. + component: [polymer], + citation, + node: ['Property'], + type: 'value', // FIXME: is this correct from a chemist point of view? + } + mixture.property.push(property); + } + + if (temp_cloud && !isNaN(temp_cloud)) { + + const temp_cloud_property = { + key: "temp_cloud", + value: String(temp_cloud), // FIXME: backend does not accept numbers + // "components_relative" does not exist on new API, using "component" instead. + component: [polymer], + citation, + node: ['Property'], + type: 'value', // FIXME: is this correct from a chemist point of view? + unit: "degC", + condition: new Array() // will be filled below... + } satisfies IProperty; + + // If present, add conditions + + if (pressure) + temp_cloud_property.condition.push({ + node: ['Condition'], + key: "pressure", + value: String(pressure), // FIXME: typings are wrong, we should be able to use a number + unit: "MPa", + }); + + + if (one_phase_direction) { + + // FIXME: uncomment once backend accepts custom vocab (starts with a "+") + /* + temp_cloud_property.condition.push({ + node: ['Condition'], + key: "+one_phase_direction", // Not sure this will work, needs custom vocabulary (starts with a "+"). + value: one_phase_direction, + model_version: MODEL_VERSION, + } as ICondition);*/ + + this.record_error(`one_phase_direction cannot be stored in CRIPT, +one_phase_direction vocab is not allowed.`) + } + + // Add property to the mixture + mixture.property.push(temp_cloud_property); + } + + // Store in hashmap + this.mixtures.set(mixture.name, mixture); + + return mixture; + } + + + private smiles_to_BigSMILES(smiles: string): string | undefined { + + if (!smiles || smiles == '') return undefined; + + // Replace * with [<] and [>] + let bigsmiles: string; + const tokens = smiles.split('*'); + + switch (tokens.length) { + case 1: + bigsmiles = tokens[0]; + break; + case 3: + bigsmiles = `${tokens[0]}[<]${tokens[1]}[>]${tokens[2]}`; + break; + default: + this.record_error(`Unable to convert smiles to BigSMILES, should have zero or two "*": ${smiles}`); + return undefined; + } + + return `{{[]${bigsmiles}[]}}`; + } + + + private record_error(message: string): void { + + this.errors.push(message) + console.error(message); + } + + /** + * Load a single AFRL data + * @param row object is called raw because this script was originaly dealing with a CSV file + * In case you need to use a CSV again, just implement a CSV to AFRL[] method. + */ + private load_row(row: AFRLData): boolean { + + // get objects common to this row + + const citation = this.get_citation(row) // is not required + const solvent = this.get_solvent(row) + + if (!solvent) { + // Record error and skip row if solvent is not found + this.record_error(`Solvent not found: ${row.solvent} (${row.solvent_CAS})`); + return false; + } + this.add_material(solvent, this.inventory_solvents); + + const citation_as_array = citation ? [citation] : []; + const polymer = this.get_polymer(row, citation_as_array) + this.add_material(polymer, this.inventory_polymers); + + const mixture = this.get_mixture(row, polymer, solvent, citation_as_array) + this.add_material(mixture, this.inventory_mixtures); + + return true; + } + + /** + * Helper to push a material into a project and a given inventory + * @param material + * @param inventory + */ + add_material(material: IMaterial, inventory: IInventory) { + if(!this.project.material) this.project.material = []; + if(!inventory.material) inventory.material = []; + // note: here I do not check if inventry is a part of a collection in this.project + // but by design (cf. constructor) the inventory should be a part of it. + + this.project.material.push(material); + inventory.material.push(material); + } + + private static load_config(): Config { + /* + try: + with open("config.yaml", "r") as f: + config = yaml.safe_load(f) + except FileNotFoundError: + config = {} + + if config.get("host") is None: + config["host"] = input("Host (e.g., criptapp.org): ") + if config.get("token") is None: + config["token"] = getpass("API Token: ") + if config.get("group") is None: + config["group"] = input("Group name: ") + if config.get("project") is None: + config["project"] = input("Project name: ") + if config.get("collection") is None: + config["collection"] = input("Collection name: ") + if config.get("inventory") is None: + config["inventory"] = input("Inventory name: ") + if config.get("path") is None: + config["path"] = input("Path to CSV file: ").strip('"') + */ + + return { + inventory_basename: 'afrl-inventory', + project_name: 'afrl-project' + } + } + + /** + * Load a CSV file to typesafe datastructure + * @param csv_file_path the path to the csv file (must be absolute or relative to the package) + * @returns + */ + async load_csv(csv_file_path: string): Promise { + console.log(`Loading file and converting to javascript data types: ${csv_file_path} ...`) + const raw_json: { [key: string]: string }[] = await csvtojson().fromFile(csv_file_path) + console.log(`Found ${raw_json.length} rows found in CSV. File is now converted as a { [key: string]: string }[] `) + + // Log randomly N samples + const random_samples_count = 3; + console.log(`Logging ${random_samples_count} samples randomly...`); + for (let i = 0; i < random_samples_count; ++i) { + const random_index = Math.floor(Math.random() * (raw_json.length - 1)); + console.log(`row #${random_index}:`) + console.log(JSON.stringify(raw_json[random_index], null, ' ')) + } + console.log(`Logging samples randomly DONE`); + + + // Checking data against type + console.warn(`Assigning default value for string properties ...`) + console.warn(`Data validation is not 100% safe, some fields might be missing. TODO: install AJV and create a schema for AFRLData type.`) + + // Use typecheck to list all (unique) fields existing on AFRLdata + const empty_data: AFRLData = { + + cloud_point_temp: 0, + mixture_id: 0, + one_phase_direction: "", + polymer_CAS: "", + polymer_id: 0, + polymer_PDI: 0, + polymer_Mw: 0, + polymer_SMILES: "", + polymer_vol_frac: 0, + polymer_wt_frac: 0, + polymer: "", + pressure_MPa: 0, + reference: "", + solvent_CAS: "", + solvent_Mw: 0, + solvent_SMILES: "", + solvent: "" + } + const afrldata_type_fields = [...Object.keys(empty_data) as Array]; + + const to_number_or_undefined = (value: string ) => value != '' ? Number.parseFloat(value) : undefined; + + const afrl_data = raw_json.map( (raw_object, index) => { + /* + At this stage a row is like that (sample is not representative, some data may be different (ex: reference)): + { + mixture_id: '1', + polymer_id: '1', + polymer: 'polystyrene', + polymer_CAS: '9003-53-6', + polymer_SMILES: '*C(C*)c1ccccc1', + solvent: 'methylcyclohexane', + solvent_CAS: '108-87-2', + solvent_SMILES: 'CC1CCCCC1', + polymer_Mw: '17500', + polymer_PDI: '1.060606061', + polymer_vol_frac: '0.114055986', + polymer_wt_frac: '0.15', + pressure_MPa: '82.81', + cloud_point_temp: '21.34', + one_phase_direction: 'positive', + reference: 'doi.org/10.1002/macp.1994.021950233' + } + */ + + // Check if all the fields in raw_object exists in AFRLData type (can use default values in this case) + //const missing_field_on_raw_object = afrldata_type_fields.find( field => !Object.keys(raw_object).includes(field)); + //if( missing_field_on_raw_object ) console.warn(`The field ${missing_field_on_raw_object} cannot be found in: ${JSON.stringify(raw_object)}, default value will be used`); + + // Check it all fields in AFRLData type exists in raw_object (data will be discarded in this case, dev must be done) + const missing_field_on_afrldata_type = Object.keys(raw_object).find(field => !afrldata_type_fields.includes(field as any)); + if (missing_field_on_afrldata_type) this.record_error(`The field ${missing_field_on_afrldata_type} cannot be found in: ${JSON.stringify(afrldata_type_fields)}, field will be ignored. Requires some development.`); + + const safe_object: AFRLData = { + + csv_raw_index: index + 1, // one-based index, because the CSV column names use the raw 0. + + reference: raw_object.reference, + one_phase_direction: raw_object.one_phase_direction, + polymer_CAS: raw_object.polymer_CAS, + polymer_SMILES: raw_object.polymer_SMILES, + polymer: raw_object.polymer, + solvent_CAS: raw_object.solvent_CAS, + solvent_SMILES: raw_object.solvent_SMILES, + solvent: raw_object.solvent, + ...{ + solvent_Mw: to_number_or_undefined(raw_object.solvent_Mw), + polymer_Mw: to_number_or_undefined(raw_object.polymer_Mw), + cloud_point_temp: to_number_or_undefined(raw_object.cloud_point_temp), + mixture_id: to_number_or_undefined(raw_object.mixture_id), + polymer_id: to_number_or_undefined(raw_object.polymer_id), + polymer_PDI: to_number_or_undefined(raw_object.polymer_PDI), + polymer_vol_frac: to_number_or_undefined(raw_object.polymer_vol_frac), + polymer_wt_frac: to_number_or_undefined(raw_object.polymer_wt_frac), + pressure_MPa: to_number_or_undefined(raw_object.pressure_MPa), + } + } as Partial as any; + return safe_object; + }); + console.log(`Assigning default value for string properties OK`); + return afrl_data; + } + + /** + * Loads structured AFRLData[] into a project + * @param data + * @returns + */ + load_data(data: AFRLData[]): IProject { + + // load data + console.log('Loading data ...') + const failed_rows: AFRLData[] = []; + let one_based_index = 1; + const data_length = data.length; + for (let row of data) { + console.log(`Loading data ${one_based_index}/${data_length} ...`) + if (!this.load_row(row)) { + failed_rows.push(row); + } + one_based_index++; + } + + // Log failures + if (failed_rows.length != 0) { + console.log(`Loading failed. Some objects couldn't be loaded (${failed_rows.length} row(s) failed)`) + failed_rows.forEach(v => console.error(JSON.stringify(v))) + throw new Error(`${failed_rows.length} row(s) were not loaded.`) + } + + console.log('Loading data OK') + return this.project; + } +} \ No newline at end of file diff --git a/scripts/typescript/src/afrl/data/AFRL_linear_polymer_3pdb_data_csv_4_5_2023.csv b/scripts/typescript/src/afrl/data/AFRL_linear_polymer_3pdb_data_csv_4_5_2023.csv new file mode 100644 index 0000000..b5e1bf2 --- /dev/null +++ b/scripts/typescript/src/afrl/data/AFRL_linear_polymer_3pdb_data_csv_4_5_2023.csv @@ -0,0 +1,6525 @@ +mixture_id,polymer_id,polymer,polymer_CAS,polymer_SMILES,solvent,solvent_CAS,solvent_SMILES,polymer_Mw,polymer_PDI,polymer_vol_frac,polymer_wt_frac,pressure_MPa,cloud_point_temp,one_phase_direction,reference +1,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.114055986,0.15,82.81,21.34,positive,doi.org/10.1002/macp.1994.021950233 +2,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.181960329,0.23366,80,21.18,positive,doi.org/10.1002/macp.1994.021950233 +1,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.005599565,0.0078,7.699,211.76,negative,doi.org/10.1016/j.supflu.2005.08.004 +1,2,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,78800,1.119318182,0.006317671,0.007,0.1,73.99,positive,doi.org/10.1021/je0504865 +1,1,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,11615,1.110739218,0.2236,,0.1,120.8,negative,See 2001FIS in ISBN: 9781420067989 +1,1,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,ethoxybenzene,103-73-1,CCOc1ccccc1,24500,2.289719626,0.200331469,0.2,0.1,44.5,positive,See 1998SCH in ISBN: 9781420067989 +1,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,22100,1.03030303,0.114011441,0.153,1.02,27.42,positive,doi.org/10.1021/ma00107a011 +2,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.037067837,0.051,6.6,235,negative,doi.org/10.1021/ie034302w +1,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1799,0.1799,4.35,6.08,positive,doi.org/10.1006/jcht.1999.0607 +1,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.127803169,0.1202,4.73,-3.97,positive,doi.org/10.1006/jcht.1999.0607 +1,5,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,600000,1.099908341,0.043257242,0.05,0.1,147.7,negative,doi.org/10.1021/ma00015a024 +1,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,2-propanone,67-64-1,CC(=O)C,44500,1.508474576,0.126371286,0.15,0.1,51.6,positive,See 1998SCH in ISBN: 9781420067989 +1,3,polyethylene,9002-88-4,*CC*,cyclopentene,142-29-0,C1CC=CC1,106000,5.273631841,0.050963522,0.06,3.94,209.7,negative,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +1,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.018032458,0.0198,0.1,30.21,negative,doi.org/10.1016/S0022-2860(00)00559-7 +1,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.086,,0.1,29.78,positive,doi.org/10.1039/B301190A +3,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,4.089,56.35,positive,doi.org/10.1016/S0378-3812(97)00157-X +3,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.062390359,0.085,4.3,201,negative,doi.org/10.1021/ie034302w +2,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.019,,0.1,29.71,positive,doi.org/10.1039/B301190A +2,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0457,0.0457,4.77,48.29,positive,doi.org/10.1006/jcht.1999.0607 +1,9,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,354000,1.020172911,0.098619572,0.1336,0.1,9,positive,doi.org/10.1627/jpi1958.33.117 +1,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.151620948,0.19,0.906,-1.755,positive,doi.org/10.1021/ma9517308 +4,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.097275917,0.1287,51.68,19.63,positive,doi.org/10.1063/1.464440 +1,1,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,468000,1.2,0.098755571,0.116,0.1,31.7,positive,doi.org/10.1016/0254-0584(83)90036-6 +2,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.272868217,0.33,4.575,-5.291,positive,doi.org/10.1021/ma9517308 +3,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],13200000,1.130136986,0.0123,,0.1,36.78,positive,doi.org/10.1039/B301190A +4,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.003514777,0.0049,7.437,212.02,negative,doi.org/10.1016/j.supflu.2005.08.004 +1,13,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,11700,1.030837004,0.166842438,0.21,0.41,1.76,positive,doi.org/10.1021/ma00107a011 +5,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.032797521,0.0452,6.56,197.38,negative,doi.org/10.1016/j.supflu.2005.08.004 +1,1,poly(vinyl acetate),9003-20-7,*CC(*)OC(C)=O,cyclopentene,142-29-0,C1CC=CC1,124800,2.368121442,0.039861292,0.06,27.06,172.5,positive,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +1,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.042437227,0.0563,0.53,-1.08,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +3,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0944,0.0944,0.84,23.77,positive,doi.org/10.1006/jcht.1999.0607 +3,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.224203822,0.275,2.629,163.523,negative,doi.org/10.1021/ma9517308 +1,17,polystyrene,9003-53-6,*C(C*)c1ccccc1,bisphenol-A diglycidyl ether,1675-54-3,CC(C)(c1ccc(OCC2CO2)cc1)c3ccc(OCC4CO4)cc3,86700,1.044578313,0.0554,,0.1,62.3,positive,doi.org/10.1002/macp.200300106 +2,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0229,,0.1,116.85,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +4,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.176799578,0.2199,0.542,138.319,negative,doi.org/10.1021/ma9517308 +2,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.127937264,0.163,0.08,13.98,positive,doi.org/10.1021/ma00107a011 +5,19,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,297000,5.449541284,0.04373991,0.059,0.1,57.82,positive,See 1988SC2 in ISBN: 9781420067989 +4,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1388,0.1388,0.56,24.2,positive,doi.org/10.1006/jcht.1999.0607 +1,20,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.1078,,0.1,24.43,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +3,3,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,4490,1.130982368,0.173087838,0.1906,0.1,252.5,positive,doi.org/10.1016/0378-3812(93)85105-U +5,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,3.849,165.106,negative,doi.org/10.1021/ma9517308 +6,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.192338678,0.2461,7.06,21.42,positive,doi.org/10.1063/1.464440 +7,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.23818408,0.3,82.26,20.891,positive,doi.org/10.1002/macp.1994.021950233 +4,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.061,,0.1,30.12,positive,doi.org/10.1039/B301190A +2,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.073032391,0.096,0.1,26.61,positive,See 1986KRU in ISBN: 9781420067989 +3,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0558,,0.1,23.832,positive,doi.org/10.1063/1.430349 +4,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.117374168,0.152,0.1,23.59,positive,See 1984GIL in ISBN: 9781420067989 +1,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.0351,,0.1,31.973,positive,doi.org/10.1063/1.472437 +8,25,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.2558,,0.1,12.397,positive,doi.org/10.1063/1.439127 +6,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.114880564,0.1534,9.178,221.882,negative,doi.org/10.1016/j.supflu.2005.08.004 +4,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.006227065,0.007,0.1,280.2,positive,doi.org/10.1021/ma00015a024 +7,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.036109458,0.0497,2.84,165.49,negative,See 2000BEH in ISBN: 9781420067989 +5,26,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0914,,0.1,25.92,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +6,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.1652,,0.1,26.007,positive,doi.org/10.1103/PhysRevA.18.2683 +2,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,100000,1.060445387,0.130743968,0.149,0.1,164.6,negative,doi.org/10.1021/ma00015a024 +5,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.2457,,0.1,132.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +3,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.123853657,0.158,1.73,99.57,negative,doi.org/10.1021/ma00107a011 +2,2,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,596000,1.040139616,0.103,,0.1,59.075,positive,doi.org/10.1063/1.472437 +7,29,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,111000,1.050141911,0.061377425,0.081,0.1,21.22,positive,See 1986KRU in ISBN: 9781420067989 +9,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,3,55.87,positive,doi.org/10.1016/S0378-3812(97)00157-X +2,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.17424529,0.1644,4.44,-4.08,positive,doi.org/10.1006/jcht.1999.0607 +5,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.025,0.025,0.37,46.6,positive,doi.org/10.1006/jcht.1999.0607 +8,30,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,600000,1.099908341,0.061764438,0.0815,0.1,28.13,positive,doi.org/10.1007/BF01525017 +2,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.122614126,0.164,0.55,30.28,positive,doi.org/10.1021/ma00107a011 +1,32,polystyrene,9003-53-6,*C(C*)c1ccccc1,diisodecyl phthalate,26761-40-0,CC(C)CCCCCCCOC(=O)c1ccccc1C(=O)OCCCCCCCC(C)C,235000,2.100089366,0.2637033,0.28,0.1,48.65,positive,See 2001HE1 in ISBN: 9036516463 +1,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.027038924,0.039,15.65,170,negative,doi.org/10.1021/je0103162 +8,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.044167367,0.0606,7.344,202.19,negative,doi.org/10.1016/j.supflu.2005.08.004 +10,33,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,2700000,1.099796334,0.007923954,0.01083,0.1,215.16,negative,doi.org/10.1021/ma60032a020 +11,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,46.29,19.55,positive,doi.org/10.1063/1.464440 +4,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.212733185,0.264,0.07,11.95,positive,doi.org/10.1021/ma00107a011 +3,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.197460596,0.1866,0.48,-3.87,positive,doi.org/10.1006/jcht.1999.0607 +9,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,97200,1.05997819,0.066727241,0.0879,0.1,228.76,negative,doi.org/10.1021/ma60032a020 +6,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.202445508,0.2499,2.699,163.563,negative,doi.org/10.1021/ma9517308 +10,35,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,335500,1.690176322,0.096939234,0.1264,0.1,24.27,positive,See 1986KRU in ISBN: 9781420067989 +2,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.126382966,0.163,4.01,113.96,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +11,36,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,90000,1.040462428,0.012593119,0.0169,0.1,16.96,positive,doi.org/10.1016/S0378-3812(99)00128-4 +7,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.224203822,0.275,3.608,172.313,negative,doi.org/10.1021/ma9517308 +1,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,233000,1.059090909,0.085701985,0.102,0.1,-2.6,positive,doi.org/10.1021/ma00015a024 +9,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.007183423,0.01,8.913,222.05,negative,doi.org/10.1016/j.supflu.2005.08.004 +5,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],2000000,1.299967501,0.012,,0.1,34.05,positive,doi.org/10.1039/B301190A +10,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.103032843,0.1382,4.81,194.35,negative,See 2001TOR in ISBN: 9781420067989 +12,39,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,670000,1.098360656,0.026945209,0.03657,0.1,218.802,negative,doi.org/10.1021/ma60032a020 +13,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.058586078,0.0786,28.93,19.5,positive,doi.org/10.1063/1.464440 +11,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.032797521,0.0452,2.49,167.58,negative,doi.org/10.1016/j.supflu.2005.08.004 +12,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,13200000,1.130136986,0.007,,0.1,32.01,positive,doi.org/10.1039/B301190A +6,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0187,,0.1,142.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +12,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.043722494,0.06,7.4,183,negative,doi.org/10.1021/ie034302w +14,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.103004224,0.136,3.5,54.18,positive,doi.org/10.1016/S0378-3812(97)00302-6 +1,41,polystyrene,9003-53-6,*C(C*)c1ccccc1,1-dodecanol,112-53-8,CCCCCCCCCCCCO,235000,2.100089366,0.62711413,0.68,0.1,123.7,positive,"See 2001HE1 ISBN: 9036516463, doi.org/10.1016/S0040-6031(01)00587-1" +6,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0944,0.0944,0.43,23.84,positive,doi.org/10.1006/jcht.1999.0607 +15,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,1.326,57.5,positive,doi.org/10.1016/S0378-3812(97)00157-X +13,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0489,,0.1,23.806,positive,doi.org/10.1063/1.430349 +3,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.085273484,0.1115,3.64,139.54,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +14,42,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0472,,0.1,26,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +15,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.022325331,0.02986,0.1,20.13,positive,See 1986KRU in ISBN: 9781420067989 +16,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.041,,0.1,26.15,positive,doi.org/10.1039/B301190A +2,1,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,ethoxybenzene,103-73-1,CCOc1ccccc1,24500,2.289719626,0.220355486,0.22,0.1,43.9,positive,See 1998SCH in ISBN: 9781420067989 +17,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.178650568,0.22671,0.1,22.5,positive,See 1984GIL in ISBN: 9781420067989 +1,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.091732599,0.11,2.282,172.284,negative,doi.org/10.1021/ma9517308 +3,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,22100,1.03030303,0.114011441,0.153,0.51,27.6,positive,doi.org/10.1021/ma00107a011 +18,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0167,,0.1,30.412,positive,doi.org/10.1103/PhysRevA.18.2683 +19,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.013566393,0.0182,0.1,24,positive,doi.org/10.1002/macp.1965.020880115 +5,45,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,24700,1.037815126,0.013620475,0.018,7.88,8.65,positive,doi.org/10.1039/B109405J +7,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1654,0.1654,4.35,23.59,positive,doi.org/10.1006/jcht.1999.0607 +20,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.021,,0.1,29.74,positive,doi.org/10.1039/B301190A +8,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,1.36,139.599,negative,doi.org/10.1021/ma9517308 +21,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.26673612,0.329,0.1,20,positive,doi.org/10.1002/macp.1965.020880115 +13,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.065100905,0.0886,3.8,170.09,negative,doi.org/10.1016/j.fluid.2003.07.004 +14,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.015930203,0.0221,7.53,209.55,negative,See 2001TOR in ISBN: 9781420067989 +7,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0469,,0.1,115.4,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +1,46,polystyrene,9003-53-6,*C(C*)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,233000,1.060054595,0.088978418,0.1048,0.1,269.2,negative,doi.org/10.1016/0032-3861(95)91454-F +4,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.119576843,0.1124,0.25,14.99,positive,doi.org/10.1006/jcht.1999.0607 +22,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.0381133,0.0507,0.1,27.5,positive,doi.org/10.1002/macp.1965.020880115 +16,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.2116,,0.1,23.528,positive,doi.org/10.1063/1.446753 +23,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.003,,0.1,28.68,positive,doi.org/10.1039/B301190A +1,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.1543,0.1543,4.17,65.87,positive,doi.org/10.1006/jcht.1999.0607 +1,3,polyethylene,9002-88-4,*CC*,cyclopentane,287-92-3,C1CCCC1,106000,5.273631841,0.049147883,0.06,4.85,210.2,negative,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +9,49,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22000,1.030010768,0.048730964,0.063,3.77,61.9,positive,doi.org/10.1002/polb.1994.090321315 +15,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.016075286,0.0223,8.168,212.17,negative,doi.org/10.1016/j.supflu.2005.08.004 +1,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.197860168,0.229,0.58,70.37,positive,doi.org/10.1021/ma00107a011 +2,50,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,791000,1.010217114,0.012981965,0.0182,0.1,161.3,negative,doi.org/10.1002/pen.760330806 +24,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,13200000,1.130136986,0.0179,,0.1,32.15,positive,doi.org/10.1039/B301190A +16,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.065100905,0.0886,7.9,200.02,negative,doi.org/10.1016/j.fluid.2003.07.004 +25,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0152,,0.1,27.41,positive,doi.org/10.1103/PhysRevE.55.3159 +17,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.097275917,0.1287,65.51,19.81,positive,doi.org/10.1063/1.464440 +5,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.127803169,0.1202,2.45,-3.77,positive,doi.org/10.1006/jcht.1999.0607 +1,52,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,90000,1.040462428,0.071214028,0.0847,0.1,8,positive,doi.org/10.1016/0032-3861(95)91454-F +6,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.056732495,0.0531,3.64,13.35,positive,doi.org/10.1006/jcht.1999.0607 +1,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.008154706,0.01,0.1,200.9,negative,doi.org/10.1016/0032-3861(95)91454-F +6,53,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,16600,1.050632911,0.141900377,0.18,6.25,19.85,positive,doi.org/10.1039/B109405J +3,54,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,43000,1.009389671,0.030604422,0.0426,0.1,-6.8,positive,doi.org/10.1627/jpi1958.33.117 +1,2,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,76500,1.100719424,0.089039336,0.1071,0.1,11.9,positive,doi.org/10.1016/0032-3861(95)91454-F +2,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.117493871,0.1401,4.431,25.257,positive,doi.org/10.1021/ma9517308 +4,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.109403402,0.1419,5.8,7.02,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +18,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,2.912,57.75,positive,doi.org/10.1016/S0378-3812(97)00157-X +8,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1911,0.1911,3.8,39.68,positive,doi.org/10.1006/jcht.1999.0607 +1,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,31200,1.2,0.026929536,0.0384,0.1,-0.1,positive,doi.org/10.1016/0032-3861(95)91454-F +2,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.00686948,0.01,11.31,130,negative,doi.org/10.1021/je0103162 +26,55,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,100000,1.063829787,0.054428581,0.072,0.1,229.1,negative,doi.org/10.1002/app.1993.070470707 +19,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.1466,,0.1,23.4,positive,doi.org/10.1063/1.479914 +17,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.012959657,0.018,6,232,negative,doi.org/10.1021/ie034302w +18,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.045517759,0.06242,6.734,197.52,negative,doi.org/10.1016/j.supflu.2005.08.004 +1,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.076289801,0.0715,4.45,37.45,positive,doi.org/10.1006/jcht.1999.0607 +2,57,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],7800,1.181818182,0.138336252,0.162,0.1,13.7,positive,doi.org/10.1063/1.1143329 +3,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.049016339,0.07,10.13,130,negative,doi.org/10.1021/je0103162 +27,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.032373731,0.04315,0.1,21.99,positive,See 1984GIL in ISBN: 9781420067989 +28,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.008855866,0.0119,0.1,25.92,positive,See 1986KRU in ISBN: 9781420067989 +19,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.045517759,0.06242,4.119,177.31,negative,doi.org/10.1016/j.supflu.2005.08.004 +4,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.049016339,0.07,12.75,150,negative,doi.org/10.1021/je0103162 +2,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.1205,0.1205,4.57,66.2,positive,doi.org/10.1006/jcht.1999.0607 +20,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.032797521,0.0452,1.75,162.64,negative,doi.org/10.1016/j.supflu.2005.08.004 +1,3,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,11570,1.150099404,0.010170218,0.0165,0.1,158,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +5,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.145931506,0.187,1.71,42.96,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +1,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.145049278,0.16,3.83,63.08,positive,doi.org/10.1021/ma00107a011 +7,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.154212561,0.1453,1.41,-3.81,positive,doi.org/10.1006/jcht.1999.0607 +5,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.02563595,0.037,10.96,130,negative,doi.org/10.1021/je0103162 +2,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.135832598,0.15,3.13,90.29,negative,doi.org/10.1021/ma00107a011 +2,2,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,144000,2.057142857,0.027987201,0.0307,50.75,40.25,negative,doi.org/10.1021/ma011533a +20,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.181960329,0.23366,70,20.881,positive,doi.org/10.1002/macp.1994.021950233 +29,58,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,286000,2.2,0.036058137,0.048,0.1,25.3,positive,doi.org/10.1021/je0504865 +21,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.015930203,0.0221,8.73,219.45,negative,See 2001TOR in ISBN: 9781420067989 +3,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.009372412,0.0103,0.1,34.05,negative,doi.org/10.1016/S0378-3812(01)00469-1 +8,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.2236,,0.1,117.4,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +7,45,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,24700,1.037815126,0.013620475,0.018,15.6,-0.15,positive,doi.org/10.1039/B109405J +22,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.103032843,0.1382,8.67,225.25,negative,See 2001TOR in ISBN: 9781420067989 +8,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.168519092,0.212,0.56,12.11,positive,doi.org/10.1021/ma00107a011 +30,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0199,,0.1,30.458,positive,doi.org/10.1103/PhysRevA.18.2683 +10,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.176884422,0.22,3.779,99.864,positive,doi.org/10.1021/ma9517308 +21,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,8.216,53.66,positive,doi.org/10.1016/S0378-3812(97)00157-X +6,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.145931506,0.187,2.2,41.01,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +4,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.123399022,0.165,2.33,29.49,positive,doi.org/10.1021/ma00107a011 +3,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.09653999,0.114,0.93,98.63,negative,doi.org/10.1021/ma00107a011 +22,25,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.2424,,0.1,12.481,positive,doi.org/10.1063/1.439127 +31,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.002673341,0.0036,0.1,20,positive,doi.org/10.1002/macp.1965.020880115 +23,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.000358203,0.0005,2.386,182.45,negative,doi.org/10.1016/j.supflu.2005.08.004 +3,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.2291,0.2291,3.9,63.37,positive,doi.org/10.1006/jcht.1999.0607 +11,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,1.909,155.194,negative,doi.org/10.1021/ma9517308 +2,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.161141072,0.1519,4.59,37.31,positive,doi.org/10.1006/jcht.1999.0607 +12,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.202445508,0.2499,4.704,181.315,negative,doi.org/10.1021/ma9517308 +9,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.1212,0.1212,2.12,49.48,positive,doi.org/10.1006/jcht.1999.0607 +1,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.109425436,0.132,1.89,1.34,positive,doi.org/10.1021/ma00107a011 +13,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.224203822,0.275,0.489,80.614,positive,doi.org/10.1021/ma9517308 +14,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.272868217,0.33,1.409,-2.635,positive,doi.org/10.1021/ma9517308 +9,45,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,24700,1.037815126,0.013620475,0.018,7.3,159.85,negative,doi.org/10.1039/B109405J +9,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.1916,,0.1,115.6,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +1,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,anisole,100-66-3,COc1ccccc1,44500,1.508474576,0.509803122,0.502,0.1,56.1,positive,See 1998SCH in ISBN: 9781420067989 +32,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,25000,1.059322034,0.11,,0.1,7.08,positive,doi.org/10.1039/B301190A +23,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.074826302,0.0998,72.77,19.8,positive,doi.org/10.1063/1.464440 +33,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.024,,0.1,29.76,positive,doi.org/10.1039/B301190A +1,3,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,280000,1.060606061,0.019349316,0.0234,0.1,75.91,positive,doi.org/10.1021/je0504865 +24,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,21.97,31.38,positive,doi.org/10.1063/1.464440 +25,61,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,181000,1.058479532,0.0823,,0.1,53.841,positive,doi.org/10.1063/1.439127 +3,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.169547249,0.1999,0.943,160.154,negative,doi.org/10.1021/ma9517308 +1,4,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20100,1.020304569,0.168157495,0.221,0.1,32.46,positive,doi.org/10.1021/je990141k +10,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2634,0.2634,2.04,5.23,positive,doi.org/10.1006/jcht.1999.0607 +3,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.2068,,0.1,33.629,positive,doi.org/10.1063/1.472437 +26,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,31.19,19.87,positive,doi.org/10.1063/1.464440 +10,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,11500,1.069767442,0.144377186,0.183,0.1,-25.04,positive,doi.org/10.1063/1.1143329 +24,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.103032843,0.1382,1.91,173.75,negative,See 2001TOR in ISBN: 9781420067989 +27,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.096806139,0.1281,9.05,29.41,positive,doi.org/10.1016/S0378-3812(97)00302-6 +28,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.058586078,0.0786,11.96,20.76,positive,doi.org/10.1063/1.464440 +7,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.145931506,0.187,1.28,45,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +25,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.051604672,0.0706,4.794,182.55,negative,doi.org/10.1016/j.supflu.2005.08.004 +2,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,100000,1.060445387,0.004129799,0.005,0.1,-32.5,positive,doi.org/10.1021/ma00015a024 +26,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.016075286,0.0223,2.348,167.79,negative,doi.org/10.1016/j.supflu.2005.08.004 +27,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.000358203,0.0005,6.136,211.87,negative,doi.org/10.1016/j.supflu.2005.08.004 +8,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.053184277,0.0703,1.26,29.64,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +9,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.075072918,0.0985,3.07,101.96,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +28,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.003514777,0.0049,5.052,192.25,negative,doi.org/10.1016/j.supflu.2005.08.004 +34,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0452,,0.1,30.462,positive,doi.org/10.1103/PhysRevA.18.2683 +8,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.154212561,0.1453,0.54,-3.73,positive,doi.org/10.1006/jcht.1999.0607 +10,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.3699,,0.1,141.35,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +29,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.074826302,0.0998,32.75,19.66,positive,doi.org/10.1063/1.464440 +35,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.03,,0.1,20.63,positive,doi.org/10.1039/B301190A +29,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.060586478,0.0826,9.529,222.16,negative,doi.org/10.1016/j.supflu.2005.08.004 +2,52,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,90000,1.040462428,0.02055274,0.0247,0.1,5.6,positive,doi.org/10.1016/0032-3861(95)91454-F +30,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.113723164,0.14958,50,20.65,positive,doi.org/10.1002/macp.1994.021950233 +11,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.155986574,0.197,0.98,11.45,positive,doi.org/10.1021/ma00107a011 +15,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.143200418,0.1799,4.151,100.19,positive,doi.org/10.1021/ma9517308 +11,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0307,0.0307,5.37,46.49,positive,doi.org/10.1006/jcht.1999.0607 +3,5,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,600000,1.099908341,0.004129799,0.005,0.1,124.9,negative,doi.org/10.1021/ma00015a024 +36,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.0981,,0.1,23.568,positive,doi.org/10.1103/PhysRevE.55.3159 +1,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.092349686,0.111,0.1,-21.6,positive,doi.org/10.1016/0032-3861(95)91454-F +30,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.076532282,0.1037,2,164.14,negative,See 2000BEH in ISBN: 9781420067989 +16,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.202445508,0.2499,0.275,84.691,positive,doi.org/10.1021/ma9517308 +37,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.1208342,0.1563,0.1,24.5,positive,See 1984GIL in ISBN: 9781420067989 +9,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.17424529,0.1644,1.4,-3.8,positive,doi.org/10.1006/jcht.1999.0607 +1,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-pentane,109-66-0,CCCCC,1240,1.068965517,0.132564214,0.203,0.1,11.85,positive,doi.org/10.1016/S0378-3812(01)00548-9 +17,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.143283582,0.18,3.39,-4.703,positive,doi.org/10.1021/ma9517308 +31,25,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.199,,0.1,12.56,positive,doi.org/10.1063/1.439127 +38,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.038768517,0.05156,0.1,21.48,positive,See 1984GIL in ISBN: 9781420067989 +2,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.197074196,0.233,0.45,5.88,positive,doi.org/10.1021/ma00107a011 +2,67,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,4215,1.069796954,0.186431053,0.2026,0.1,44.76,positive,doi.org/10.1021/je0504865 +31,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.042388798,0.0582,1.63,168.05,negative,See 2001TOR in ISBN: 9781420067989 +4,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.070216876,0.0767,0.1,33.15,negative,doi.org/10.1021/ma011533a +32,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.1207,,0.1,23.475,positive,doi.org/10.1063/1.446753 +33,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.181960329,0.23366,0.1,24.487,positive,doi.org/10.1002/macp.1994.021950233 +4,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],11500,1.069767442,0.101726552,0.12,0.1,10.44,positive,doi.org/10.1063/1.1143329 +34,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.074826302,0.0998,15.98,20.67,positive,doi.org/10.1063/1.464440 +10,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.127803169,0.1202,3.52,-3.86,positive,doi.org/10.1006/jcht.1999.0607 +18,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,3.193,70.811,positive,doi.org/10.1021/ma9517308 +39,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.026294032,0.03512,0.1,24.93,positive,See 1984GIL in ISBN: 9781420067989 +32,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.003514777,0.0049,5.652,197.17,negative,doi.org/10.1016/j.supflu.2005.08.004 +40,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.183328117,0.23229,0.1,22,positive,See 1984GIL in ISBN: 9781420067989 +41,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.012817663,0.0172,0.1,23.79,positive,See 1986KRU in ISBN: 9781420067989 +42,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.186446041,0.236,0.1,24,positive,doi.org/10.1002/macp.1965.020880115 +11,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.001778173,0.002,0.1,135.6,negative,doi.org/10.1021/ma00015a024 +33,9,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,15500,1.076388889,0.102800076,0.1379,1.8,180.02,negative,doi.org/10.1016/j.fluid.2003.07.004 +34,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.044167367,0.0606,9.084,217.11,negative,doi.org/10.1016/j.supflu.2005.08.004 +12,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1215,0.1215,5.72,6.34,positive,doi.org/10.1006/jcht.1999.0607 +35,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.192338678,0.2461,41.78,19.09,positive,doi.org/10.1063/1.464440 +12,6,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,2530,1.171296296,0.274815828,0.2989,0.1,161,negative,doi.org/10.1016/0378-3812(93)85105-U +43,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,37000,1.06017192,0.050659134,0.0671,0.1,237.84,negative,doi.org/10.1021/ma60032a020 +36,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,4.96,52.4,positive,doi.org/10.1016/S0378-3812(97)00157-X +44,70,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.058201058,0.014690216,0.0197,0.1,222.12,negative,doi.org/10.1021/ma60032a020 +3,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.108305043,0.12,4.04,57.06,positive,doi.org/10.1021/ma00107a011 +4,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.1262,,0.1,43.632,positive,doi.org/10.1063/1.472437 +12,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.127937264,0.163,0.09,13.96,positive,doi.org/10.1021/ma00107a011 +6,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],13200000,1.130136986,0.0113,,0.1,36.77,positive,doi.org/10.1039/B301190A +45,58,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,286000,2.2,0.009677231,0.013,0.1,24.8,positive,doi.org/10.1021/je0504865 +3,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.180315051,0.214,1.14,4.78,positive,doi.org/10.1021/ma00107a011 +1,1,poly(vinyl chloride),9002-86-2,*CC(*)Cl,"1,2-dimethylbenzene",95-47-6,Cc1ccccc1C,75000,1.159196291,0.052537313,0.08,0.1,50.3,positive,doi.org/10.1002/macp.1985.021860409 +37,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.023771294,0.0323,11.05,24.45,positive,doi.org/10.1016/S0378-3812(97)00302-6 +4,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.117493871,0.1401,4.434,25.263,positive,doi.org/10.1021/ma9517308 +46,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.105207166,0.1368,0.1,26.21,positive,See 1986KRU in ISBN: 9781420067989 +13,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1393,0.1393,3.8,23.62,positive,doi.org/10.1006/jcht.1999.0607 +38,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.05402428,0.0726,8.05,27.9,positive,doi.org/10.1016/S0378-3812(97)00302-6 +4,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.193308488,0.212,2.7,69.2,positive,doi.org/10.1021/ma00107a011 +5,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.0632,,0.1,34.104,positive,doi.org/10.1063/1.472437 +19,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.084136448,0.1076,2.667,163.888,negative,doi.org/10.1021/ma9517308 +2,6,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,32900,1.018575851,0.151204106,0.2,0.1,43.85,positive,doi.org/10.1021/je990141k +47,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.1077,,0.1,25.846,positive,doi.org/10.1103/PhysRevE.55.3159 +6,2,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,596000,1.040139616,0.0053,,0.1,57.791,positive,doi.org/10.1063/1.472437 +13,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0173,,0.1,117,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +35,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.237537236,0.3031,1.597,177.861,negative,doi.org/10.1016/j.supflu.2005.08.004 +36,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.162223041,0.2128,8.79,235.35,negative,See 2001TOR in ISBN: 9781420067989 +5,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.169547249,0.1999,4.386,25.541,positive,doi.org/10.1021/ma9517308 +37,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.051604672,0.0706,9.629,222.173,negative,doi.org/10.1016/j.supflu.2005.08.004 +2,4,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,31120,1.019993445,0.00491472,0.008,0.1,152.8,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +48,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,37000,1.06017192,0.152749771,0.1955,0.1,240.29,negative,doi.org/10.1021/ma60032a020 +13,45,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,24700,1.037815126,0.013620475,0.018,4.93,12.85,positive,doi.org/10.1039/B109405J +38,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.036109458,0.0497,4.05,173.71,negative,See 2000BEH in ISBN: 9781420067989 +11,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.08954642,0.084,3.49,14.34,positive,doi.org/10.1006/jcht.1999.0607 +39,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,19.61,20.53,positive,doi.org/10.1063/1.464440 +1,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,methyl acetate,79-20-9,COC(=O)C,100000,1.060445387,0.069497869,0.078,0.1,26.1,positive,doi.org/10.1021/ma00015a024 +14,45,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,24700,1.037815126,0.013620475,0.018,26,-8.15,positive,doi.org/10.1039/B109405J +49,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1051,,0.1,23.697,positive,doi.org/10.1063/1.430349 +3,3,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,11570,1.150099404,0.039677778,0.0632,0.1,157.8,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +40,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.033831286,0.0458,17.049,51.69,positive,doi.org/10.1016/S0378-3812(97)00157-X +41,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.074826302,0.0998,27.36,19.96,positive,doi.org/10.1063/1.464440 +2,3,polyethylene,9002-88-4,*CC*,cyclopentane,287-92-3,C1CCCC1,106000,5.273631841,0.049147883,0.06,6.17,219.3,negative,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +5,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.038025867,0.04167,5,32.75,negative,doi.org/10.1016/S0378-3812(01)00469-1 +10,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,4.29,117.97,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +7,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],2000000,1.299967501,0.022,,0.1,34.22,positive,doi.org/10.1039/B301190A +42,71,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,90000,1.039981511,0.026000438,0.0353,0.1,43.15,positive,doi.org/10.1016/j.eurpolymj.2003.09.027 +50,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.025448075,0.034,0.1,27,positive,doi.org/10.1002/macp.1965.020880115 +3,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.076289801,0.0715,3.6,37.63,positive,doi.org/10.1006/jcht.1999.0607 +51,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.115,,0.1,23.571,positive,doi.org/10.1063/1.430349 +43,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.074826302,0.0998,62.27,19.53,positive,doi.org/10.1063/1.464440 +14,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0225,,0.1,118.1,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +44,71,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,90000,1.039981511,0.099156608,0.1311,0.1,46.95,positive,doi.org/10.1016/j.eurpolymj.2003.09.027 +45,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,9.13,53,positive,doi.org/10.1016/S0378-3812(97)00157-X +52,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.195728046,0.247,0.1,24,positive,doi.org/10.1002/macp.1965.020880115 +46,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,47.27,19.53,positive,doi.org/10.1063/1.464440 +14,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.3145,0.3145,0.36,4.4,positive,doi.org/10.1006/jcht.1999.0607 +6,2,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,144000,2.057142857,0.027987201,0.0307,60.95,39.85,negative,doi.org/10.1021/ma011533a +5,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.175485948,0.204,0.88,99.47,negative,doi.org/10.1021/ma00107a011 +12,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.239830986,0.2273,1.81,13.44,positive,doi.org/10.1006/jcht.1999.0607 +47,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.065916504,0.0882,9.05,28.64,positive,doi.org/10.1016/S0378-3812(97)00302-6 +15,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1454,0.1454,1.53,42.9,positive,doi.org/10.1006/jcht.1999.0607 +5,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.237413105,0.259,1.86,63.87,positive,doi.org/10.1021/ma00107a011 +4,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.12580017,0.1183,1.61,38.34,positive,doi.org/10.1006/jcht.1999.0607 +39,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.012959657,0.018,3,197,negative,doi.org/10.1021/ie034302w +13,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.105951487,0.0995,2.3,14.65,positive,doi.org/10.1006/jcht.1999.0607 +3,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,233000,1.059090909,0.017229523,0.02,0.1,154.2,negative,doi.org/10.1021/ma00015a024 +48,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,97200,1.05997819,0.060750608,0.08144,0.1,48.183,positive,doi.org/10.1021/ma60032a020 +15,13,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,11700,1.030837004,0.166842438,0.21,1.42,0.6,positive,doi.org/10.1021/ma00107a011 +49,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.23818408,0.3,7.682,22.555,positive,doi.org/10.1002/macp.1994.021950233 +5,72,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,106300,1.059820538,0.115571327,0.155,0.55,53.86,positive,doi.org/10.1021/ma00107a011 +40,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.036330558,0.05,3.5,164,negative,doi.org/10.1021/ie034302w +2,5,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,68000,1.03030303,0.082292051,0.0982,0.1,73.54,positive,doi.org/10.1021/je0504865 +53,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0977,,0.1,26.048,positive,doi.org/10.1103/PhysRevE.55.3159 +54,73,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,41000,5.125,0.034233759,0.0456,0.1,25.7,positive,doi.org/10.1002/pi.4980080407 +50,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.023771294,0.0323,9.05,24.77,positive,doi.org/10.1016/S0378-3812(97)00302-6 +15,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0535,,0.1,133.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +55,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0846,,0.1,23.826,positive,doi.org/10.1063/1.430349 +16,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0442,,0.1,135.05,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +51,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.097275917,0.1287,60.9,19.74,positive,doi.org/10.1063/1.464440 +3,3,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,280000,1.060606061,0.002142027,0.0026,0.1,74.27,positive,doi.org/10.1021/je0504865 +2,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,61400,1.04957265,0.024583033,0.03,0.1,219.9,negative,doi.org/10.1016/0032-3861(95)91454-F +20,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.199003566,0.2459,3.932,155.55,negative,doi.org/10.1021/ma9517308 +16,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0944,0.0944,4.39,23.21,positive,doi.org/10.1006/jcht.1999.0607 +11,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.075072918,0.0985,2.14,63.93,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +3,3,polyethylene,9002-88-4,*CC*,cyclopentane,287-92-3,C1CCCC1,106000,5.273631841,0.049147883,0.06,7.54,229.4,negative,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +6,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.154286487,0.17,3.3,70.52,positive,doi.org/10.1021/ma00107a011 +4,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.180315051,0.214,0.47,6.15,positive,doi.org/10.1021/ma00107a011 +21,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.070072993,0.09,2.403,163.802,negative,doi.org/10.1021/ma9517308 +1,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],methylcyclopentane,96-37-7,CC1CCCC1,26900,1.059055118,0.142795134,0.179,0.7,30.05,positive,doi.org/10.1021/ma00107a011 +52,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,31.285,46.98,positive,doi.org/10.1016/S0378-3812(97)00157-X +56,74,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,101400,1.090322581,0.08163835,0.107,3.8,232.99,negative,doi.org/10.1016/S0896-8446(01)00144-9 +17,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0307,0.0307,1.24,47.79,positive,doi.org/10.1006/jcht.1999.0607 +1,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,"2,2,4-trimethylpentane",540-84-1,CC(C)CC(C)(C)C,1240,1.068965517,0.05420224,0.08,0.1,-17.15,positive,doi.org/10.1016/S0378-3812(01)00548-9 +18,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0977,0.0977,1.26,23.74,positive,doi.org/10.1006/jcht.1999.0607 +19,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2048,0.2048,2.26,6.11,positive,doi.org/10.1006/jcht.1999.0607 +20,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1245,0.1245,4.66,42,positive,doi.org/10.1006/jcht.1999.0607 +41,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.053694841,0.0734,9.018,217.01,negative,doi.org/10.1016/j.supflu.2005.08.004 +57,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.1109,,0.1,25.34,positive,doi.org/10.1103/PhysRevE.55.3159 +17,7,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8420,1.24925816,0.364409438,0.3921,0.1,274.7,positive,doi.org/10.1016/0378-3812(93)85105-U +12,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.145931506,0.187,0.28,50.84,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +2,3,polyethylene,9002-88-4,*CC*,cyclopentene,142-29-0,C1CC=CC1,106000,5.273631841,0.050963522,0.06,4.86,216,negative,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +6,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.045441935,0.065,9.24,150,negative,doi.org/10.1021/je0103162 +4,5,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,68000,1.03030303,0.006019148,0.0073,0.1,72.24,positive,doi.org/10.1021/je0504865 +58,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0429,,0.1,23.757,positive,doi.org/10.1063/1.430349 +59,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.017,,0.1,29.71,positive,doi.org/10.1039/B301190A +42,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.004305154,0.006,10.1,205,negative,doi.org/10.1021/ie034302w +53,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,21.761,49.08,positive,doi.org/10.1016/S0378-3812(97)00157-X +60,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.129,,0.1,21.27,positive,doi.org/10.1039/B301190A +54,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.015481305,0.0211,6.55,55.35,positive,doi.org/10.1016/S0378-3812(97)00302-6 +18,8,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,100000,2,0.026755853,0.03,0.1,102.6,negative,doi.org/10.1021/ma00015a024 +2,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,2-propanone,67-64-1,CC(=O)C,44500,1.508474576,0.572171925,0.62,0.1,31,positive,See 1998SCH in ISBN: 9781420067989 +2,1,poly(vinyl chloride),9002-86-2,*CC(*)Cl,"1,2-dimethylbenzene",95-47-6,Cc1ccccc1C,75000,1.159196291,0.052537313,0.08,100,36,positive,doi.org/10.1002/macp.1985.021860409 +22,49,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22000,1.030010768,0.16084021,0.201,1.45,147.65,negative,doi.org/10.1002/polb.1994.090321315 +61,75,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,320000,2.5,0.032259929,0.043,0.1,26,positive,doi.org/10.1021/ma00040a033 +4,5,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,600000,1.099908341,0.059856432,0.069,0.1,148.5,negative,doi.org/10.1021/ma00015a024 +62,76,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.010274882,0.0138,0.1,22.37,positive,See 1996RON in ISBN: 9781420067989 +1,77,polystyrene,9003-53-6,*C(C*)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,1971000,1.260230179,0.008356705,0.01,0.1,235.5,negative,doi.org/10.1016/0032-3861(95)91454-F +55,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.234042447,0.2952,81.49,18.98,positive,doi.org/10.1063/1.464440 +16,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.085973967,0.111,0.31,57.73,positive,doi.org/10.1021/ma00107a011 +63,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0417,,0.1,23.754,positive,doi.org/10.1063/1.430349 +8,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],123000,1.060344828,0.058,,0.1,24.86,positive,doi.org/10.1039/B301190A +56,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.141965772,0.18487,80,21.194,positive,doi.org/10.1002/macp.1994.021950233 +57,39,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,670000,1.098360656,0.042444715,0.05728,0.1,61.459,positive,doi.org/10.1021/ma60032a020 +7,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.045441935,0.065,11.79,170,negative,doi.org/10.1021/je0103162 +23,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.202445508,0.2499,1.308,77.648,positive,doi.org/10.1021/ma9517308 +64,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.014240582,0.0191,0.1,19.99,positive,See 1984GIL in ISBN: 9781420067989 +2,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,61400,1.04957265,0.081944132,0.1141,0.1,16.3,positive,doi.org/10.1016/0032-3861(95)91454-F +17,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.114095631,0.146,0.47,63.91,positive,doi.org/10.1021/ma00107a011 +14,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.119576843,0.1124,0.61,14.92,positive,doi.org/10.1006/jcht.1999.0607 +58,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.1465,,0.1,22.817,positive,doi.org/10.1063/1.439127 +19,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.183678109,0.202,0.1,120.2,negative,doi.org/10.1021/ma00015a024 +24,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.168421053,0.21,2.602,-4.68,positive,doi.org/10.1021/ma9517308 +15,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.187744248,0.1773,4.74,13.84,positive,doi.org/10.1006/jcht.1999.0607 +65,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0454,,0.1,30.458,positive,doi.org/10.1103/PhysRevA.18.2683 +4,79,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,791000,1.010217114,0.022888873,0.03196,0.1,12.9,positive,doi.org/10.1627/jpi1958.33.117 +25,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.246153846,0.3,5.566,-4.705,positive,doi.org/10.1021/ma9517308 +66,80,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.069915362,0.092,0.1,27.05,positive,doi.org/10.1002/pol.1968.110060608 +59,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,58.94,29.56,positive,doi.org/10.1063/1.464440 +7,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.038025867,0.04167,3,32.58,negative,doi.org/10.1016/S0378-3812(01)00469-1 +67,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.08749553,0.11445,0.1,24.51,positive,See 1984GIL in ISBN: 9781420067989 +3,1,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,ethoxybenzene,103-73-1,CCOc1ccccc1,24500,2.289719626,0.400496997,0.4,0.1,35.3,positive,See 1998SCH in ISBN: 9781420067989 +43,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.003514777,0.0049,2.5,169.98,negative,doi.org/10.1016/j.fluid.2003.07.004 +2,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.066100094,0.08,0.1,-12.2,positive,doi.org/10.1016/0032-3861(95)91454-F +16,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.148118448,0.1395,1.33,-3.61,positive,doi.org/10.1006/jcht.1999.0607 +26,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.070072993,0.09,4.403,181.562,negative,doi.org/10.1021/ma9517308 +4,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.2291,0.2291,3.6,63.46,positive,doi.org/10.1006/jcht.1999.0607 +27,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.18607276,0.2308,4.683,163.914,negative,doi.org/10.1021/ma9517308 +68,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,97200,1.05997819,0.048125989,0.0638,0.1,229.06,negative,doi.org/10.1021/ma60032a020 +69,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0195,,0.1,30.452,positive,doi.org/10.1103/PhysRevA.18.2683 +70,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0897,,0.1,23.806,positive,doi.org/10.1063/1.430349 +1,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,"2,2-dimethylbutane",75-83-2,CCC(C)(C)C,1240,1.068965517,0.070971975,0.11,0.1,30.45,positive,doi.org/10.1016/S0378-3812(01)00548-9 +13,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,0.88,42.03,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +60,81,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,719000,1.060471976,0.0006,,0.1,56.226,positive,doi.org/10.1063/1.439127 +71,82,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.057,,0.1,25.71,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +61,61,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,181000,1.058479532,0.12,,0.1,53.357,positive,doi.org/10.1063/1.439127 +72,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0565,,0.1,26.202,positive,doi.org/10.1103/PhysRevE.55.3159 +62,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,2.3,56.23,positive,doi.org/10.1016/S0378-3812(97)00157-X +63,83,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,46400,1.059360731,0.1605,,0.1,39.294,positive,doi.org/10.1063/1.439127 +73,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.183328117,0.23229,0.1,23.92,positive,See 1984GIL in ISBN: 9781420067989 +64,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.212489212,0.27,15.124,21.93,positive,doi.org/10.1002/macp.1994.021950233 +2,41,polystyrene,9003-53-6,*C(C*)c1ccccc1,1-dodecanol,112-53-8,CCCCCCCCCCCCO,235000,2.100089366,0.681507196,0.73,0.1,110.8,positive,"See 2001HE1 ISBN: 9036516463, doi.org/10.1016/S0040-6031(01)00587-1" +5,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.0738,0.0738,1.8,67.1,positive,doi.org/10.1006/jcht.1999.0607 +20,9,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,151000,3.696450428,0.0076,,0.1,106.8,negative,See 2001FIS in ISBN: 9781420067989 +44,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.067892668,0.0923,1.79,163.25,negative,doi.org/10.1016/j.supflu.2005.08.004 +65,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.115562594,0.1519,14.05,29.02,positive,doi.org/10.1016/S0378-3812(97)00302-6 +14,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,2.44,109.98,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +21,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.4173,,0.1,143.5,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +66,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,81.2,20.2,positive,doi.org/10.1063/1.464440 +28,49,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22000,1.030010768,0.16084021,0.201,0.21,88.9,positive,doi.org/10.1002/polb.1994.090321315 +74,84,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0092,,0.1,222.47,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +6,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.175485948,0.204,0.68,96.18,negative,doi.org/10.1021/ma00107a011 +7,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.1561,,0.1,34.623,positive,doi.org/10.1063/1.472437 +67,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,19.61,31.62,positive,doi.org/10.1063/1.464440 +75,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.242995461,0.302,0.1,21,positive,doi.org/10.1002/macp.1965.020880115 +6,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,5.011,21.524,positive,doi.org/10.1021/ma9517308 +22,10,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8000,1.6,0.026755853,0.03,0.1,280.9,positive,doi.org/10.1021/ma00015a024 +21,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.1322,0.1322,5.44,48.39,positive,doi.org/10.1006/jcht.1999.0607 +23,7,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8420,1.24925816,0.145441381,0.1607,0.1,284.7,positive,doi.org/10.1016/0378-3812(93)85105-U +15,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.13205856,0.17,1.34,42.07,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +5,3,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,280000,1.060606061,0.065805435,0.0788,0.1,76.97,positive,doi.org/10.1021/je0504865 +5,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.113770676,0.1069,3.53,38.03,positive,doi.org/10.1006/jcht.1999.0607 +3,4,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20100,1.020304569,0.212772405,0.275,0.1,32.04,positive,doi.org/10.1021/je990141k +68,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,200000,1.058201058,0.076121452,0.10148,0.1,54.008,positive,doi.org/10.1021/ma60032a020 +8,2,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,144000,2.057142857,0.027987201,0.0307,55.85,40.15,negative,doi.org/10.1021/ma011533a +45,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.067892668,0.0923,5.905,192.76,negative,doi.org/10.1016/j.supflu.2005.08.004 +46,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.038986749,0.0536,8,200,negative,doi.org/10.1016/j.fluid.2003.07.004 +22,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.2265,0.2265,4.96,36.28,positive,doi.org/10.1006/jcht.1999.0607 +47,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.037067837,0.051,2.8,199,negative,doi.org/10.1021/ie034302w +69,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.165808321,0.21412,20,21.732,positive,doi.org/10.1002/macp.1994.021950233 +29,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.168421053,0.21,2.82,-3.173,positive,doi.org/10.1021/ma9517308 +7,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.135832598,0.15,3.46,96.91,negative,doi.org/10.1021/ma00107a011 +17,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.154212561,0.1453,4.52,-4.08,positive,doi.org/10.1006/jcht.1999.0607 +6,5,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,68000,1.03030303,0.008745233,0.0106,0.1,70.87,positive,doi.org/10.1021/je0504865 +5,86,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,171900,1.029958059,0.112673994,0.1518,0.1,169.6,negative,doi.org/10.1002/pen.760330806 +18,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.249063489,0.2362,1.78,-4.27,positive,doi.org/10.1006/jcht.1999.0607 +70,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,7.435,53.28,positive,doi.org/10.1016/S0378-3812(97)00157-X +19,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.197460596,0.1866,4.95,-4.26,positive,doi.org/10.1006/jcht.1999.0607 +48,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.026345536,0.0364,6.6,200.4,negative,doi.org/10.1016/j.fluid.2003.07.004 +71,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,7.334,54.52,positive,doi.org/10.1016/S0378-3812(97)00157-X +72,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,76.49,20.05,positive,doi.org/10.1063/1.464440 +76,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.009229156,0.0124,0.1,23.28,positive,See 1986KRU in ISBN: 9781420067989 +77,29,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,111000,1.050141911,0.07928629,0.104,0.1,21.32,positive,See 1986KRU in ISBN: 9781420067989 +73,87,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,109000,1.058252427,0.0344,,0.1,48.849,positive,doi.org/10.1063/1.439127 +6,88,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,1300000,1.050080775,0.026486846,0.03693,0.1,14,positive,doi.org/10.1627/jpi1958.33.117 +78,26,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0416,,0.1,27.15,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +49,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.012959657,0.018,6.9,242,negative,doi.org/10.1021/ie034302w +50,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.162223041,0.2128,6.45,215.05,negative,See 2001TOR in ISBN: 9781420067989 +79,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.044380386,0.05891,0.1,25.58,positive,See 1986KRU in ISBN: 9781420067989 +23,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2242,0.2242,2.66,6.01,positive,doi.org/10.1006/jcht.1999.0607 +4,7,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,75600,1.05,0.034754561,0.0481,0.1,55.85,positive,doi.org/10.1021/je990141k +8,2,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,596000,1.040139616,0.1142,,0.1,58.574,positive,doi.org/10.1063/1.472437 +51,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.031034654,0.0428,9.4,200,negative,doi.org/10.1021/ie034302w +4,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,233000,1.059090909,0.025721731,0.031,0.1,-4.1,positive,doi.org/10.1021/ma00015a024 +74,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.037801129,0.0511,11.3,53.08,positive,doi.org/10.1016/S0378-3812(97)00302-6 +7,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.143286669,0.1699,1.418,163.485,negative,doi.org/10.1021/ma9517308 +80,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.1344,,0.1,25.081,positive,doi.org/10.1103/PhysRevE.55.3159 +75,89,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37900,1.010666667,0.168095238,0.2169,0.1,36.9,positive,See 1996RON in ISBN: 9781420067989 +2,90,polystyrene,9003-53-6,*C(C*)c1ccccc1,methyl acetate,79-20-9,COC(=O)C,190000,1.038251366,0.026934776,0.0304,0.1,25.76,positive,doi.org/10.1016/S0378-3812(99)00128-4 +76,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.192338678,0.2461,85.51,19.88,positive,doi.org/10.1063/1.464440 +24,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1503,0.1503,1.9,24.09,positive,doi.org/10.1006/jcht.1999.0607 +25,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.1119,0.1119,3.26,49.19,positive,doi.org/10.1006/jcht.1999.0607 +18,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,11500,1.069767442,0.128755246,0.164,0.1,-24.97,positive,doi.org/10.1063/1.1143329 +19,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.127937264,0.163,1.2,57.75,positive,doi.org/10.1021/ma00107a011 +81,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.012218958,0.0164,0.1,26.42,positive,See 1986KRU in ISBN: 9781420067989 +3,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.128,,60,15.25,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +20,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.249063489,0.2362,4.07,-4.47,positive,doi.org/10.1006/jcht.1999.0607 +77,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.117960635,0.15492,10,22.735,positive,doi.org/10.1002/macp.1994.021950233 +21,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.081489244,0.0764,0.49,-4.64,positive,doi.org/10.1006/jcht.1999.0607 +7,5,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,68000,1.03030303,0.01744035,0.0211,0.1,72.05,positive,doi.org/10.1021/je0504865 +52,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.053694841,0.0734,3.223,172.45,negative,doi.org/10.1016/j.supflu.2005.08.004 +1,5,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,22920,1.070028011,0.050686241,0.0744,0.1,167,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +53,9,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,15500,1.076388889,0.102800076,0.1379,3.2,190,negative,doi.org/10.1016/j.fluid.2003.07.004 +22,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.127803169,0.1202,4.71,-3.97,positive,doi.org/10.1006/jcht.1999.0607 +26,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0645,0.0645,5.61,48.57,positive,doi.org/10.1006/jcht.1999.0607 +78,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,1.157,58.23,positive,doi.org/10.1016/S0378-3812(97)00157-X +6,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.1543,0.1543,0.48,67.32,positive,doi.org/10.1006/jcht.1999.0607 +7,92,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,184000,1.069767442,0.05904972,0.08126,0.1,5.6,positive,doi.org/10.1627/jpi1958.33.117 +24,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0353,,0.1,115.5,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +79,71,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,90000,1.039981511,0.156043794,0.2022,0.1,46.95,positive,doi.org/10.1016/j.eurpolymj.2003.09.027 +54,9,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,15500,1.076388889,0.087988304,0.1187,3.2,189.95,negative,doi.org/10.1016/j.fluid.2003.07.004 +20,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,11500,1.069767442,0.208429179,0.259,0.1,-26.3,positive,doi.org/10.1063/1.1143329 +27,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.134,0.134,0.15,6.6,positive,doi.org/10.1006/jcht.1999.0607 +80,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,5.739,55.96,positive,doi.org/10.1016/S0378-3812(97)00157-X +5,4,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20100,1.020304569,0.135258687,0.18,0.1,32.626,positive,doi.org/10.1021/je990141k +81,89,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37900,1.010666667,0.100019438,0.1322,0.1,37.24,positive,See 1996RON in ISBN: 9781420067989 +82,33,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,2700000,1.099796334,0.014079976,0.0192,0.1,66.495,positive,doi.org/10.1021/ma60032a020 +9,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.627916638,0.6499,0.1,29.08,negative,doi.org/10.1016/S0022-2860(00)00559-7 +82,76,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.062616228,0.0826,0.1,24.02,positive,See 1996RON in ISBN: 9781420067989 +83,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.133698077,0.1722,0.1,25.02,positive,See 1986KRU in ISBN: 9781420067989 +55,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.060586478,0.0826,2.564,168.01,negative,doi.org/10.1016/j.supflu.2005.08.004 +56,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.187363134,0.2435,6.199,206.879,negative,doi.org/10.1016/j.supflu.2005.08.004 +10,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.335917313,0.3575,0.1,27.7,negative,doi.org/10.1016/S0022-2860(00)00559-7 +3,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.032838507,0.04,0.1,-30.6,positive,doi.org/10.1016/0032-3861(95)91454-F +9,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.1124,,0.1,20.305,positive,doi.org/10.1063/1.472437 +84,76,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.018292335,0.0245,0.1,23.1,positive,See 1996RON in ISBN: 9781420067989 +28,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0457,0.0457,4.21,48.48,positive,doi.org/10.1006/jcht.1999.0607 +6,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.184397996,0.1741,4.85,36.5,positive,doi.org/10.1006/jcht.1999.0607 +7,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.175485948,0.204,0.4,89.68,negative,doi.org/10.1021/ma00107a011 +16,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.126382966,0.163,3.65,36,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +85,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.053,,0.1,26.22,positive,doi.org/10.1039/B301190A +83,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37000,1.06017192,0.068468364,0.09153,0.1,34.957,positive,doi.org/10.1021/ma60032a020 +7,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.184397996,0.1741,1.67,37.36,positive,doi.org/10.1006/jcht.1999.0607 +86,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.102833386,0.13382,0.1,24.1,positive,See 1984GIL in ISBN: 9781420067989 +29,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2634,0.2634,5.56,4.93,positive,doi.org/10.1006/jcht.1999.0607 +84,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,24.305,49.35,positive,doi.org/10.1016/S0378-3812(97)00157-X +10,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.2438,,0.1,31.973,positive,doi.org/10.1063/1.472437 +30,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.133912138,0.1687,4.593,163.832,negative,doi.org/10.1021/ma9517308 +87,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0457,,0.1,23.793,positive,doi.org/10.1063/1.430349 +17,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.145931506,0.187,0.52,48.92,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +85,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,35.485,47.37,positive,doi.org/10.1016/S0378-3812(97)00157-X +4,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.042,,50,10.05,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +3,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.18671193,0.22,0.1,-14.4,positive,doi.org/10.1016/0032-3861(95)91454-F +25,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0493,,0.1,116.1,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +88,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.10935841,0.142,0.1,26.8,positive,doi.org/10.1002/macp.1965.020880115 +89,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.149954672,0.1921,0.1,23.79,positive,See 1986KRU in ISBN: 9781420067989 +86,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,3.44,57.76,positive,doi.org/10.1016/S0378-3812(97)00157-X +87,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.082475925,0.1097,5.05,29.91,positive,doi.org/10.1016/S0378-3812(97)00302-6 +90,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1391,,0.1,23.082,positive,doi.org/10.1063/1.430349 +4,3,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,11570,1.150099404,0.104050169,0.1594,0.1,159.4,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +5,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.084,,40,11.95,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +88,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.159149407,0.206,3.05,31.8,positive,doi.org/10.1016/S0378-3812(97)00302-6 +11,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.038053348,0.0417,5,32.75,negative,doi.org/10.1021/ma011533a +30,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0727,0.0727,0.36,23.1,positive,doi.org/10.1006/jcht.1999.0607 +31,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.102211302,0.13,0.508,-4.753,positive,doi.org/10.1021/ma9517308 +89,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,14.51,20.98,positive,doi.org/10.1063/1.464440 +91,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.183924317,0.233,0.1,24,positive,doi.org/10.1002/macp.1965.020880115 +90,87,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,109000,1.058252427,0.1924,,0.1,47.071,positive,doi.org/10.1063/1.439127 +12,7,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,76000,2.397476341,0.012743492,0.014,0.1,31.2,negative,doi.org/10.1021/la00038a064 +26,7,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8420,1.24925816,0.469791078,0.4992,0.1,260.2,positive,doi.org/10.1016/0378-3812(93)85105-U +8,3,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,280000,1.060606061,0.043469225,0.0523,0.1,77.7,positive,doi.org/10.1021/je0504865 +57,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.087451445,0.118,2.3,170.4,negative,doi.org/10.1021/ie034302w +92,73,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,41000,5.125,0.152338403,0.195,0.1,25.7,positive,doi.org/10.1002/pi.4980080407 +18,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.085273484,0.1115,3.11,139.07,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +32,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,3.149,70.81,positive,doi.org/10.1021/ma9517308 +91,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.015481305,0.0211,9.25,54.09,positive,doi.org/10.1016/S0378-3812(97)00302-6 +31,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0355,0.0355,1.98,48.79,positive,doi.org/10.1006/jcht.1999.0607 +6,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.128,,20,12.95,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +92,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.1402,,0.1,22.8,positive,doi.org/10.1063/1.439127 +93,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.100193222,0.1305,0.1,26.32,positive,See 1986KRU in ISBN: 9781420067989 +8,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.143286669,0.1699,3.981,182.143,negative,doi.org/10.1021/ma9517308 +94,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.058,,0.1,26.21,positive,doi.org/10.1039/B301190A +33,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.193939394,0.24,4.305,-3.689,positive,doi.org/10.1021/ma9517308 +95,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.079,,0.1,25.89,positive,doi.org/10.1039/B301190A +96,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.03782388,0.05032,0.1,21,positive,See 1984GIL in ISBN: 9781420067989 +58,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.044167367,0.0606,7.944,207.09,negative,doi.org/10.1016/j.supflu.2005.08.004 +23,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.197460596,0.1866,1.49,-3.96,positive,doi.org/10.1006/jcht.1999.0607 +97,93,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0475,,0.1,25.77,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +59,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.000358203,0.0005,1.706,177.5,negative,doi.org/10.1016/j.supflu.2005.08.004 +9,7,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,992000,1.05982906,0.071910799,0.086,0.1,76.27,positive,doi.org/10.1021/je0504865 +27,1,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,11615,1.110739218,0.0484,,0.1,121.1,negative,See 2001FIS in ISBN: 9781420067989 +6,6,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,32900,1.018575851,0.033948874,0.047,0.1,40.85,positive,doi.org/10.1021/je990141k +19,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.134578869,0.1731,2.1,37.97,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +32,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.0714,0.0714,2.96,4.31,positive,doi.org/10.1006/jcht.1999.0607 +34,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.084136448,0.1076,1.086,146.873,negative,doi.org/10.1021/ma9517308 +60,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.147562055,0.19463,8.849,222.364,negative,doi.org/10.1016/j.supflu.2005.08.004 +98,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0416,,0.1,25.966,positive,doi.org/10.1103/PhysRevE.55.3159 +33,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1059,0.1059,3.57,42.59,positive,doi.org/10.1006/jcht.1999.0607 +24,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.239830986,0.2273,3.02,13.23,positive,doi.org/10.1006/jcht.1999.0607 +93,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,3.95,52.82,positive,doi.org/10.1016/S0378-3812(97)00157-X +99,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.092,,0.1,25.53,positive,doi.org/10.1039/B301190A +34,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0861,0.0861,1.56,23.49,positive,doi.org/10.1006/jcht.1999.0607 +11,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.2005,,0.1,46.177,positive,doi.org/10.1063/1.472437 +35,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.199003566,0.2459,4.676,164.031,negative,doi.org/10.1021/ma9517308 +94,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,29.965,48.44,positive,doi.org/10.1016/S0378-3812(97)00157-X +28,6,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,2530,1.171296296,0.082622362,0.092,0.1,226.4,positive,doi.org/10.1016/0378-3812(93)85105-U +95,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.092600847,0.12272,80,21.084,positive,doi.org/10.1002/macp.1994.021950233 +96,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.015481305,0.0211,7.95,54.72,positive,doi.org/10.1016/S0378-3812(97)00302-6 +61,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.042610985,0.0585,3.394,172.37,negative,doi.org/10.1016/j.supflu.2005.08.004 +100,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.211184141,0.26517,0.1,20.99,positive,See 1984GIL in ISBN: 9781420067989 +97,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.23818408,0.3,25.298,20.785,positive,doi.org/10.1002/macp.1994.021950233 +62,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.060811825,0.0829,8,199.98,negative,doi.org/10.1016/j.fluid.2003.07.004 +29,11,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,3350,1.595238095,0.371119637,0.399,0.1,164.9,negative,doi.org/10.1021/ma00015a024 +63,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.067892668,0.0923,3.905,177.9,negative,doi.org/10.1016/j.supflu.2005.08.004 +64,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.075696126,0.1026,6.5,190.01,negative,doi.org/10.1016/j.fluid.2003.07.004 +98,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,97200,1.05997819,0.078645843,0.10475,0.1,48.51,positive,doi.org/10.1021/ma60032a020 +65,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.059610426,0.0813,8.45,219.75,negative,See 2001TOR in ISBN: 9781420067989 +66,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.01259787,0.0175,10.4,205,negative,doi.org/10.1021/ie034302w +99,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.090479565,0.12,8.23,53.24,positive,doi.org/10.1016/S0378-3812(97)00157-X +36,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.224203822,0.275,4.304,63.926,positive,doi.org/10.1021/ma9517308 +3,94,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,849000,1.450042699,0.049873843,0.055,0.1,80.12,positive,doi.org/10.1021/je0504865 +35,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0622,0.0622,0.73,22.34,positive,doi.org/10.1006/jcht.1999.0607 +13,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.009008107,0.0099,0.1,30.48,negative,doi.org/10.1016/S0022-2860(00)00559-7 +100,95,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17300,1.061349693,0.2638,,0.1,22.116,positive,doi.org/10.1063/1.439127 +37,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.228571429,0.28,4.802,-3.31,positive,doi.org/10.1021/ma9517308 +101,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.087440389,0.11438,0.1,24.8,positive,See 1986KRU in ISBN: 9781420067989 +25,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.239830986,0.2273,3.53,13.14,positive,doi.org/10.1006/jcht.1999.0607 +102,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.016715303,0.0224,0.1,26.77,positive,See 1986KRU in ISBN: 9781420067989 +20,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.075072918,0.0985,3.58,106.98,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +2,4,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,31120,1.019993445,0.11677363,0.166,0.1,166.9,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +38,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.176884422,0.22,5.005,164.322,negative,doi.org/10.1021/ma9517308 +103,96,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,680000,1.019490255,0.041,,0.1,28.027,positive,doi.org/10.1016/0032-3861(73)90005-0 +104,35,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,335500,1.690176322,0.066028333,0.087,0.1,24.8,positive,See 1986KRU in ISBN: 9781420067989 +36,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.0633,0.0633,1.52,43.19,positive,doi.org/10.1006/jcht.1999.0607 +14,8,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,258000,2.15,0.026890297,0.0295,28.35,34.95,negative,doi.org/10.1021/ma011533a +67,9,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,15500,1.076388889,0.087988304,0.1187,1.9,180.06,negative,doi.org/10.1016/j.fluid.2003.07.004 +105,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.016535181,0.02216,0.1,21.98,positive,See 1984GIL in ISBN: 9781420067989 +6,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,13500,1.058823529,0.123399022,0.165,0.79,18.53,positive,doi.org/10.1021/ma00107a011 +106,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.032783492,0.04369,0.1,21,positive,See 1984GIL in ISBN: 9781420067989 +15,8,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,258000,2.15,0.026890297,0.0295,42.6,34.85,negative,doi.org/10.1021/ma011533a +5,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,100000,1.060445387,0.268156636,0.299,0.1,173.3,negative,doi.org/10.1021/ma00015a024 +68,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.053694841,0.0734,7.768,206.96,negative,doi.org/10.1016/j.supflu.2005.08.004 +8,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.197860168,0.229,0.83,67.67,positive,doi.org/10.1021/ma00107a011 +101,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.206896594,0.2634,1.05,31.88,positive,doi.org/10.1016/S0378-3812(97)00302-6 +107,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.144,,0.1,21.03,positive,doi.org/10.1039/B301190A +69,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.000358203,0.0005,7.281,221.88,negative,doi.org/10.1016/j.supflu.2005.08.004 +12,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.0634,,0.1,49.948,positive,doi.org/10.1063/1.472437 +21,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.109403402,0.1419,4.83,8.04,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +108,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.014615267,0.0196,0.1,24,positive,doi.org/10.1002/macp.1965.020880115 +1,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,61400,1.04957265,0.065663758,0.0799,0.1,-12.9,positive,doi.org/10.1016/0032-3861(95)91454-F +30,6,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,2530,1.171296296,0.04532198,0.0507,0.1,178,negative,doi.org/10.1016/0378-3812(93)85105-U +3,41,polystyrene,9003-53-6,*C(C*)c1ccccc1,1-dodecanol,112-53-8,CCCCCCCCCCCCO,235000,2.100089366,0.064388656,0.08,0.1,172.5,positive,"See 2001HE1 ISBN: 9036516463, doi.org/10.1016/S0040-6031(01)00587-1" +109,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.009,,0.1,18.54,positive,doi.org/10.1039/B301190A +70,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.237537236,0.3031,2.297,182.555,negative,doi.org/10.1016/j.supflu.2005.08.004 +39,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.143200418,0.1799,4.423,156.223,negative,doi.org/10.1021/ma9517308 +110,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.169546257,0.2158,0.1,22.5,positive,See 1984GIL in ISBN: 9781420067989 +9,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.175485948,0.204,1.11,68.16,positive,doi.org/10.1021/ma00107a011 +8,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.193308488,0.212,3.08,63.74,positive,doi.org/10.1021/ma00107a011 +40,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.246153846,0.3,1.022,-1.217,positive,doi.org/10.1021/ma9517308 +2,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,"2,2,4-trimethylpentane",540-84-1,CC(C)CC(C)(C)C,1240,1.068965517,0.172267862,0.24,0.1,-12.15,positive,doi.org/10.1016/S0378-3812(01)00548-9 +22,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.13205856,0.17,2.11,107.03,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +102,61,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,181000,1.058479532,0.1077,,0.1,53.61,positive,doi.org/10.1063/1.439127 +111,36,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,90000,1.040462428,0.01724079,0.0231,0.1,17.81,positive,doi.org/10.1016/S0378-3812(99)00128-4 +112,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.192346265,0.243,0.1,24,positive,doi.org/10.1002/macp.1965.020880115 +9,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,4.966,21.512,positive,doi.org/10.1021/ma9517308 +4,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.109291571,0.131,0.1,184,negative,doi.org/10.1016/0032-3861(95)91454-F +10,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.091732599,0.11,1.135,163.498,negative,doi.org/10.1021/ma9517308 +37,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0944,0.0944,5.17,23.09,positive,doi.org/10.1006/jcht.1999.0607 +1,1,polyisobutylene,9003-27-4,*CC(*)(C)C,n-heptane,142-82-5,CCCCCCC,1000000,1.666666667,0.018867925,0.025,1.3,170,negative,doi.org/10.1021/je010171z +103,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.192338678,0.2461,18.83,20.07,positive,doi.org/10.1063/1.464440 +113,74,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,101400,1.090322581,0.08163835,0.107,2.6,225.46,negative,doi.org/10.1016/S0896-8446(01)00144-9 +41,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.224203822,0.275,3.582,172.319,negative,doi.org/10.1021/ma9517308 +71,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.187363134,0.2435,3.094,182.295,negative,doi.org/10.1016/j.supflu.2005.08.004 +16,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.375988077,0.3986,0.1,27.4,negative,doi.org/10.1016/S0022-2860(00)00559-7 +3,5,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,22920,1.070028011,0.015733988,0.0235,0.1,168.4,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +31,10,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8000,1.6,0.520710059,0.55,0.1,230,positive,doi.org/10.1021/ma00015a024 +114,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.069292747,0.0912,0.1,24.85,positive,See 1984GIL in ISBN: 9781420067989 +115,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0413,,0.1,30.486,positive,doi.org/10.1103/PhysRevA.18.2683 +32,3,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,4490,1.130982368,0.336807003,0.3636,0.1,146.8,negative,doi.org/10.1016/0378-3812(93)85105-U +17,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.018315302,0.02011,0.1,33.59,negative,doi.org/10.1016/S0378-3812(01)00469-1 +10,7,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,992000,1.05982906,0.015698739,0.019,0.1,77.25,positive,doi.org/10.1021/je0504865 +116,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0532,,0.1,23.826,positive,doi.org/10.1063/1.430349 +5,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,100000,1.060445387,0.261269411,0.3,0.1,-26.1,positive,doi.org/10.1021/ma00015a024 +13,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.1203,,0.1,52.466,positive,doi.org/10.1063/1.472437 +38,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1654,0.1654,4.9,23.5,positive,doi.org/10.1006/jcht.1999.0607 +18,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.004456531,0.0049,0.1,33.25,negative,doi.org/10.1016/S0022-2860(00)00559-7 +104,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.1111,,0.1,23.212,positive,doi.org/10.1063/1.479914 +9,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.033,,0.1,30.03,positive,doi.org/10.1039/B301190A +2,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,600000,1.099908341,0.097286618,0.1144,0.1,239.9,negative,doi.org/10.1016/0032-3861(95)91454-F +8,86,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,171900,1.029958059,0.039803942,0.0552,0.1,168.8,negative,doi.org/10.1002/pen.760330806 +117,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.060603703,0.08,0.1,27.3,positive,doi.org/10.1002/macp.1965.020880115 +4,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.178929363,0.211,0.1,-24.6,positive,doi.org/10.1016/0032-3861(95)91454-F +72,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.048847856,0.0669,6.644,197.16,negative,doi.org/10.1016/j.supflu.2005.08.004 +7,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.0848,0.0848,1.62,67.29,positive,doi.org/10.1006/jcht.1999.0607 +39,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0307,0.0307,4.14,46.89,positive,doi.org/10.1006/jcht.1999.0607 +105,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,37.76,19.63,positive,doi.org/10.1063/1.464440 +106,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,56.19,19.57,positive,doi.org/10.1063/1.464440 +107,87,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,109000,1.058252427,0.0635,,0.1,49.527,positive,doi.org/10.1063/1.439127 +40,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.0833,0.0833,3.84,6.25,positive,doi.org/10.1006/jcht.1999.0607 +42,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,1.67,139.874,negative,doi.org/10.1021/ma9517308 +14,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.1206,,0.1,43.685,positive,doi.org/10.1063/1.472437 +118,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1073,,0.1,23.67,positive,doi.org/10.1063/1.430349 +19,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.185090879,0.1999,0.1,28.25,negative,doi.org/10.1016/S0022-2860(00)00559-7 +73,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.004305154,0.006,9,196,negative,doi.org/10.1021/ie034302w +21,53,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,16600,1.050632911,0.141900377,0.18,52.5,-14.25,positive,doi.org/10.1039/B109405J +108,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.239247257,0.30123,80,20.819,positive,doi.org/10.1002/macp.1994.021950233 +109,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37000,1.06017192,0.108969257,0.14357,0.1,245.982,negative,doi.org/10.1021/ma60032a020 +119,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.020698742,0.0277,0.1,26.85,positive,See 1986KRU in ISBN: 9781420067989 +7,6,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,32900,1.018575851,0.124997435,0.167,0.1,43.85,positive,doi.org/10.1021/je990141k +8,6,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,32900,1.018575851,0.01361295,0.019,0.1,35.85,positive,doi.org/10.1021/je990141k +3,1,poly(vinyl chloride),9002-86-2,*CC(*)Cl,"1,2-dimethylbenzene",95-47-6,Cc1ccccc1C,75000,1.159196291,0.052537313,0.08,25,47.4,positive,doi.org/10.1002/macp.1985.021860409 +120,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1329,,0.1,23.173,positive,doi.org/10.1063/1.430349 +22,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.127937264,0.163,0.92,60.94,positive,doi.org/10.1021/ma00107a011 +110,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.097275917,0.1287,74.73,20.09,positive,doi.org/10.1063/1.464440 +11,7,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,992000,1.05982906,0.039445963,0.0475,0.1,77.36,positive,doi.org/10.1021/je0504865 +111,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.074826302,0.0998,87.28,20.36,positive,doi.org/10.1063/1.464440 +121,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,25000,1.059322034,0.084,,0.1,6.87,positive,doi.org/10.1039/B301190A +74,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.061488104,0.0838,8,195,negative,doi.org/10.1021/ie034302w +4,5,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,22920,1.070028011,0.007133087,0.0107,0.1,169,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +122,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.03782388,0.05032,0.1,26.82,positive,See 1984GIL in ISBN: 9781420067989 +75,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.047765372,0.065445,9.069,216.7,negative,doi.org/10.1016/j.supflu.2005.08.004 +41,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1801,0.1801,1.52,6.3,positive,doi.org/10.1006/jcht.1999.0607 +76,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.076532282,0.1037,6.49,197.09,negative,See 2000BEH in ISBN: 9781420067989 +33,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0321,,0.1,115.6,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +77,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.027077076,0.0374,5.9,181,negative,doi.org/10.1021/ie034302w +43,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.224203822,0.275,0.47,80.608,positive,doi.org/10.1021/ma9517308 +112,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.234042447,0.2952,15.2,19.55,positive,doi.org/10.1063/1.464440 +5,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.032802249,0.04,0.1,-16.3,positive,doi.org/10.1016/0032-3861(95)91454-F +8,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.056199822,0.08,6.2,130,negative,doi.org/10.1021/je0103162 +1,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,600000,1.099908341,0.082764346,0.0977,0.1,216.1,negative,doi.org/10.1016/0032-3861(95)91454-F +4,41,polystyrene,9003-53-6,*C(C*)c1ccccc1,1-dodecanol,112-53-8,CCCCCCCCCCCCO,235000,2.100089366,0.637886727,0.69,0.1,130.4,positive,"See 2001HE1 ISBN: 9036516463, doi.org/10.1016/S0040-6031(01)00587-1" +23,53,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,16600,1.050632911,0.141900377,0.18,37,-8.15,positive,doi.org/10.1039/B109405J +1,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,"2,3-dimethylbutane",79-29-8,CC(C)C(C)C,1240,1.068965517,0.051974562,0.08,0.1,9.45,positive,doi.org/10.1016/S0378-3812(01)00548-9 +113,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.058586078,0.0786,77.47,19.73,positive,doi.org/10.1063/1.464440 +11,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.169547249,0.1999,1.572,31.459,positive,doi.org/10.1021/ma9517308 +123,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.007438245,0.01,0.1,25,positive,doi.org/10.1002/macp.1965.020880115 +44,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,3.093,70.673,positive,doi.org/10.1021/ma9517308 +114,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,26.992,48,positive,doi.org/10.1016/S0378-3812(97)00157-X +20,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.280565992,0.3002,0.1,27.55,negative,doi.org/10.1016/S0022-2860(00)00559-7 +21,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.231320864,0.2487,0.1,27.75,negative,doi.org/10.1016/S0022-2860(00)00559-7 +45,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.202445508,0.2499,0.269,84.69,positive,doi.org/10.1021/ma9517308 +34,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.017,,0.1,143.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +24,53,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,16600,1.050632911,0.141900377,0.18,6.15,143.85,negative,doi.org/10.1039/B109405J +35,6,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,2530,1.171296296,0.398362319,0.4269,0.1,214.2,positive,doi.org/10.1016/0378-3812(93)85105-U +25,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.082791819,0.107,1.47,8.15,positive,doi.org/10.1021/ma00107a011 +26,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.168519092,0.212,1.55,10.48,positive,doi.org/10.1021/ma00107a011 +23,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.096178884,0.1253,1.35,10.53,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +9,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.205461162,0.225,2.73,90.33,negative,doi.org/10.1021/ma00107a011 +115,87,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,109000,1.058252427,0.1052,,0.1,49.527,positive,doi.org/10.1063/1.439127 +124,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.10823963,0.1406,0.1,25.52,positive,See 1986KRU in ISBN: 9781420067989 +125,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0222,,0.1,23.198,positive,doi.org/10.1063/1.430349 +36,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.2368,,0.1,132.55,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +7,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.172,,80,15.35,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +37,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.044692737,0.05,0.1,295.1,positive,doi.org/10.1021/ma00015a024 +6,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,233000,1.059090909,0.042465633,0.051,0.1,130.2,negative,doi.org/10.1021/ma00015a024 +126,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.045,,0.1,26.048,positive,doi.org/10.1103/PhysRevE.55.3159 +127,20,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0533,,0.1,25.6,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +22,2,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,144000,2.057142857,0.027987201,0.0307,47.7,40.05,negative,doi.org/10.1021/ma011533a +116,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.192338678,0.2461,22.85,19.8,positive,doi.org/10.1063/1.464440 +42,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1126,0.1126,0.39,24.1,positive,doi.org/10.1006/jcht.1999.0607 +78,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.114880564,0.1534,2.103,167.55,negative,doi.org/10.1016/j.supflu.2005.08.004 +46,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.084136448,0.1076,2.973,70.95,positive,doi.org/10.1021/ma9517308 +43,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2634,0.2634,4.45,5.02,positive,doi.org/10.1006/jcht.1999.0607 +117,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,200000,1.058201058,0.06707307,0.08971,0.1,226.615,negative,doi.org/10.1021/ma60032a020 +38,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.084,,0.1,131.95,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +12,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.117493871,0.1401,1.272,31.924,positive,doi.org/10.1021/ma9517308 +10,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],2000000,1.299967501,0.041,,0.1,34.18,positive,doi.org/10.1039/B301190A +118,98,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.060790274,0.2542,,0.1,33.698,positive,doi.org/10.1063/1.439127 +79,9,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,15500,1.076388889,0.060436268,0.0824,4.8,199.97,negative,doi.org/10.1016/j.fluid.2003.07.004 +13,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.117493871,0.1401,4.999,190.356,negative,doi.org/10.1021/ma9517308 +128,93,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.1167,,0.1,225.03,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +9,4,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20100,1.020304569,0.234794413,0.301,0.1,28.63,positive,doi.org/10.1021/je990141k +24,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.042437227,0.0563,4.94,-5.08,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +80,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.076532282,0.1037,5.39,189,negative,See 2000BEH in ISBN: 9781420067989 +129,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.022430822,0.03,0.1,27.9,positive,doi.org/10.1002/macp.1965.020880115 +130,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.062097352,0.08193,0.1,24,positive,See 1984GIL in ISBN: 9781420067989 +15,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.176,,0.1,34.416,positive,doi.org/10.1063/1.472437 +131,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.03525969,0.04695,0.1,24,positive,See 1984GIL in ISBN: 9781420067989 +2,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,600000,1.099908341,0.059277872,0.0703,0.1,216.8,negative,doi.org/10.1016/0032-3861(95)91454-F +44,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1179,0.1179,4.4,6.15,positive,doi.org/10.1006/jcht.1999.0607 +132,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0237,,0.1,23.284,positive,doi.org/10.1063/1.430349 +119,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,4.451,57.08,positive,doi.org/10.1016/S0378-3812(97)00157-X +47,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.133912138,0.1687,3.946,155.379,negative,doi.org/10.1021/ma9517308 +133,84,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0881,,0.1,223.11,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +23,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.04557036,0.0499,0.1,31.71,negative,doi.org/10.1016/S0022-2860(00)00559-7 +81,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.097457804,0.131,3.6,169.99,negative,doi.org/10.1016/j.fluid.2003.07.004 +134,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1207,,0.1,23.469,positive,doi.org/10.1063/1.430349 +5,5,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,10500,1.019417476,0.175925926,0.209,2.02,-38.55,positive,doi.org/10.1021/ma00107a011 +39,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.2538,,0.1,133.15,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +135,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.14905148,0.191,0.1,26,positive,doi.org/10.1002/macp.1965.020880115 +48,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.133912138,0.1687,4.56,163.834,negative,doi.org/10.1021/ma9517308 +40,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.2608,,0.1,133.45,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +120,25,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.1576,,0.1,12.481,positive,doi.org/10.1063/1.439127 +82,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.217026822,0.279,5.4,263.5,negative,doi.org/10.1021/ie034302w +24,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.533875988,0.5575,0.1,27.65,negative,doi.org/10.1016/S0022-2860(00)00559-7 +41,3,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,4490,1.130982368,0.271773721,0.2957,0.1,254.3,positive,doi.org/10.1016/0378-3812(93)85105-U +121,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,2.65,34.95,positive,doi.org/10.1063/1.464440 +122,83,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,46400,1.059360731,0.2501,,0.1,36.625,positive,doi.org/10.1063/1.439127 +136,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0551,,0.1,23.828,positive,doi.org/10.1063/1.430349 +123,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,3.51,53,positive,doi.org/10.1016/S0378-3812(97)00157-X +124,33,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,2700000,1.099796334,0.034594398,0.04682,0.1,215.403,negative,doi.org/10.1021/ma60032a020 +137,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.009826621,0.0132,0.1,23,positive,doi.org/10.1002/macp.1965.020880115 +11,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],2000000,1.299967501,0.014,,0.1,34.1,positive,doi.org/10.1039/B301190A +138,55,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,100000,1.063829787,0.022430822,0.03,0.1,229.8,negative,doi.org/10.1002/app.1993.070470707 +14,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.143286669,0.1699,3.987,182.143,negative,doi.org/10.1021/ma9517308 +139,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.065756626,0.08665,0.1,25.35,positive,See 1986KRU in ISBN: 9781420067989 +26,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.075015907,0.0703,3.53,14.06,positive,doi.org/10.1006/jcht.1999.0607 +25,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.145931506,0.187,2.77,109.99,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +4,94,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,849000,1.450042699,0.017168189,0.019,0.1,80.35,positive,doi.org/10.1021/je0504865 +2,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,"2,2-dimethylbutane",75-83-2,CCC(C)(C)C,1240,1.068965517,0.112371796,0.17,0.1,36.65,positive,doi.org/10.1016/S0378-3812(01)00548-9 +140,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.014390444,0.0193,0.1,27.75,positive,See 1984GIL in ISBN: 9781420067989 +83,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.005599565,0.0078,3.964,182.25,negative,doi.org/10.1016/j.supflu.2005.08.004 +141,76,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.024089533,0.0322,0.1,23.46,positive,See 1996RON in ISBN: 9781420067989 +7,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,233000,1.059090909,0.127988446,0.151,0.1,-5.9,positive,doi.org/10.1021/ma00015a024 +142,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.261429223,0.323,0.1,20,positive,doi.org/10.1002/macp.1965.020880115 +125,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.058586078,0.0786,18.93,20.09,positive,doi.org/10.1063/1.464440 +5,67,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,4215,1.069796954,0.036672839,0.0405,0.1,39.76,positive,doi.org/10.1021/je0504865 +143,33,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2700000,1.099796334,0.022506176,0.0301,0.1,215.92,negative,doi.org/10.1021/ma60032a020 +45,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1977,0.1977,3.7,23.29,positive,doi.org/10.1006/jcht.1999.0607 +8,52,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,90000,1.040462428,0.045160918,0.054,0.1,7.9,positive,doi.org/10.1016/0032-3861(95)91454-F +126,33,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,2700000,1.099796334,0.007923954,0.01083,0.1,65.999,positive,doi.org/10.1021/ma60032a020 +84,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.045517759,0.06242,7.994,207.35,negative,doi.org/10.1016/j.supflu.2005.08.004 +26,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.085273484,0.1115,2.04,11.55,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +127,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.2557,,0.1,22.702,positive,doi.org/10.1063/1.479914 +144,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.029,,0.1,29.77,positive,doi.org/10.1039/B301190A +128,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.179543347,0.23075,80,21.216,positive,doi.org/10.1002/macp.1994.021950233 +25,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.492278637,0.5161,0.1,26.78,negative,doi.org/10.1016/S0022-2860(00)00559-7 +49,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.143200418,0.1799,3.456,139.496,negative,doi.org/10.1021/ma9517308 +145,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0169,,0.1,22.868,positive,doi.org/10.1063/1.430349 +9,99,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,43000,1.009389671,0.03016805,0.042,0.1,182.4,negative,doi.org/10.1002/pen.760330806 +85,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.114958864,0.1535,1.4,169.88,negative,doi.org/10.1016/j.fluid.2003.07.004 +16,2,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,596000,1.040139616,0.0189,,0.1,59.842,positive,doi.org/10.1063/1.472437 +86,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.060586478,0.0826,5.329,187.65,negative,doi.org/10.1016/j.supflu.2005.08.004 +15,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,5.407,190.779,negative,doi.org/10.1021/ma9517308 +129,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37000,1.06017192,0.08020755,0.10677,0.1,245.681,negative,doi.org/10.1021/ma60032a020 +1,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-hexane,110-54-3,CCCCCC,1240,1.068965517,0.108201626,0.162,0.1,1.45,positive,doi.org/10.1016/S0378-3812(01)00548-9 +146,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0052,,0.1,29.505,positive,doi.org/10.1103/PhysRevA.18.2683 +87,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.048847856,0.0669,2.594,167.65,negative,doi.org/10.1016/j.supflu.2005.08.004 +42,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.2128,,0.1,116.75,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +147,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,13200000,1.130136986,0.001,,0.1,31.03,positive,doi.org/10.1039/B301190A +16,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.091732599,0.11,1.141,163.509,negative,doi.org/10.1021/ma9517308 +27,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.123163812,0.1158,4.86,14.35,positive,doi.org/10.1006/jcht.1999.0607 +28,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.17424529,0.1644,3.25,-3.96,positive,doi.org/10.1006/jcht.1999.0607 +46,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.139,0.139,3.54,42,positive,doi.org/10.1006/jcht.1999.0607 +50,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.224203822,0.275,0.951,146.474,negative,doi.org/10.1021/ma9517308 +2,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,anisole,100-66-3,COc1ccccc1,44500,1.508474576,0.013406701,0.013,0.1,84.8,positive,See 1998SCH in ISBN: 9781420067989 +27,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.126382966,0.163,1.19,102.93,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +27,100,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,7800,1.18993135,0.158485273,0.2,0.1,-18.69,positive,doi.org/10.1063/1.1143329 +148,76,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.065795438,0.0867,0.1,24.01,positive,See 1996RON in ISBN: 9781420067989 +149,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.1509,,0.1,24.07,positive,doi.org/10.1103/PhysRevE.55.3159 +130,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.159149407,0.206,13.05,29.65,positive,doi.org/10.1016/S0378-3812(97)00302-6 +26,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.032560218,0.0357,0.1,33.35,negative,doi.org/10.1021/ma011533a +10,57,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],7800,1.181818182,0.256047526,0.293,0.1,11.57,positive,doi.org/10.1063/1.1143329 +150,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.012,,0.1,25.24,positive,doi.org/10.1039/B301190A +131,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.096806139,0.1281,14.05,28.53,positive,doi.org/10.1016/S0378-3812(97)00302-6 +132,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,3.1,53.2,positive,doi.org/10.1016/S0378-3812(97)00157-X +133,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.024291101,0.033,11.8,53.2,positive,doi.org/10.1016/S0378-3812(97)00302-6 +51,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.133912138,0.1687,3.198,93.253,positive,doi.org/10.1021/ma9517308 +1,1,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,20000,2.5,0.019428793,0.02,0.1,37.6,negative,doi.org/10.1021/jp0574854 +43,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.023,,0.1,140.25,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +3,46,polystyrene,9003-53-6,*C(C*)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,233000,1.060054595,0.066868512,0.0791,0.1,246.5,negative,doi.org/10.1016/0032-3861(95)91454-F +52,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.199003566,0.2459,5.451,85.299,positive,doi.org/10.1021/ma9517308 +151,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.112078944,0.1454,0.1,25.92,positive,See 1986KRU in ISBN: 9781420067989 +134,101,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,13000,1.056910569,0.185572593,0.238,0.1,18.19,positive,doi.org/10.1021/j100161a074 +152,75,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,320000,2.5,0.036818971,0.049,0.1,26,positive,doi.org/10.1021/ma00040a033 +88,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.027077076,0.0374,8.1,198,negative,doi.org/10.1021/ie034302w +135,83,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,46400,1.059360731,0.1545,,0.1,39.355,positive,doi.org/10.1063/1.439127 +1,8,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,424000,1.550274223,0.0588,,0.1,25.1,positive,See 1991LEE in ISBN: 9781420067989 +136,102,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.151967736,0.1972,11.28,11.43,positive,doi.org/10.1063/1.464440 +153,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.085016175,0.1113,0.1,26.73,positive,See 1986KRU in ISBN: 9781420067989 +154,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.046,,0.1,30.452,positive,doi.org/10.1103/PhysRevA.18.2683 +10,88,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,1300000,1.050080775,0.006488045,0.00912,0.1,13.6,positive,doi.org/10.1627/jpi1958.33.117 +17,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.169547249,0.1999,2.663,172.262,negative,doi.org/10.1021/ma9517308 +155,82,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0319,,0.1,26.58,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +2,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,31200,1.2,0.100007611,0.12,0.1,-34.3,positive,doi.org/10.1016/0032-3861(95)91454-F +9,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.084,,20,10.55,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +137,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.234042447,0.2952,50.41,18.25,positive,doi.org/10.1063/1.464440 +3,2,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,76500,1.100719424,0.057958011,0.0702,0.1,11.4,positive,doi.org/10.1016/0032-3861(95)91454-F +156,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.159669243,0.20389,0.1,23.52,positive,See 1984GIL in ISBN: 9781420067989 +47,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0861,0.0861,0.44,23.66,positive,doi.org/10.1006/jcht.1999.0607 +18,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.117493871,0.1401,1.286,163.514,negative,doi.org/10.1021/ma9517308 +157,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.191350063,0.24182,0.1,21.99,positive,See 1984GIL in ISBN: 9781420067989 +53,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.046376812,0.06,1.044,160.254,negative,doi.org/10.1021/ma9517308 +8,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.12580017,0.1183,4.48,37.62,positive,doi.org/10.1006/jcht.1999.0607 +158,70,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.058201058,0.003193735,0.0043,0.1,224.14,negative,doi.org/10.1021/ma60032a020 +138,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,8.75,54.96,positive,doi.org/10.1016/S0378-3812(97)00157-X +44,11,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,3350,1.595238095,0.062709966,0.07,0.1,244.9,positive,doi.org/10.1021/ma00015a024 +48,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2348,0.2348,3,5.64,positive,doi.org/10.1006/jcht.1999.0607 +54,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.29917988,0.3591,2.711,-3.634,positive,doi.org/10.1021/ma9517308 +5,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,61400,1.04957265,0.00816395,0.01,0.1,-9.8,positive,doi.org/10.1016/0032-3861(95)91454-F +159,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0314,,0.1,23.571,positive,doi.org/10.1063/1.430349 +29,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.08954642,0.084,0.27,14.91,positive,doi.org/10.1006/jcht.1999.0607 +27,8,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,258000,2.15,0.026890297,0.0295,60.95,34.75,negative,doi.org/10.1021/ma011533a +9,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.027741083,0.04,11.17,130,negative,doi.org/10.1021/je0103162 +89,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.103032843,0.1382,6.13,204.55,negative,See 2001TOR in ISBN: 9781420067989 +139,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,17.425,49.48,positive,doi.org/10.1016/S0378-3812(97)00157-X +90,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.005599565,0.0078,3.274,177.32,negative,doi.org/10.1016/j.supflu.2005.08.004 +55,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.202531646,0.25,0.845,-1.625,positive,doi.org/10.1021/ma9517308 +56,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.176799578,0.2199,3.13,70.654,positive,doi.org/10.1021/ma9517308 +10,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.205461162,0.225,3.13,96.88,negative,doi.org/10.1021/ma00107a011 +30,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.139704443,0.1315,4.77,14.34,positive,doi.org/10.1006/jcht.1999.0607 +140,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.074826302,0.0998,11.57,21.13,positive,doi.org/10.1063/1.464440 +91,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.047765372,0.065445,9.624,221.74,negative,doi.org/10.1016/j.supflu.2005.08.004 +141,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.037801129,0.0511,2.4,57.2,positive,doi.org/10.1016/S0378-3812(97)00302-6 +49,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.0337,0.0337,3.51,40.89,positive,doi.org/10.1006/jcht.1999.0607 +17,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.1082,,0.1,49.868,positive,doi.org/10.1063/1.472437 +160,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.037,,0.1,20.96,positive,doi.org/10.1039/B301190A +142,98,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.060790274,0.3057,,0.1,30.89,positive,doi.org/10.1063/1.439127 +10,6,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,32900,1.018575851,0.066509321,0.0909,0.1,43.85,positive,doi.org/10.1021/je990141k +161,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.049798908,0.06598,0.1,20.7,positive,See 1986KRU in ISBN: 9781420067989 +3,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,methyl acetate,79-20-9,COC(=O)C,100000,1.060445387,0.034589453,0.039,0.1,124.8,negative,doi.org/10.1021/ma00015a024 +143,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,18.135,50.21,positive,doi.org/10.1016/S0378-3812(97)00157-X +162,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,25000,1.059322034,0.069,,0.1,6.69,positive,doi.org/10.1039/B301190A +50,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.025,0.025,4.55,45.2,positive,doi.org/10.1006/jcht.1999.0607 +9,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.141282805,0.133,2.57,38.03,positive,doi.org/10.1006/jcht.1999.0607 +163,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0891,,0.1,23.811,positive,doi.org/10.1063/1.430349 +10,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.207685345,0.1964,2.45,35.91,positive,doi.org/10.1006/jcht.1999.0607 +144,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,78.36,29.76,positive,doi.org/10.1063/1.464440 +145,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.165808321,0.21412,70,20.909,positive,doi.org/10.1002/macp.1994.021950233 +164,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.123817849,0.16,0.1,27,positive,doi.org/10.1002/macp.1965.020880115 +146,89,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37900,1.010666667,0.054555712,0.0733,0.1,36.2,positive,See 1996RON in ISBN: 9781420067989 +165,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.029516206,0.03938,0.1,25.46,positive,See 1984GIL in ISBN: 9781420067989 +10,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.172,,60,14.15,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +11,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.218588314,0.239,3.12,58.06,positive,doi.org/10.1021/ma00107a011 +8,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.0995,0.0995,3.5,66.71,positive,doi.org/10.1006/jcht.1999.0607 +45,1,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,11615,1.110739218,0.0241,,0.1,137.5,negative,See 2001FIS in ISBN: 9781420067989 +2,2,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,728000,1.290780142,0.069413093,0.082,0.1,32.8,positive,doi.org/10.1016/0254-0584(83)90036-6 +6,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.016339869,0.02,0.1,197.3,negative,doi.org/10.1016/0032-3861(95)91454-F +166,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,25000,1.059322034,0.153,,0.1,7.13,positive,doi.org/10.1039/B301190A +167,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1491,,0.1,22.82,positive,doi.org/10.1063/1.430349 +168,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.226503046,0.283,0.1,22,positive,doi.org/10.1002/macp.1965.020880115 +51,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1654,0.1654,3.64,23.69,positive,doi.org/10.1006/jcht.1999.0607 +169,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.084575835,0.11074,0.1,24.64,positive,See 1984GIL in ISBN: 9781420067989 +147,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.065916504,0.0882,4.05,29.57,positive,doi.org/10.1016/S0378-3812(97)00302-6 +46,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0392,,0.1,135.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +11,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.084,,30,11.25,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +148,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.215463744,0.2735,70,20.642,positive,doi.org/10.1002/macp.1994.021950233 +52,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.3649,0.3649,4.02,15.95,positive,doi.org/10.1006/jcht.1999.0607 +170,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0769,,0.1,23.838,positive,doi.org/10.1063/1.430349 +18,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.0419,,0.1,42.994,positive,doi.org/10.1063/1.472437 +11,86,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,171900,1.029958059,0.028133682,0.0392,0.1,169.2,negative,doi.org/10.1002/pen.760330806 +92,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.005455676,0.0076,3.8,170.52,negative,doi.org/10.1016/j.fluid.2003.07.004 +53,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2348,0.2348,4.14,5.54,positive,doi.org/10.1006/jcht.1999.0607 +47,7,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8420,1.24925816,0.090614887,0.1008,0.1,288.8,positive,doi.org/10.1016/0378-3812(93)85105-U +12,103,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,354000,1.020172911,0.066918721,0.0918,0.1,164.4,negative,doi.org/10.1002/pen.760330806 +171,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0074,,0.1,27.01,positive,doi.org/10.1103/PhysRevE.55.3159 +12,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.197978407,0.217,3.33,56.89,positive,doi.org/10.1021/ma00107a011 +93,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.022402455,0.031,4.2,170,negative,doi.org/10.1016/j.fluid.2003.07.004 +57,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.102211302,0.13,1.511,-4.729,positive,doi.org/10.1021/ma9517308 +172,20,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0533,,0.1,223.84,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +6,2,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,78800,1.119318182,0.03022264,0.0334,0.1,76.89,positive,doi.org/10.1021/je0504865 +94,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.036330558,0.05,2.2,155,negative,doi.org/10.1021/ie034302w +149,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.024291101,0.033,5.65,55.86,positive,doi.org/10.1016/S0378-3812(97)00302-6 +11,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],11500,1.069767442,0.269877891,0.308,0.1,7.56,positive,doi.org/10.1063/1.1143329 +3,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,31200,1.2,0.046685403,0.066,0.1,2.1,positive,doi.org/10.1016/0032-3861(95)91454-F +4,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,methyl acetate,79-20-9,COC(=O)C,100000,1.060445387,0.007069482,0.008,0.1,125,negative,doi.org/10.1021/ma00015a024 +150,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,7.7,51.43,positive,doi.org/10.1016/S0378-3812(97)00157-X +28,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.114095631,0.146,0.86,89.16,negative,doi.org/10.1021/ma00107a011 +28,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.145931506,0.187,4.09,35.04,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +12,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],123000,1.060344828,0.067,,0.1,24.91,positive,doi.org/10.1039/B301190A +10,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.027741083,0.04,13.65,150,negative,doi.org/10.1021/je0103162 +2,9,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,227000,1.270285395,0.0679,,0.1,23.3,positive,See 1991LEE in ISBN: 9781420067989 +29,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.109403402,0.1419,4.39,141.98,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +151,87,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,109000,1.058252427,0.1471,,0.1,48.849,positive,doi.org/10.1063/1.439127 +173,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.007811168,0.0105,0.1,25.51,positive,See 1986KRU in ISBN: 9781420067989 +174,39,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,670000,1.098360656,0.011545712,0.0155,0.1,27.4,positive,doi.org/10.1021/ma60032a020 +28,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.068557725,0.0749,0.1,29.25,negative,doi.org/10.1016/S0022-2860(00)00559-7 +152,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,10.65,54.16,positive,doi.org/10.1016/S0378-3812(97)00157-X +29,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.52621506,0.5499,0.1,27.08,negative,doi.org/10.1016/S0022-2860(00)00559-7 +153,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,8.6,53.23,positive,doi.org/10.1016/S0378-3812(97)00157-X +1,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-octane,111-65-9,CCCCCCCC,1240,1.068965517,0.264150943,0.35,0.1,4.15,positive,doi.org/10.1016/S0378-3812(01)00548-9 +13,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.126636377,0.14,3.4,96.81,negative,doi.org/10.1021/ma00107a011 +19,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.015,,0.1,51.327,positive,doi.org/10.1063/1.472437 +175,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0906,,0.1,25.83,positive,doi.org/10.1103/PhysRevE.55.3159 +58,104,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,13500,1.058823529,0.126732673,0.16,2.554,34.142,positive,doi.org/10.1021/ma9517308 +48,8,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,100000,2,0.062709966,0.07,0.1,105.3,negative,doi.org/10.1021/ma00015a024 +2,1,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,20000,2.5,0.492610837,0.5,0.1,29.5,negative,doi.org/10.1021/jp0574854 +2,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,"2,3-dimethylbutane",79-29-8,CC(C)C(C)C,1240,1.068965517,0.093082115,0.14,0.1,12.05,positive,doi.org/10.1016/S0378-3812(01)00548-9 +13,86,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,171900,1.029958059,0.05032793,0.0695,0.1,168.8,negative,doi.org/10.1002/pen.760330806 +54,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1126,0.1126,4.62,23.43,positive,doi.org/10.1006/jcht.1999.0607 +12,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.085339266,0.101,1.05,61.4,positive,doi.org/10.1021/ma00107a011 +176,105,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,415000,1.058673469,0.043,,0.1,26.98,positive,doi.org/10.1016/0032-3861(73)90005-0 +13,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],13200000,1.130136986,0.0185,,0.1,36.7,positive,doi.org/10.1039/B301190A +177,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.059165665,0.07814,0.1,25.43,positive,See 1986KRU in ISBN: 9781420067989 +30,8,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,258000,2.15,0.003546712,0.0039,60.95,34.85,negative,doi.org/10.1021/ma011533a +14,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.126636377,0.14,4.45,57.19,positive,doi.org/10.1021/ma00107a011 +20,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.0968,,0.1,20.035,positive,doi.org/10.1063/1.472437 +49,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0274,,0.1,116.2,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +59,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.070072993,0.09,0.92,148.444,negative,doi.org/10.1021/ma9517308 +50,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0435,,0.1,115.6,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +19,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.221355036,0.2581,2.497,172.306,negative,doi.org/10.1021/ma9517308 +31,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.02268772,0.0249,0.1,32.48,negative,doi.org/10.1016/S0022-2860(00)00559-7 +154,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.093514303,0.12389,10,22.523,positive,doi.org/10.1002/macp.1994.021950233 +95,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.048847856,0.0669,3.349,172.58,negative,doi.org/10.1016/j.supflu.2005.08.004 +178,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0513,,0.1,30.4,positive,doi.org/10.1103/PhysRevA.18.2683 +55,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0861,0.0861,5.33,22.91,positive,doi.org/10.1006/jcht.1999.0607 +60,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,1.144,146.735,negative,doi.org/10.1021/ma9517308 +20,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.169547249,0.1999,0.674,33.686,positive,doi.org/10.1021/ma9517308 +155,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.17486215,0.2251,3.05,31.81,positive,doi.org/10.1016/S0378-3812(97)00302-6 +21,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.1338,,0.1,43.535,positive,doi.org/10.1063/1.472437 +156,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.037801129,0.0511,1.45,57.76,positive,doi.org/10.1016/S0378-3812(97)00302-6 +56,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1059,0.1059,2.42,42.9,positive,doi.org/10.1006/jcht.1999.0607 +61,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.046376812,0.06,0.893,64.151,positive,doi.org/10.1021/ma9517308 +31,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.197460596,0.1866,2.75,-4.08,positive,doi.org/10.1006/jcht.1999.0607 +11,7,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,75600,1.05,0.013973205,0.0195,0.1,53.85,positive,doi.org/10.1021/je990141k +96,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.114880564,0.1534,6.843,202.116,negative,doi.org/10.1016/j.supflu.2005.08.004 +30,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,0.36,44.16,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +57,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1179,0.1179,5.72,6.04,positive,doi.org/10.1006/jcht.1999.0607 +179,35,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,335500,1.690176322,0.071473052,0.094,0.1,24.66,positive,See 1986KRU in ISBN: 9781420067989 +32,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.022779043,0.025,0.1,30.11,negative,doi.org/10.1016/S0022-2860(00)00559-7 +5,106,polystyrene,9003-53-6,*C(C*)c1ccccc1,1-dodecanol,112-53-8,CCCCCCCCCCCCO,4000,1.081081081,0.346328809,0.401,0.1,106.6,positive,doi.org/10.1021/ma00001a026 +157,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.191618797,0.24524,0.1,24.431,positive,doi.org/10.1002/macp.1994.021950233 +180,30,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,600000,1.099908341,0.036895076,0.0491,0.1,28.21,positive,doi.org/10.1007/BF01525017 +62,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,2.988,71.824,positive,doi.org/10.1021/ma9517308 +158,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,19.405,51.29,positive,doi.org/10.1016/S0378-3812(97)00157-X +7,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.024555659,0.03,0.1,195.7,negative,doi.org/10.1016/0032-3861(95)91454-F +97,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.007183423,0.01,1.223,162.8,negative,doi.org/10.1016/j.supflu.2005.08.004 +6,41,polystyrene,9003-53-6,*C(C*)c1ccccc1,1-dodecanol,112-53-8,CCCCCCCCCCCCO,235000,2.100089366,0.605725267,0.66,0.1,120.1,positive,"See 2001HE1 ISBN: 9036516463, doi.org/10.1016/S0040-6031(01)00587-1" +14,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],13200000,1.130136986,0.0093,,0.1,36.73,positive,doi.org/10.1039/B301190A +159,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.048267639,0.065,2.75,233.97,negative,doi.org/10.1016/S0378-3812(97)00157-X +160,107,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20200,1.057591623,0.1003,,0.1,25.537,positive,doi.org/10.1063/1.439127 +58,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1651,0.1651,4.04,41.3,positive,doi.org/10.1006/jcht.1999.0607 +63,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.22839651,0.2798,2.759,156.312,negative,doi.org/10.1021/ma9517308 +31,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,0.65,43.03,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +59,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1799,0.1799,2.83,6.21,positive,doi.org/10.1006/jcht.1999.0607 +181,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0019,,0.1,28.617,positive,doi.org/10.1103/PhysRevA.18.2683 +161,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.12,,0.1,23.298,positive,doi.org/10.1063/1.479914 +13,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.111263273,0.131,1.28,96.14,negative,doi.org/10.1021/ma00107a011 +162,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,3.081,57.83,positive,doi.org/10.1016/S0378-3812(97)00157-X +98,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.007183423,0.01,2.738,172.78,negative,doi.org/10.1016/j.supflu.2005.08.004 +99,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.147562055,0.19463,0.989,162.738,negative,doi.org/10.1016/j.supflu.2005.08.004 +12,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.216,,70,8.35,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +15,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.057,,0.1,30.16,positive,doi.org/10.1039/B301190A +51,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0335,,0.1,136.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +100,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.114880564,0.1534,5.563,192.224,negative,doi.org/10.1016/j.supflu.2005.08.004 +13,52,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,90000,1.040462428,0.097460665,0.1153,0.1,8.2,positive,doi.org/10.1016/0032-3861(95)91454-F +182,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.014,,0.1,19.65,positive,doi.org/10.1039/B301190A +183,39,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,670000,1.098360656,0.051043327,0.0676,0.1,27.87,positive,doi.org/10.1021/ma60032a020 +12,7,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,75600,1.05,0.123190364,0.1647,0.1,54.65,positive,doi.org/10.1021/je990141k +29,108,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,8000,1.089918256,0.176928611,0.222,1.25,-20.32,positive,doi.org/10.1021/ma00107a011 +163,109,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,14000,1.059803179,0.108124573,0.1425,0.1,19.05,positive,doi.org/10.1016/j.eurpolymj.2003.09.027 +164,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,51.39,29.61,positive,doi.org/10.1063/1.464440 +184,110,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,45300,1.006666667,0.0682,,0.1,14,positive,doi.org/10.1002/pol.1981.180190913 +185,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.086353724,0.113,0.1,20.26,positive,See 1986KRU in ISBN: 9781420067989 +186,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.165,,0.1,26.024,positive,doi.org/10.1103/PhysRevA.18.2683 +165,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.114055986,0.15,38.55,20.742,positive,doi.org/10.1002/macp.1994.021950233 +60,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2048,0.2048,4.79,5.9,positive,doi.org/10.1006/jcht.1999.0607 +33,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.044744772,0.049,0.1,30.35,negative,doi.org/10.1016/S0022-2860(00)00559-7 +4,2,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,76500,1.100719424,0.125637372,0.1499,0.1,235,negative,doi.org/10.1016/0032-3861(95)91454-F +187,93,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0452,,0.1,25.86,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +16,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],25000,1.059322034,0.192,,0.1,10.07,positive,doi.org/10.1039/B301190A +188,84,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0628,,0.1,221.72,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +21,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.143286669,0.1699,0.86,34.925,positive,doi.org/10.1021/ma9517308 +166,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,97200,1.05997819,0.060750608,0.08144,0.1,232.713,negative,doi.org/10.1021/ma60032a020 +32,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.13205856,0.17,3.49,34.95,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +189,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.142825952,0.1834,0.1,22.99,positive,See 1984GIL in ISBN: 9781420067989 +52,7,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8420,1.24925816,0.21111694,0.2314,0.1,123.7,negative,doi.org/10.1016/0378-3812(93)85105-U +167,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,11.1,53.97,positive,doi.org/10.1016/S0378-3812(97)00157-X +168,102,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.151967736,0.1972,50.5,10.68,positive,doi.org/10.1063/1.464440 +3,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,2-propanone,67-64-1,CC(=O)C,44500,1.508474576,0.091990358,0.11,0.1,52.4,positive,See 1998SCH in ISBN: 9781420067989 +190,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.074437208,0.0978,0.1,25.33,positive,See 1986KRU in ISBN: 9781420067989 +61,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0622,0.0622,3.6,21.93,positive,doi.org/10.1006/jcht.1999.0607 +101,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.042610985,0.0585,2.024,162.55,negative,doi.org/10.1016/j.supflu.2005.08.004 +102,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.059610426,0.0813,10.6,239.85,negative,See 2001TOR in ISBN: 9781420067989 +169,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.2338,,0.1,23.078,positive,doi.org/10.1063/1.479914 +103,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.01259787,0.0175,9.1,196,negative,doi.org/10.1021/ie034302w +191,35,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,335500,1.690176322,0.037199536,0.0495,0.1,25.14,positive,See 1986KRU in ISBN: 9781420067989 +104,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.009923852,0.0138,9.82,229.85,negative,See 2001TOR in ISBN: 9781420067989 +62,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.0714,0.0714,1.56,4.42,positive,doi.org/10.1006/jcht.1999.0607 +105,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.062390359,0.085,3.4,193,negative,doi.org/10.1021/ie034302w +170,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.115562594,0.1519,1.05,31.88,positive,doi.org/10.1016/S0378-3812(97)00302-6 +5,6,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,16370,1.109830508,0.040881883,0.0603,0.1,170,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +106,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.000358203,0.0005,3.051,187.37,negative,doi.org/10.1016/j.supflu.2005.08.004 +8,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,100000,1.060445387,0.041625634,0.05,0.1,-20.5,positive,doi.org/10.1021/ma00015a024 +33,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.085273484,0.1115,0.68,13.42,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +22,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.1468,,0.1,51.327,positive,doi.org/10.1063/1.472437 +11,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.184397996,0.1741,0.47,37.68,positive,doi.org/10.1006/jcht.1999.0607 +9,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.2291,0.2291,3.02,63.67,positive,doi.org/10.1006/jcht.1999.0607 +64,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.143200418,0.1799,5.24,164.827,negative,doi.org/10.1021/ma9517308 +171,39,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,670000,1.098360656,0.062460243,0.08368,0.1,219.811,negative,doi.org/10.1021/ma60032a020 +30,108,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,8000,1.089918256,0.176928611,0.222,1.02,-20.17,positive,doi.org/10.1021/ma00107a011 +53,7,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8420,1.24925816,0.21111694,0.2314,0.1,288.2,positive,doi.org/10.1016/0378-3812(93)85105-U +7,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,13500,1.058823529,0.123399022,0.165,0.45,18.63,positive,doi.org/10.1021/ma00107a011 +54,11,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,3350,1.595238095,0.043793989,0.049,0.1,240.5,positive,doi.org/10.1021/ma00015a024 +5,6,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,16370,1.109830508,0.034225787,0.0547,0.1,155.1,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +172,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,13.938,53.35,positive,doi.org/10.1016/S0378-3812(97)00157-X +173,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,15.774,50.94,positive,doi.org/10.1016/S0378-3812(97)00157-X +174,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.114055986,0.15,14.485,22.187,positive,doi.org/10.1002/macp.1994.021950233 +175,95,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17300,1.061349693,0.1182,,0.1,22.837,positive,doi.org/10.1063/1.439127 +34,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.096178884,0.1253,0.24,12.04,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +32,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.108699719,0.1021,0.35,-3.81,positive,doi.org/10.1006/jcht.1999.0607 +63,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.2265,0.2265,1.35,37.3,positive,doi.org/10.1006/jcht.1999.0607 +107,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.036109458,0.0497,1.55,157.37,negative,See 2000BEH in ISBN: 9781420067989 +31,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.182841437,0.229,1.28,10.65,positive,doi.org/10.1021/ma00107a011 +11,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.002056292,0.003,9.72,130,negative,doi.org/10.1021/je0103162 +23,2,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,596000,1.040139616,0.0722,,0.1,60.124,positive,doi.org/10.1063/1.472437 +176,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.17486215,0.2251,11.05,29.93,positive,doi.org/10.1016/S0378-3812(97)00302-6 +108,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.045517759,0.06242,3.384,172.46,negative,doi.org/10.1016/j.supflu.2005.08.004 +192,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0432,,0.1,30.477,positive,doi.org/10.1103/PhysRevA.18.2683 +177,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.090479565,0.12,5.88,54.23,positive,doi.org/10.1016/S0378-3812(97)00157-X +55,1,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,11615,1.110739218,0.0241,,0.1,136.45,negative,See 2001FIS in ISBN: 9781420067989 +56,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.1944,,0.1,116.1,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +12,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.070707071,0.1,7.58,150,negative,doi.org/10.1021/je0103162 +109,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.103032843,0.1382,10.89,245.85,negative,See 2001TOR in ISBN: 9781420067989 +178,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.082475925,0.1097,7.05,29.54,positive,doi.org/10.1016/S0378-3812(97)00302-6 +193,110,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,45300,1.006666667,0.1514,,0.1,14,positive,doi.org/10.1002/pol.1981.180190913 +6,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,100000,1.060445387,0.004298267,0.005,0.1,174.5,negative,doi.org/10.1021/ma00015a024 +194,111,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,20400,1.0625,0.036058137,0.048,0.1,4.9,positive,doi.org/10.1021/ma00015a024 +24,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.1264,,0.1,20.434,positive,doi.org/10.1063/1.472437 +195,93,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.1167,,0.1,24.67,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +196,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.008557304,0.0115,0.1,23,positive,doi.org/10.1002/macp.1965.020880115 +197,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0566,,0.1,23.832,positive,doi.org/10.1063/1.430349 +34,2,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,144000,2.057142857,0.027987201,0.0307,26.25,38.55,negative,doi.org/10.1021/ma011533a +13,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.02563595,0.037,15.72,170,negative,doi.org/10.1021/je0103162 +8,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.004073557,0.005,0.1,209.5,negative,doi.org/10.1016/0032-3861(95)91454-F +22,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.091732599,0.11,2.199,172.285,negative,doi.org/10.1021/ma9517308 +57,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0416,,0.1,115.9,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +65,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,2.767,156.265,negative,doi.org/10.1021/ma9517308 +8,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.122614126,0.164,1.15,30.04,positive,doi.org/10.1021/ma00107a011 +14,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.029850253,0.043,13.17,150,negative,doi.org/10.1021/je0103162 +35,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.053184277,0.0703,0.55,32.04,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +9,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.109291571,0.131,0.1,-11.1,positive,doi.org/10.1016/0032-3861(95)91454-F +179,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.192338678,0.2461,31.97,19.37,positive,doi.org/10.1063/1.464440 +64,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0977,0.0977,4.16,23.29,positive,doi.org/10.1006/jcht.1999.0607 +25,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.0426,,0.1,49.676,positive,doi.org/10.1063/1.472437 +180,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,12.36,32.71,positive,doi.org/10.1063/1.464440 +181,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,37.311,47,positive,doi.org/10.1016/S0378-3812(97)00157-X +36,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.134578869,0.1731,0.79,43.42,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +33,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.139704443,0.1315,2.37,14.76,positive,doi.org/10.1006/jcht.1999.0607 +6,4,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,31120,1.019993445,0.147002636,0.206,0.1,166.9,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +198,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.019532639,0.02615,0.1,20,positive,See 1984GIL in ISBN: 9781420067989 +34,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.108699719,0.1021,4.46,-4.17,positive,doi.org/10.1006/jcht.1999.0607 +1,6,polyethylene,9002-88-4,*CC*,1-octene,111-66-0,CCCCCCC=C,105000,2.441860465,0.071134297,0.0897,3.07,261.75,negative,See 2001TOR in ISBN: 9781420067989 +58,9,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,151000,3.696450428,0.005,,0.1,112.8,negative,See 2001FIS in ISBN: 9781420067989 +199,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.020171999,0.027,0.1,25,positive,doi.org/10.1002/macp.1965.020880115 +2,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-pentane,109-66-0,CCCCC,1240,1.068965517,0.1548985,0.234,0.1,12.55,positive,doi.org/10.1016/S0378-3812(01)00548-9 +59,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.2008,,0.1,116.2,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +200,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.027412662,0.0366,0.1,18.5,positive,See 1986KRU in ISBN: 9781420067989 +60,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.3253,,0.1,137.35,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +2,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-octane,111-65-9,CCCCCCCC,1240,1.068965517,0.068965517,0.1,0.1,-1.65,positive,doi.org/10.1016/S0378-3812(01)00548-9 +201,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,37000,1.06017192,0.182161582,0.2309,0.1,12.16,positive,doi.org/10.1021/ma60032a020 +35,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.022779043,0.025,0.1,33.45,negative,doi.org/10.1021/ma011533a +202,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.0886,,0.1,23.636,positive,doi.org/10.1103/PhysRevE.55.3159 +182,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.212,,0.1,23.298,positive,doi.org/10.1063/1.479914 +183,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.058586078,0.0786,3.82,21.9,positive,doi.org/10.1063/1.464440 +184,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.015481305,0.0211,4.9,56.2,positive,doi.org/10.1016/S0378-3812(97)00302-6 +7,67,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,4215,1.069796954,0.047321743,0.0522,0.1,41.86,positive,doi.org/10.1021/je0504865 +185,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.033831286,0.0458,7.3,55.36,positive,doi.org/10.1016/S0378-3812(97)00157-X +37,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.126382966,0.163,0.26,50.38,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +66,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,0.979,131.591,negative,doi.org/10.1021/ma9517308 +110,9,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,15500,1.076388889,0.060436268,0.0824,3.4,189.96,negative,doi.org/10.1016/j.fluid.2003.07.004 +67,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.143283582,0.18,4.058,-5.171,positive,doi.org/10.1021/ma9517308 +203,35,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,335500,1.690176322,0.028925695,0.0386,0.1,25.22,positive,See 1986KRU in ISBN: 9781420067989 +204,112,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,394000,1.050666667,0.052888859,0.07,0.1,27.55,positive,doi.org/10.1002/polc.5070390106 +68,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.159916002,0.1999,4.522,155.707,negative,doi.org/10.1021/ma9517308 +6,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.257207891,0.3,0.84,-1.89,positive,doi.org/10.1021/ma00107a011 +14,92,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,184000,1.069767442,0.090581355,0.1231,0.1,5.5,positive,doi.org/10.1627/jpi1958.33.117 +26,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.0691,,0.1,34.288,positive,doi.org/10.1063/1.472437 +23,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.117493871,0.1401,0.495,33.85,positive,doi.org/10.1021/ma9517308 +205,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.155220328,0.1985,0.1,19.52,positive,See 1986KRU in ISBN: 9781420067989 +69,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,3.066,71.817,positive,doi.org/10.1021/ma9517308 +14,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.125199984,0.147,0.72,75.64,positive,doi.org/10.1021/ma00107a011 +65,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0812,0.0812,3.1,49.29,positive,doi.org/10.1006/jcht.1999.0607 +206,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0487,,0.1,23.809,positive,doi.org/10.1063/1.430349 +70,49,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22000,1.030010768,0.03387873,0.044,3.23,43.6,positive,doi.org/10.1002/polb.1994.090321315 +66,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1388,0.1388,2.45,23.9,positive,doi.org/10.1006/jcht.1999.0607 +9,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,233000,1.059090909,0.085701985,0.102,0.1,130.2,negative,doi.org/10.1021/ma00015a024 +207,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0833,,0.1,23.828,positive,doi.org/10.1063/1.430349 +186,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,36.487,45.98,positive,doi.org/10.1016/S0378-3812(97)00157-X +187,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.074826302,0.0998,18.93,20.39,positive,doi.org/10.1063/1.464440 +188,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,4.35,55.22,positive,doi.org/10.1016/S0378-3812(97)00157-X +189,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,51.78,19.55,positive,doi.org/10.1063/1.464440 +190,61,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,181000,1.058479532,0.0094,,0.1,50.579,positive,doi.org/10.1063/1.439127 +67,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0645,0.0645,4.25,48.99,positive,doi.org/10.1006/jcht.1999.0607 +191,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.188367066,0.24135,80,21.099,positive,doi.org/10.1002/macp.1994.021950233 +15,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.218588314,0.239,2.97,96.63,negative,doi.org/10.1021/ma00107a011 +111,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.015930203,0.0221,6.49,201.25,negative,See 2001TOR in ISBN: 9781420067989 +1,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-methylpentane,107-83-5,CCCC(C)C,1240,1.068965517,0.071581144,0.11,0.1,10.85,positive,doi.org/10.1016/S0378-3812(01)00548-9 +192,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.234042447,0.2952,8.53,20.27,positive,doi.org/10.1063/1.464440 +193,83,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,46400,1.059360731,0.0623,,0.1,39.008,positive,doi.org/10.1063/1.439127 +17,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],123000,1.060344828,0.036,,0.1,24.24,positive,doi.org/10.1039/B301190A +194,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,5.2,34.29,positive,doi.org/10.1063/1.464440 +195,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,6.6,51.79,positive,doi.org/10.1016/S0378-3812(97)00157-X +38,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.109403402,0.1419,2.61,139.41,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +208,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.058201058,0.06246132,0.0824,0.1,224.1,negative,doi.org/10.1021/ma60032a020 +209,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0218,,0.1,30.478,positive,doi.org/10.1103/PhysRevA.18.2683 +71,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.211167513,0.26,4.404,-3.619,positive,doi.org/10.1021/ma9517308 +196,81,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,719000,1.060471976,0.0207,,0.1,61.483,positive,doi.org/10.1063/1.439127 +210,58,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,286000,2.2,0.016940488,0.0227,0.1,25.85,positive,doi.org/10.1021/je0504865 +211,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.032882155,0.04382,0.1,25.69,positive,See 1986KRU in ISBN: 9781420067989 +36,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.467915838,0.4917,0.1,26.57,negative,doi.org/10.1016/S0022-2860(00)00559-7 +112,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.067892668,0.0923,5.575,190.19,negative,doi.org/10.1016/j.supflu.2005.08.004 +113,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.010646004,0.0148,2.6,170.1,negative,doi.org/10.1016/j.fluid.2003.07.004 +32,45,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,24700,1.037815126,0.013620475,0.018,29.68,-10.15,positive,doi.org/10.1039/B109405J +212,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.1131,,0.1,28.524,positive,doi.org/10.1103/PhysRevA.18.2683 +3,3,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,252000,1.145454545,0.118795898,0.139,0.1,29.65,positive,doi.org/10.1016/0254-0584(83)90036-6 +197,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37000,1.06017192,0.038281287,0.05174,0.1,33.404,positive,doi.org/10.1021/ma60032a020 +198,81,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,719000,1.060471976,0.0783,,0.1,61.119,positive,doi.org/10.1063/1.439127 +199,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.165808321,0.21412,40,20.778,positive,doi.org/10.1002/macp.1994.021950233 +33,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.082791819,0.107,1.13,9.22,positive,doi.org/10.1021/ma00107a011 +2,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-methylpentane,107-83-5,CCCC(C)C,1240,1.068965517,0.134912461,0.2,0.1,12.25,positive,doi.org/10.1016/S0378-3812(01)00548-9 +213,20,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0325,,0.1,25.83,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +114,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.094370769,0.127,9.8,216,negative,doi.org/10.1021/ie034302w +214,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.095037761,0.124,0.1,26.15,positive,See 1986KRU in ISBN: 9781420067989 +115,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.147562055,0.19463,6.419,202.25,negative,doi.org/10.1016/j.supflu.2005.08.004 +61,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0659,,0.1,132.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +116,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.036109458,0.0497,11,230.06,negative,See 2000BEH in ISBN: 9781420067989 +215,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0824,,0.1,23.828,positive,doi.org/10.1063/1.430349 +200,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,4.702,54.89,positive,doi.org/10.1016/S0378-3812(97)00157-X +8,2,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,78800,1.119318182,0.01743978,0.0193,0.1,75.74,positive,doi.org/10.1021/je0504865 +72,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.176884422,0.22,2.274,-2.664,positive,doi.org/10.1021/ma9517308 +216,26,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0035,,0.1,26.28,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +217,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.023938663,0.032,0.1,25.5,positive,doi.org/10.1002/macp.1965.020880115 +73,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.176799578,0.2199,0.502,86.118,positive,doi.org/10.1021/ma9517308 +117,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.059610426,0.0813,7.16,209.35,negative,See 2001TOR in ISBN: 9781420067989 +24,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.221355036,0.2581,1.708,166.64,negative,doi.org/10.1021/ma9517308 +218,74,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,101400,1.090322581,0.08163835,0.107,4.1,235.5,negative,doi.org/10.1016/S0896-8446(01)00144-9 +74,104,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,13500,1.058823529,0.152122512,0.1906,0.921,36.824,positive,doi.org/10.1021/ma9517308 +39,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.109403402,0.1419,1.24,12.51,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +201,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,3.06,55.85,positive,doi.org/10.1016/S0378-3812(97)00157-X +202,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.13972843,0.1821,5.05,31.26,positive,doi.org/10.1016/S0378-3812(97)00302-6 +68,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0622,0.0622,4.89,21.74,positive,doi.org/10.1006/jcht.1999.0607 +219,26,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.022,,0.1,27.34,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +220,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0874,,0.1,23.82,positive,doi.org/10.1063/1.430349 +221,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0012,,0.1,26.024,positive,doi.org/10.1103/PhysRevA.18.2683 +222,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0229,,0.1,30.485,positive,doi.org/10.1103/PhysRevA.18.2683 +3,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,61400,1.04957265,0.089619607,0.1196,0.1,8.4,positive,doi.org/10.1016/0032-3861(95)91454-F +223,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0022,,0.1,28.524,positive,doi.org/10.1103/PhysRevA.18.2683 +35,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.187744248,0.1773,0.47,14.62,positive,doi.org/10.1006/jcht.1999.0607 +27,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.0919,,0.1,19.882,positive,doi.org/10.1063/1.472437 +118,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.061488104,0.0838,9.3,204,negative,doi.org/10.1021/ie034302w +203,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,71.78,19.9,positive,doi.org/10.1063/1.464440 +10,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.0995,0.0995,2.56,67.11,positive,doi.org/10.1006/jcht.1999.0607 +119,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.222104622,0.285,9.3,234.5,negative,doi.org/10.1021/ie034302w +69,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.044,0.044,0.4,42.69,positive,doi.org/10.1006/jcht.1999.0607 +224,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.017,,0.1,25.61,positive,doi.org/10.1039/B301190A +204,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.048116473,0.0648,12.85,52.11,positive,doi.org/10.1016/S0378-3812(97)00302-6 +205,19,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,297000,5.449541284,0.058890736,0.079,0.1,57.07,positive,See 1988SC2 in ISBN: 9781420067989 +13,7,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,75600,1.05,0.096766745,0.1307,0.1,55.35,positive,doi.org/10.1021/je990141k +206,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,9.24,54.75,positive,doi.org/10.1016/S0378-3812(97)00157-X +4,8,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,424000,1.550274223,0.0435,,0.1,25.5,positive,See 1991LEE in ISBN: 9781420067989 +15,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.020739603,0.03,13.51,150,negative,doi.org/10.1021/je0103162 +15,9,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,354000,1.020172911,0.135471497,0.1809,0.1,7.7,positive,doi.org/10.1627/jpi1958.33.117 +120,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.005599565,0.0078,8.274,217.04,negative,doi.org/10.1016/j.supflu.2005.08.004 +6,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.12658584,0.151,0.1,-22.4,positive,doi.org/10.1016/0032-3861(95)91454-F +3,1,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,20000,2.5,0.097370983,0.1,0.1,34.2,negative,doi.org/10.1021/jp0574854 +121,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.078282347,0.106,8,208.5,negative,doi.org/10.1021/ie034302w +25,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,3.026,25.377,positive,doi.org/10.1021/ma9517308 +1,2,poly(vinyl chloride),9002-86-2,*CC(*)Cl,phenetole,103-73-1,CCOc1ccccc1,37000,1.178343949,0.072234257,0.1,25,19.7,positive,doi.org/10.1002/macp.1985.021860409 +12,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.207685345,0.1964,4.69,35.33,positive,doi.org/10.1006/jcht.1999.0607 +75,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.084136448,0.1076,3.708,172.693,negative,doi.org/10.1021/ma9517308 +7,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.023759176,0.029,0.1,-33.1,positive,doi.org/10.1016/0032-3861(95)91454-F +62,10,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8000,1.6,0.372093023,0.4,0.1,271.2,positive,doi.org/10.1021/ma00015a024 +225,29,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,111000,1.050141911,0.103772887,0.135,0.1,21.27,positive,See 1986KRU in ISBN: 9781420067989 +207,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.165808321,0.21412,0.1,24.512,positive,doi.org/10.1002/macp.1994.021950233 +226,36,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,90000,1.040462428,0.005649558,0.0076,0.1,15.36,positive,doi.org/10.1016/S0378-3812(99)00128-4 +227,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0525,,0.1,26.167,positive,doi.org/10.1103/PhysRevE.55.3159 +15,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.197860168,0.229,1.72,111.82,negative,doi.org/10.1021/ma00107a011 +63,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0461,,0.1,134.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +228,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,25000,1.059322034,0.044,,0.1,5.7,positive,doi.org/10.1039/B301190A +229,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.0477,,0.1,23.654,positive,doi.org/10.1103/PhysRevE.55.3159 +122,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.013393937,0.0186,5.4,180.01,negative,doi.org/10.1016/j.fluid.2003.07.004 +208,95,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17300,1.061349693,0.2272,,0.1,22.748,positive,doi.org/10.1063/1.439127 +1,3,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,252000,1.145454545,0.121591705,0.141,0.1,3.25,positive,doi.org/10.1016/0254-0584(83)90036-6 +70,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1393,0.1393,1.94,23.9,positive,doi.org/10.1006/jcht.1999.0607 +34,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.155986574,0.197,0.59,12.11,positive,doi.org/10.1021/ma00107a011 +35,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.182841437,0.229,1.04,10.99,positive,doi.org/10.1021/ma00107a011 +76,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.224203822,0.275,2.46,70.727,positive,doi.org/10.1021/ma9517308 +26,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.221355036,0.2581,0.578,31.372,positive,doi.org/10.1021/ma9517308 +230,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.006096522,0.0082,0.1,19,positive,doi.org/10.1002/macp.1965.020880115 +28,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.1618,,0.1,50.53,positive,doi.org/10.1063/1.472437 +40,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,1.93,106.96,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +29,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.1166,,0.1,49.764,positive,doi.org/10.1063/1.472437 +9,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,13500,1.058823529,0.123399022,0.165,1.49,18.28,positive,doi.org/10.1021/ma00107a011 +123,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.007183423,0.01,6.023,197.42,negative,doi.org/10.1016/j.supflu.2005.08.004 +231,76,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.036666772,0.0488,0.1,23.82,positive,See 1996RON in ISBN: 9781420067989 +4,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,61400,1.04957265,0.081944132,0.1141,0.1,151.6,negative,doi.org/10.1016/0032-3861(95)91454-F +71,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.0519,0.0519,1.55,42.9,positive,doi.org/10.1006/jcht.1999.0607 +232,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.004309499,0.0058,0.1,23,positive,doi.org/10.1002/macp.1965.020880115 +124,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.076000121,0.103,5.8,223,negative,doi.org/10.1021/ie034302w +233,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.0319565,0.0426,0.1,27.28,positive,See 1986KRU in ISBN: 9781420067989 +209,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.2308,,0.1,23.373,positive,doi.org/10.1063/1.446753 +16,103,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,354000,1.020172911,0.04398815,0.0609,0.1,163.8,negative,doi.org/10.1002/pen.760330806 +125,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.051604672,0.0706,6.709,197.46,negative,doi.org/10.1016/j.supflu.2005.08.004 +8,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,61400,1.04957265,0.169242658,0.2,0.1,12.1,positive,doi.org/10.1016/0032-3861(95)91454-F +7,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.197074196,0.233,2.48,1.87,positive,doi.org/10.1021/ma00107a011 +16,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.03478741,0.05,13.1,150,negative,doi.org/10.1021/je0103162 +210,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.033831286,0.0458,7.141,55.45,positive,doi.org/10.1016/S0378-3812(97)00157-X +234,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.011605544,0.01558,0.1,18.98,positive,See 1986KRU in ISBN: 9781420067989 +126,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.114880564,0.1534,6.213,197.114,negative,doi.org/10.1016/j.supflu.2005.08.004 +235,30,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,600000,1.099908341,0.045214464,0.06,0.1,28.19,positive,doi.org/10.1007/BF01525017 +30,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.0338,,0.1,52.834,positive,doi.org/10.1063/1.472437 +211,61,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,181000,1.058479532,0.1827,,0.1,50.579,positive,doi.org/10.1063/1.439127 +16,5,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],10500,1.019417476,0.199847839,0.219,2.03,-5.93,positive,doi.org/10.1021/ma00107a011 +37,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.009099181,0.01,0.1,32.29,negative,doi.org/10.1016/S0022-2860(00)00559-7 +77,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,0.757,85.733,positive,doi.org/10.1021/ma9517308 +212,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.159149407,0.206,9.05,30.37,positive,doi.org/10.1016/S0378-3812(97)00302-6 +213,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.0762,,0.1,22.371,positive,doi.org/10.1063/1.479914 +236,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,97200,1.05997819,0.098843143,0.1288,0.1,229.4,negative,doi.org/10.1021/ma60032a020 +214,107,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20200,1.057591623,0.2044,,0.1,25.696,positive,doi.org/10.1063/1.439127 +127,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.009923852,0.0138,10.86,240.25,negative,See 2001TOR in ISBN: 9781420067989 +237,39,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,670000,1.098360656,0.008855866,0.0119,0.1,218.99,negative,doi.org/10.1021/ma60032a020 +238,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0847,,0.1,26.197,positive,doi.org/10.1103/PhysRevE.55.3159 +239,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,25000,1.059322034,0.181,,0.1,6.97,positive,doi.org/10.1039/B301190A +240,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.005202733,0.007,0.1,19,positive,doi.org/10.1002/macp.1965.020880115 +128,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.041056487,0.0564,6.8,209,negative,doi.org/10.1021/ie034302w +129,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.094370769,0.127,7.4,199,negative,doi.org/10.1021/ie034302w +78,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.176884422,0.22,3.699,147.422,negative,doi.org/10.1021/ma9517308 +7,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,233000,1.059090909,0.004298267,0.005,0.1,159.4,negative,doi.org/10.1021/ma00015a024 +31,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.2816,,0.1,18.026,positive,doi.org/10.1063/1.472437 +27,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.169547249,0.1999,5.222,190.367,negative,doi.org/10.1021/ma9517308 +215,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,1.61,233.32,negative,doi.org/10.1016/S0378-3812(97)00157-X +241,90,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.003788701,0.0051,0.1,20,positive,doi.org/10.1016/S0378-3812(99)00128-4 +72,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2348,0.2348,5.33,5.44,positive,doi.org/10.1006/jcht.1999.0607 +242,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.005575077,0.0075,0.1,20,positive,doi.org/10.1002/macp.1965.020880115 +130,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.06088695,0.083,4.8,224,negative,doi.org/10.1021/ie034302w +216,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.065916504,0.0882,5.05,29.32,positive,doi.org/10.1016/S0378-3812(97)00302-6 +36,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.161455849,0.1522,4.82,14.15,positive,doi.org/10.1006/jcht.1999.0607 +18,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],123000,1.060344828,0.14,,0.1,24.5,positive,doi.org/10.1039/B301190A +2,32,polystyrene,9003-53-6,*C(C*)c1ccccc1,diisodecyl phthalate,26761-40-0,CC(C)CCCCCCCOC(=O)c1ccccc1C(=O)OCCCCCCCC(C)C,235000,2.100089366,0.331504971,0.35,0.1,40.35,positive,See 2001HE1 in ISBN: 9036516463 +243,113,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,610000,1.077738516,0.036818971,0.049,0.1,28,positive,doi.org/10.1021/ma00015a024 +28,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.143286669,0.1699,3.589,28.753,positive,doi.org/10.1021/ma9517308 +217,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,1.01,54.39,positive,doi.org/10.1016/S0378-3812(97)00157-X +218,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,18.249,50.26,positive,doi.org/10.1016/S0378-3812(97)00157-X +244,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.035,,0.1,26.11,positive,doi.org/10.1039/B301190A +219,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.05402428,0.0726,12.05,27.27,positive,doi.org/10.1016/S0378-3812(97)00302-6 +245,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0494,,0.1,23.811,positive,doi.org/10.1063/1.430349 +220,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,61.344,43.96,positive,doi.org/10.1016/S0378-3812(97)00157-X +131,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.217026822,0.279,5,254.5,negative,doi.org/10.1021/ie034302w +132,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.044167367,0.0606,9.619,222,negative,doi.org/10.1016/j.supflu.2005.08.004 +246,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0701,,0.1,26.22,positive,doi.org/10.1103/PhysRevE.55.3159 +19,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],2000000,1.299967501,0.008,,0.1,33.88,positive,doi.org/10.1039/B301190A +5,2,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,76500,1.100719424,0.057958011,0.0702,0.1,237.1,negative,doi.org/10.1016/0032-3861(95)91454-F +247,58,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,286000,2.2,0.006990865,0.0094,0.1,23.92,positive,doi.org/10.1021/je0504865 +248,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,13200000,1.130136986,0.0224,,0.1,32.08,positive,doi.org/10.1039/B301190A +221,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,31.77,30.43,positive,doi.org/10.1063/1.464440 +222,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,19.635,49.78,positive,doi.org/10.1016/S0378-3812(97)00157-X +9,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.142162864,0.169,0.1,-23.5,positive,doi.org/10.1016/0032-3861(95)91454-F +36,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.114095631,0.146,0.6,85.24,negative,doi.org/10.1021/ma00107a011 +223,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,1.771,58.03,positive,doi.org/10.1016/S0378-3812(97)00157-X +224,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.096806139,0.1281,13.05,28.78,positive,doi.org/10.1016/S0378-3812(97)00302-6 +249,33,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2700000,1.099796334,0.039256312,0.0522,0.1,30.91,positive,doi.org/10.1021/ma60032a020 +225,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.097275917,0.1287,70.41,19.95,positive,doi.org/10.1063/1.464440 +133,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.042610985,0.0585,9.124,216.98,negative,doi.org/10.1016/j.supflu.2005.08.004 +17,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.168180942,0.185,2.84,70.26,positive,doi.org/10.1021/ma00107a011 +6,3,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,11570,1.150099404,0.070234177,0.1098,0.1,158,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +38,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.135819988,0.1474,0.1,32.69,negative,doi.org/10.1016/S0378-3812(01)00469-1 +226,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.037801129,0.0511,5.6,55.47,positive,doi.org/10.1016/S0378-3812(97)00302-6 +37,13,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,11700,1.030837004,0.166842438,0.21,0.61,1.53,positive,doi.org/10.1021/ma00107a011 +11,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.0995,0.0995,4.52,66.32,positive,doi.org/10.1006/jcht.1999.0607 +227,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.239247257,0.30123,0.1,23.83,positive,doi.org/10.1002/macp.1994.021950233 +79,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.224203822,0.275,0.537,143.302,negative,doi.org/10.1021/ma9517308 +5,10,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,165000,1.2,0.0647,,0.1,22.5,positive,See 1991LEE in ISBN: 9781420067989 +9,2,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,78800,1.119318182,0.010022055,0.0111,0.1,74.24,positive,doi.org/10.1021/je0504865 +228,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.0692,,0.1,22.045,positive,doi.org/10.1063/1.479914 +64,11,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,3350,1.595238095,0.181818182,0.2,0.1,156.6,negative,doi.org/10.1021/ma00015a024 +73,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1611,0.1611,0.3,6.45,positive,doi.org/10.1006/jcht.1999.0607 +80,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.176884422,0.22,0.749,-1.667,positive,doi.org/10.1021/ma9517308 +1,7,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,ethanol,64-17-5,CCO,74000,1.48,0.839883239,0.865,0.1,40,positive,doi.org/10.1002/1521-3935(20020301)203:4<705::AID-MACP705>3.0.CO;2-7 +6,11,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,604000,1.730659026,0.055,,0.1,27.4,positive,See 1991LEE in ISBN: 9781420067989 +74,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.0922,0.0922,0.14,43.59,positive,doi.org/10.1006/jcht.1999.0607 +250,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.067,,0.1,30.11,positive,doi.org/10.1103/PhysRevA.18.2683 +251,36,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,90000,1.040462428,0.086826089,0.1136,0.1,19.73,positive,doi.org/10.1016/S0378-3812(99)00128-4 +81,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.133912138,0.1687,4.333,84.971,positive,doi.org/10.1021/ma9517308 +75,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1799,0.1799,2,6.28,positive,doi.org/10.1006/jcht.1999.0607 +65,3,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,4490,1.130982368,0.022462896,0.0252,0.1,158,negative,doi.org/10.1016/0378-3812(93)85105-U +14,7,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,75600,1.05,0.096843675,0.1308,0.1,54.85,positive,doi.org/10.1021/je990141k +4,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,600000,1.099908341,0.03359411,0.04,0.1,241.9,negative,doi.org/10.1016/0032-3861(95)91454-F +252,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,97200,1.05997819,0.058671182,0.0775,0.1,20.36,positive,doi.org/10.1021/ma60032a020 +41,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.096178884,0.1253,3.44,140.51,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +15,6,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,32900,1.018575851,0.034461524,0.0477,0.1,39.85,positive,doi.org/10.1021/je990141k +5,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,61400,1.04957265,0.039918699,0.0566,0.1,151.8,negative,doi.org/10.1016/0032-3861(95)91454-F +12,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.0669,0.0669,3.33,66.33,positive,doi.org/10.1006/jcht.1999.0607 +229,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.192338678,0.2461,36.19,19.2,positive,doi.org/10.1063/1.464440 +17,99,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,43000,1.009389671,0.109881678,0.1482,0.1,180.9,negative,doi.org/10.1002/pen.760330806 +253,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1145,,0.1,23.581,positive,doi.org/10.1063/1.430349 +14,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.084,,50,12.55,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +42,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.145931506,0.187,4.91,32.99,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +254,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.087,,0.1,21.45,positive,doi.org/10.1039/B301190A +76,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0307,0.0307,2.89,47.29,positive,doi.org/10.1006/jcht.1999.0607 +230,81,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,719000,1.060471976,0.0557,,0.1,61.616,positive,doi.org/10.1063/1.439127 +82,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.199003566,0.2459,3.035,139.052,negative,doi.org/10.1021/ma9517308 +83,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.246153846,0.3,4.813,-4.123,positive,doi.org/10.1021/ma9517308 +77,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1977,0.1977,3.17,23.4,positive,doi.org/10.1006/jcht.1999.0607 +231,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.215463744,0.2735,80,20.967,positive,doi.org/10.1002/macp.1994.021950233 +255,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.0376,,0.1,23.568,positive,doi.org/10.1103/PhysRevE.55.3159 +256,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.101305973,0.1319,0.1,26.42,positive,See 1986KRU in ISBN: 9781420067989 +8,5,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,600000,1.099908341,0.017229523,0.02,0.1,148.6,negative,doi.org/10.1021/ma00015a024 +232,102,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.151967736,0.1972,67.86,11.15,positive,doi.org/10.1063/1.464440 +233,83,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,46400,1.059360731,0.0864,,0.1,39.395,positive,doi.org/10.1063/1.439127 +10,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.105465507,0.142,0.67,30.05,positive,doi.org/10.1021/ma00107a011 +134,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.162223041,0.2128,2.29,184.25,negative,See 2001TOR in ISBN: 9781420067989 +20,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],25000,1.059322034,0.102,,0.1,10.27,positive,doi.org/10.1039/B301190A +257,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.1374,,0.1,22.827,positive,doi.org/10.1103/PhysRevE.55.3159 +234,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.058586078,0.0786,7.55,21.32,positive,doi.org/10.1063/1.464440 +13,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.2291,0.2291,4.25,63.26,positive,doi.org/10.1006/jcht.1999.0607 +258,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.244741716,0.304,0.1,21,positive,doi.org/10.1002/macp.1965.020880115 +235,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.093514303,0.12389,80,21.05,positive,doi.org/10.1002/macp.1994.021950233 +84,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,0.568,84.847,positive,doi.org/10.1021/ma9517308 +259,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.164147823,0.2093,0.1,23.28,positive,See 1986KRU in ISBN: 9781420067989 +5,77,polystyrene,9003-53-6,*C(C*)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,1971000,1.260230179,0.03359411,0.04,0.1,235.2,negative,doi.org/10.1016/0032-3861(95)91454-F +18,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.186779372,0.205,3.27,96.92,negative,doi.org/10.1021/ma00107a011 +10,5,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,600000,1.099908341,0.055946027,0.067,0.1,118.6,negative,doi.org/10.1021/ma00015a024 +38,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.127937264,0.163,0.3,13.5,positive,doi.org/10.1021/ma00107a011 +260,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.066960284,0.0882,0.1,20.6,positive,See 1986KRU in ISBN: 9781420067989 +236,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.214800322,0.27272,0.1,24.139,positive,doi.org/10.1002/macp.1994.021950233 +135,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.032797521,0.0452,7.165,202.3,negative,doi.org/10.1016/j.supflu.2005.08.004 +39,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.078823191,0.102,0.31,9.63,positive,doi.org/10.1021/ma00107a011 +17,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.010320537,0.015,16.06,170,negative,doi.org/10.1021/je0103162 +136,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.053694841,0.0734,3.918,177.37,negative,doi.org/10.1016/j.supflu.2005.08.004 +2,6,polyethylene,9002-88-4,*CC*,1-octene,111-66-0,CCCCCCC=C,105000,2.441860465,0.034454976,0.0439,3.09,260.25,negative,See 2001TOR in ISBN: 9781420067989 +37,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.161455849,0.1522,3.72,14.34,positive,doi.org/10.1006/jcht.1999.0607 +237,107,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20200,1.057591623,0.159,,0.1,25.8,positive,doi.org/10.1063/1.439127 +15,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.128,,0.1,11.75,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +29,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.221355036,0.2581,3.753,181.217,negative,doi.org/10.1021/ma9517308 +238,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.074826302,0.0998,22.56,20.15,positive,doi.org/10.1063/1.464440 +239,87,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,109000,1.058252427,0.0077,,0.1,44.39,positive,doi.org/10.1063/1.439127 +18,79,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,791000,1.010217114,0.116406598,0.1566,0.1,10.6,positive,doi.org/10.1627/jpi1958.33.117 +39,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.038053348,0.0417,10,33.55,negative,doi.org/10.1021/ma011533a +261,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.03,,0.1,26.06,positive,doi.org/10.1039/B301190A +12,5,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,68000,1.03030303,0.014041266,0.017,0.1,71.97,positive,doi.org/10.1021/je0504865 +137,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.044167367,0.0606,4.099,177.52,negative,doi.org/10.1016/j.supflu.2005.08.004 +38,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.081489244,0.0764,3.58,-4.9,positive,doi.org/10.1006/jcht.1999.0607 +11,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.122614126,0.164,2.25,29.61,positive,doi.org/10.1021/ma00107a011 +240,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.024291101,0.033,4,56.72,positive,doi.org/10.1016/S0378-3812(97)00302-6 +32,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.2565,,0.1,18.968,positive,doi.org/10.1063/1.472437 +262,82,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0527,,0.1,25.94,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +4,1,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,20000,2.5,0.343305542,0.35,0.1,37.3,negative,doi.org/10.1021/jp0574854 +263,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,100000,1.060445387,0.047512554,0.063,0.1,20.8,positive,doi.org/10.1021/ma00015a024 +264,114,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,206000,1.045685279,0.0781,,0.1,23.92,positive,doi.org/10.1016/0032-3861(73)90005-0 +241,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,4.46,57.15,positive,doi.org/10.1016/S0378-3812(97)00157-X +85,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.211167513,0.26,1.328,-1.224,positive,doi.org/10.1021/ma9517308 +12,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.122614126,0.164,2.9,29.38,positive,doi.org/10.1021/ma00107a011 +39,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.224035975,0.2121,1.66,-4.17,positive,doi.org/10.1006/jcht.1999.0607 +40,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.42614498,0.4496,0.1,26.71,negative,doi.org/10.1016/S0022-2860(00)00559-7 +10,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,61400,1.04957265,0.12572358,0.15,0.1,212,negative,doi.org/10.1016/0032-3861(95)91454-F +43,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.134578869,0.1731,0.37,44.92,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +18,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.020739603,0.03,15.93,170,negative,doi.org/10.1021/je0103162 +86,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.159916002,0.1999,4.238,107.88,positive,doi.org/10.1021/ma9517308 +14,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.1326,0.1326,4.17,66.16,positive,doi.org/10.1006/jcht.1999.0607 +87,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,2.213,148.117,negative,doi.org/10.1021/ma9517308 +40,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.056732495,0.0531,1.54,13.7,positive,doi.org/10.1006/jcht.1999.0607 +66,3,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,4490,1.130982368,0.043524404,0.0487,0.1,148.5,negative,doi.org/10.1016/0378-3812(93)85105-U +242,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.294,,0.1,21.485,positive,doi.org/10.1063/1.439127 +243,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.1689,,0.1,23.6,positive,doi.org/10.1063/1.446753 +88,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.199003566,0.2459,3.473,147.064,negative,doi.org/10.1021/ma9517308 +265,35,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,335500,1.690176322,0.111758624,0.145,0.1,23.95,positive,See 1986KRU in ISBN: 9781420067989 +40,108,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,8000,1.089918256,0.176928611,0.222,0.34,-19.7,positive,doi.org/10.1021/ma00107a011 +244,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,45.95,45.36,positive,doi.org/10.1016/S0378-3812(97)00157-X +13,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.110119924,0.148,0.84,30.03,positive,doi.org/10.1021/ma00107a011 +266,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,13200000,1.130136986,0.0024,,0.1,31.71,positive,doi.org/10.1039/B301190A +89,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.22839651,0.2798,3.211,164.83,negative,doi.org/10.1021/ma9517308 +267,35,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,335500,1.690176322,0.061377425,0.081,0.1,24.9,positive,See 1986KRU in ISBN: 9781420067989 +78,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.0999,0.0999,2.94,6.45,positive,doi.org/10.1006/jcht.1999.0607 +268,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.024,,0.1,25.94,positive,doi.org/10.1039/B301190A +19,115,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,98900,1.019587629,0.049145989,0.0679,0.1,172.8,negative,doi.org/10.1002/pen.760330806 +44,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,2.56,109.98,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +33,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.0862,,0.1,19.702,positive,doi.org/10.1063/1.472437 +90,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,5.14,63.992,positive,doi.org/10.1021/ma9517308 +245,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.036526526,0.0494,8.05,26.7,positive,doi.org/10.1016/S0378-3812(97)00302-6 +91,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.202531646,0.25,3.971,-4.078,positive,doi.org/10.1021/ma9517308 +246,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.05402428,0.0726,14.05,26.98,positive,doi.org/10.1016/S0378-3812(97)00302-6 +92,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.29917988,0.3591,0.654,-2.155,positive,doi.org/10.1021/ma9517308 +93,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,1.693,78.819,positive,doi.org/10.1021/ma9517308 +21,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],25000,1.059322034,0.205,,0.1,9.96,positive,doi.org/10.1039/B301190A +269,39,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,670000,1.098360656,0.046746122,0.062,0.1,219.34,negative,doi.org/10.1021/ma60032a020 +67,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.090796719,0.101,0.1,295.9,positive,doi.org/10.1021/ma00015a024 +94,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.224203822,0.275,1.758,154.961,negative,doi.org/10.1021/ma9517308 +41,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.123163812,0.1158,4.87,14.34,positive,doi.org/10.1006/jcht.1999.0607 +270,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.026278922,0.0351,0.1,27.42,positive,See 1986KRU in ISBN: 9781420067989 +95,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.199003566,0.2459,3.002,138.895,negative,doi.org/10.1021/ma9517308 +2,1,poly(vinyl chloride),9002-86-2,*CC(*)Cl,phenetole,103-73-1,CCOc1ccccc1,75000,1.159196291,0.057433034,0.08,75,36.7,positive,doi.org/10.1002/macp.1985.021860409 +271,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.038037131,0.0506,0.1,25.33,positive,See 1986KRU in ISBN: 9781420067989 +79,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1611,0.1611,3.89,6.15,positive,doi.org/10.1006/jcht.1999.0607 +272,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.055,,0.1,21.31,positive,doi.org/10.1039/B301190A +247,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.1352,,0.1,23.56,positive,doi.org/10.1063/1.446753 +41,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.091557953,0.0998,0.1,29.45,negative,doi.org/10.1016/S0022-2860(00)00559-7 +5,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,methyl acetate,79-20-9,COC(=O)C,100000,1.060445387,0.007069482,0.008,0.1,30.45,positive,doi.org/10.1021/ma00015a024 +42,7,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,76000,2.397476341,0.031004924,0.034,0.1,31.7,negative,doi.org/10.1021/la00038a064 +273,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0009,,0.1,19.72,positive,doi.org/10.1103/PhysRevA.18.2683 +19,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.043302809,0.062,6.62,130,negative,doi.org/10.1021/je0103162 +248,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.033831286,0.0458,5.145,56.56,positive,doi.org/10.1016/S0378-3812(97)00157-X +96,104,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,13500,1.058823529,0.152122512,0.1906,0.744,37.219,positive,doi.org/10.1021/ma9517308 +138,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.004305154,0.006,5.4,169,negative,doi.org/10.1021/ie034302w +249,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,9.132,54.26,positive,doi.org/10.1016/S0378-3812(97)00157-X +250,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.234042447,0.2952,54.92,18.3,positive,doi.org/10.1063/1.464440 +20,50,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,791000,1.010217114,0.006973184,0.0098,0.1,162,negative,doi.org/10.1002/pen.760330806 +19,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.135832598,0.15,4.52,57.61,positive,doi.org/10.1021/ma00107a011 +274,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.1128,,0.1,23.371,positive,doi.org/10.1103/PhysRevE.55.3159 +275,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0794,,0.1,29.776,positive,doi.org/10.1103/PhysRevA.18.2683 +139,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.076532282,0.1037,10.31,229.92,negative,See 2000BEH in ISBN: 9781420067989 +14,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,22100,1.03030303,0.114011441,0.153,1.64,27.18,positive,doi.org/10.1021/ma00107a011 +276,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.061532218,0.0812,0.1,20.1,positive,See 1986KRU in ISBN: 9781420067989 +80,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.3649,0.3649,1.66,16.27,positive,doi.org/10.1006/jcht.1999.0607 +81,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.0999,0.0999,0.37,6.65,positive,doi.org/10.1006/jcht.1999.0607 +20,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.078031753,0.11,9.58,170,negative,doi.org/10.1021/je0103162 +277,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.038,,0.1,26.13,positive,doi.org/10.1039/B301190A +278,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.024,,0.1,20.4,positive,doi.org/10.1039/B301190A +279,82,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0472,,0.1,26,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +280,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.016940488,0.0227,0.1,27.42,positive,See 1986KRU in ISBN: 9781420067989 +140,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.048847856,0.0669,7.869,207.13,negative,doi.org/10.1016/j.supflu.2005.08.004 +281,42,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0719,,0.1,25.38,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +15,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.0848,0.0848,0.44,67.77,positive,doi.org/10.1006/jcht.1999.0607 +16,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.128,,70,15.85,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +251,71,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,90000,1.039981511,0.191166962,0.2447,0.1,45.55,positive,doi.org/10.1016/j.eurpolymj.2003.09.027 +282,55,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,100000,1.063829787,0.014915085,0.02,0.1,231.6,negative,doi.org/10.1002/app.1993.070470707 +252,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,23.552,49.77,positive,doi.org/10.1016/S0378-3812(97)00157-X +10,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.084629243,0.102,0.1,-11.2,positive,doi.org/10.1016/0032-3861(95)91454-F +7,3,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,11570,1.150099404,0.099045476,0.142,0.1,174,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +283,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.012,,0.1,29.65,positive,doi.org/10.1039/B301190A +284,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.094,,0.1,25.47,positive,doi.org/10.1039/B301190A +13,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.098758936,0.0927,1.83,38.34,positive,doi.org/10.1006/jcht.1999.0607 +82,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1385,0.1385,3.52,6.55,positive,doi.org/10.1006/jcht.1999.0607 +68,11,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,3350,1.595238095,0.08988764,0.1,0.1,245.4,positive,doi.org/10.1021/ma00015a024 +7,3,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,11570,1.150099404,0.081331711,0.1263,0.1,158.7,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +69,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.19,,0.1,115.9,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +285,36,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,90000,1.040462428,0.003714317,0.005,0.1,13.96,positive,doi.org/10.1016/S0378-3812(99)00128-4 +141,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.000358203,0.0005,4.911,201.97,negative,doi.org/10.1016/j.supflu.2005.08.004 +70,10,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8000,1.6,0.275862069,0.3,0.1,278.9,positive,doi.org/10.1021/ma00015a024 +253,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,1.27,35.33,positive,doi.org/10.1063/1.464440 +17,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.128,,80,16.45,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +14,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.113770676,0.1069,2.63,38.23,positive,doi.org/10.1006/jcht.1999.0607 +97,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.176799578,0.2199,1.128,82.047,positive,doi.org/10.1021/ma9517308 +142,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.022402455,0.031,5.6,180.01,negative,doi.org/10.1016/j.fluid.2003.07.004 +45,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.145931506,0.187,2.77,38.97,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +41,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.182841437,0.229,0.41,12.02,positive,doi.org/10.1021/ma00107a011 +46,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.096178884,0.1253,2.53,140.07,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +15,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.132854881,0.177,0.28,30.36,positive,doi.org/10.1021/ma00107a011 +254,81,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,719000,1.060471976,0.0227,,0.1,61.552,positive,doi.org/10.1063/1.439127 +21,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.031258614,0.045,13.37,150,negative,doi.org/10.1021/je0103162 +16,72,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,106300,1.059820538,0.115571327,0.155,2.15,52.27,positive,doi.org/10.1021/ma00107a011 +255,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.090479565,0.12,6.32,54.04,positive,doi.org/10.1016/S0378-3812(97)00157-X +286,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0269,,0.1,23.469,positive,doi.org/10.1063/1.430349 +42,53,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,16600,1.050632911,0.141900377,0.18,4.3,130.35,negative,doi.org/10.1039/B109405J +256,61,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,181000,1.058479532,0.1347,,0.1,52.9,positive,doi.org/10.1063/1.439127 +98,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,0.357,136.949,negative,doi.org/10.1021/ma9517308 +71,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.2974,,0.1,135.35,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +3,2,poly(vinyl chloride),9002-86-2,*CC(*)Cl,phenetole,103-73-1,CCOc1ccccc1,37000,1.178343949,0.072234257,0.1,75,15.3,positive,doi.org/10.1002/macp.1985.021860409 +287,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.229960616,0.287,0.1,22,positive,doi.org/10.1002/macp.1965.020880115 +8,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.230080583,0.27,0.31,4.21,positive,doi.org/10.1021/ma00107a011 +16,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],11500,1.069767442,0.235896351,0.271,0.1,9.3,positive,doi.org/10.1063/1.1143329 +43,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.678782231,0.6992,0.1,29.71,negative,doi.org/10.1016/S0022-2860(00)00559-7 +47,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.109403402,0.1419,0.89,13.12,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +257,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.074826302,0.0998,83.55,20.2,positive,doi.org/10.1063/1.464440 +288,73,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,41000,5.125,0.071161382,0.0936,0.1,25.4,positive,doi.org/10.1002/pi.4980080407 +72,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.3299,,0.1,137.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +258,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.036526526,0.0494,10.05,26.35,positive,doi.org/10.1016/S0378-3812(97)00302-6 +16,4,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20100,1.020304569,0.0817007,0.111,0.1,32.35,positive,doi.org/10.1021/je990141k +99,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.22839651,0.2798,2.832,156.318,negative,doi.org/10.1021/ma9517308 +6,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,31200,1.2,0.074076526,0.0894,0.1,-34.1,positive,doi.org/10.1016/0032-3861(95)91454-F +8,8,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,18970,1.04002193,0.087652698,0.1356,0.1,154.6,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +48,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.109403402,0.1419,3.79,140.98,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +44,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.038053348,0.0417,2.5,32.55,negative,doi.org/10.1021/ma011533a +45,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.233319689,0.2508,0.1,28.01,negative,doi.org/10.1016/S0022-2860(00)00559-7 +17,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.197860168,0.229,0.97,103.51,negative,doi.org/10.1021/ma00107a011 +49,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,1.76,106.96,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +259,61,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,181000,1.058479532,0.0235,,0.1,52.9,positive,doi.org/10.1063/1.439127 +46,8,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,258000,2.15,0.026890297,0.0295,14.85,34.55,negative,doi.org/10.1021/ma011533a +289,75,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,320000,2.5,0.139233403,0.179,0.1,26,positive,doi.org/10.1021/ma00040a033 +260,61,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,181000,1.058479532,0.016,,0.1,52.057,positive,doi.org/10.1063/1.439127 +261,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,16.38,32.08,positive,doi.org/10.1063/1.464440 +22,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],2000000,1.299967501,0.017,,0.1,34.16,positive,doi.org/10.1039/B301190A +15,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.113770676,0.1069,0.55,38.77,positive,doi.org/10.1006/jcht.1999.0607 +290,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.040018818,0.0532,0.1,26.85,positive,doi.org/10.1002/macp.1965.020880115 +291,36,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,90000,1.040462428,0.001855959,0.0025,0.1,11.95,positive,doi.org/10.1016/S0378-3812(99)00128-4 +292,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0127,,0.1,30.291,positive,doi.org/10.1103/PhysRevA.18.2683 +23,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],13200000,1.130136986,0.0054,,0.1,36.61,positive,doi.org/10.1039/B301190A +73,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.004446915,0.005,0.1,130,negative,doi.org/10.1021/ma00015a024 +143,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.009923852,0.0138,2.15,170.25,negative,See 2001TOR in ISBN: 9781420067989 +262,70,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,400000,1.058201058,0.052734515,0.0709,0.1,221.332,negative,doi.org/10.1021/ma60032a020 +100,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.070072993,0.09,4.388,181.57,negative,doi.org/10.1021/ma9517308 +34,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.247,,0.1,19.292,positive,doi.org/10.1063/1.472437 +18,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.128,,30,13.45,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +263,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.2863,,0.1,21.865,positive,doi.org/10.1063/1.479914 +293,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.055,,0.1,26.48,positive,doi.org/10.1103/PhysRevE.55.3159 +20,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.135832598,0.15,3.7,63.99,positive,doi.org/10.1021/ma00107a011 +101,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.193939394,0.24,2.952,-2.632,positive,doi.org/10.1021/ma9517308 +83,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.3649,0.3649,2.84,16.11,positive,doi.org/10.1006/jcht.1999.0607 +47,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.038025867,0.04167,1,32.45,negative,doi.org/10.1016/S0378-3812(01)00469-1 +17,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,22100,1.03030303,0.114011441,0.153,2.59,26.84,positive,doi.org/10.1021/ma00107a011 +144,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.003026428,0.00422,11.95,221.4,negative,doi.org/10.1021/ie034302w +294,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.028774321,0.0384,0.1,25.1,positive,See 1986KRU in ISBN: 9781420067989 +145,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.001720302,0.0024,1.898,172.73,negative,doi.org/10.1016/j.supflu.2005.08.004 +30,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.169547249,0.1999,0.689,33.716,positive,doi.org/10.1021/ma9517308 +74,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.2257,,0.1,115.7,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +295,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.05704983,0.0754,0.1,26.82,positive,See 1986KRU in ISBN: 9781420067989 +18,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.175485948,0.204,0.49,92.34,negative,doi.org/10.1021/ma00107a011 +35,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.0532,,0.1,49.868,positive,doi.org/10.1063/1.472437 +43,100,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,7800,1.18993135,0.217913006,0.27,0.1,-20.3,positive,doi.org/10.1063/1.1143329 +296,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.021,,0.1,20.17,positive,doi.org/10.1039/B301190A +75,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.37501454,0.403,0.1,132.9,negative,doi.org/10.1021/ma00015a024 +264,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.090479565,0.12,6.8,53.83,positive,doi.org/10.1016/S0378-3812(97)00157-X +9,9,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,7410,1.170616114,0.027414648,0.044,0.1,160.2,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +265,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,5.88,22.1,positive,doi.org/10.1063/1.464440 +102,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.202531646,0.25,2.763,-3.022,positive,doi.org/10.1021/ma9517308 +19,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],11500,1.069767442,0.17192429,0.2,0.1,10.63,positive,doi.org/10.1063/1.1143329 +297,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.068009435,0.08955,0.1,24.2,positive,See 1984GIL in ISBN: 9781420067989 +146,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.016075286,0.0223,6.988,202.38,negative,doi.org/10.1016/j.supflu.2005.08.004 +298,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0209,,0.1,30.468,positive,doi.org/10.1103/PhysRevA.18.2683 +50,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.085273484,0.1115,4.39,8.51,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +266,102,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.151967736,0.1972,28.83,10.65,positive,doi.org/10.1063/1.464440 +267,107,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20200,1.057591623,0.3528,,0.1,20.6,positive,doi.org/10.1063/1.439127 +76,6,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,2530,1.171296296,0.274815828,0.2989,0.1,227.7,positive,doi.org/10.1016/0378-3812(93)85105-U +42,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.105951487,0.0995,3.42,14.46,positive,doi.org/10.1006/jcht.1999.0607 +299,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0733,,0.1,29.95,positive,doi.org/10.1103/PhysRevA.18.2683 +300,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.203364388,0.256,0.1,23,positive,doi.org/10.1002/macp.1965.020880115 +18,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.110119924,0.148,1.59,29.73,positive,doi.org/10.1021/ma00107a011 +268,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,6.27,56.15,positive,doi.org/10.1016/S0378-3812(97)00157-X +147,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.060586478,0.0826,7.834,207.42,negative,doi.org/10.1016/j.supflu.2005.08.004 +269,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,8.472,52.8,positive,doi.org/10.1016/S0378-3812(97)00157-X +301,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0919,,0.1,23.796,positive,doi.org/10.1063/1.430349 +302,42,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0616,,0.1,25.6,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +270,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,1.77,22.77,positive,doi.org/10.1063/1.464440 +9,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.214854268,0.253,1.73,2.6,positive,doi.org/10.1021/ma00107a011 +303,42,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0063,,0.1,25.48,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +103,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.176884422,0.22,4.293,155.742,negative,doi.org/10.1021/ma9517308 +304,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0481,,0.1,30.435,positive,doi.org/10.1103/PhysRevA.18.2683 +271,87,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,109000,1.058252427,0.084,,0.1,49.56,positive,doi.org/10.1063/1.439127 +10,67,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,4215,1.069796954,0.091543921,0.1005,0.1,47.09,positive,doi.org/10.1021/je0504865 +272,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,27.362,49.03,positive,doi.org/10.1016/S0378-3812(97)00157-X +77,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.2315,,0.1,117.8,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +51,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.126382966,0.163,2.4,39.99,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +44,100,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,7800,1.18993135,0.113285166,0.145,0.1,-18.95,positive,doi.org/10.1063/1.1143329 +4,1,poly(vinyl chloride),9002-86-2,*CC(*)Cl,"1,2-dimethylbenzene",95-47-6,Cc1ccccc1C,75000,1.159196291,0.052537313,0.08,50,43.3,positive,doi.org/10.1002/macp.1985.021860409 +20,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.104323873,0.123,2.35,60.29,positive,doi.org/10.1021/ma00107a011 +36,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.1345,,0.1,51.906,positive,doi.org/10.1063/1.472437 +45,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.085973967,0.111,1.49,102.65,negative,doi.org/10.1021/ma00107a011 +273,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,7.85,55.37,positive,doi.org/10.1016/S0378-3812(97)00157-X +17,7,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,75600,1.05,0.066359069,0.0907,0.1,55.85,positive,doi.org/10.1021/je990141k +305,105,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,415000,1.058673469,0.0523,,0.1,26.97,positive,doi.org/10.1016/0032-3861(73)90005-0 +306,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0077,,0.1,21.876,positive,doi.org/10.1063/1.430349 +307,30,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,600000,1.099908341,0.054274536,0.0718,0.1,28.24,positive,doi.org/10.1007/BF01525017 +274,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.072747343,0.0971,6.1,53.9,positive,doi.org/10.1016/S0378-3812(97)00302-6 +78,7,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8420,1.24925816,0.364409438,0.3921,0.1,130.6,negative,doi.org/10.1016/0378-3812(93)85105-U +275,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.103004224,0.136,6.55,52.71,positive,doi.org/10.1016/S0378-3812(97)00302-6 +46,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.212733185,0.264,0.09,11.89,positive,doi.org/10.1021/ma00107a011 +24,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],2000000,1.299967501,0.03,,0.1,34.24,positive,doi.org/10.1039/B301190A +276,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.13972843,0.1821,9.05,30.38,positive,doi.org/10.1016/S0378-3812(97)00302-6 +21,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.237413105,0.259,1.79,85.07,negative,doi.org/10.1021/ma00107a011 +19,116,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,4140,1.058823529,0.136022135,0.181,3.7,-13.66,positive,doi.org/10.1021/ma00107a011 +79,1,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,11615,1.110739218,0.0489,,0.1,120.8,negative,See 2001FIS in ISBN: 9781420067989 +308,58,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,286000,2.2,0.009677231,0.013,0.1,25.55,positive,doi.org/10.1021/je0504865 +80,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.3208,,0.1,124.6,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +47,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.085973967,0.111,0.75,94.48,negative,doi.org/10.1021/ma00107a011 +81,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0547,,0.1,133.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +84,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.3145,0.3145,4.96,4.01,positive,doi.org/10.1006/jcht.1999.0607 +277,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.058586078,0.0786,1.86,22.22,positive,doi.org/10.1063/1.464440 +309,76,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.182916791,0.2318,0.1,22.12,positive,See 1996RON in ISBN: 9781420067989 +148,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.114880564,0.1534,4.898,187.153,negative,doi.org/10.1016/j.supflu.2005.08.004 +278,33,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,2700000,1.099796334,0.026000438,0.0353,0.1,66.614,positive,doi.org/10.1021/ma60032a020 +279,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.037801129,0.0511,7.6,54.56,positive,doi.org/10.1016/S0378-3812(97)00302-6 +280,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.192338678,0.2461,49.03,19.05,positive,doi.org/10.1063/1.464440 +310,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.034651644,0.04615,0.1,22.5,positive,See 1984GIL in ISBN: 9781420067989 +281,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.1167,,0.1,22.657,positive,doi.org/10.1063/1.439127 +85,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0355,0.0355,4.58,47.98,positive,doi.org/10.1006/jcht.1999.0607 +6,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,31200,1.2,0.03333434,0.0474,0.1,166.1,negative,doi.org/10.1016/0032-3861(95)91454-F +22,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.043302809,0.062,9.24,150,negative,doi.org/10.1021/je0103162 +10,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.257207891,0.3,0.57,-1.28,positive,doi.org/10.1021/ma00107a011 +311,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1423,,0.1,22.967,positive,doi.org/10.1063/1.430349 +149,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.114880564,0.1534,4.233,182.309,negative,doi.org/10.1016/j.supflu.2005.08.004 +82,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.1879,,0.1,115.4,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +86,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1562,0.1562,1.59,6.48,positive,doi.org/10.1006/jcht.1999.0607 +312,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0499,,0.1,30.412,positive,doi.org/10.1103/PhysRevA.18.2683 +104,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.202445508,0.2499,0.995,146.554,negative,doi.org/10.1021/ma9517308 +18,6,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,32900,1.018575851,0.124211444,0.166,0.1,45.45,positive,doi.org/10.1021/je990141k +5,1,poly(vinyl chloride),9002-86-2,*CC(*)Cl,"1,2-dimethylbenzene",95-47-6,Cc1ccccc1C,75000,1.159196291,0.052537313,0.08,75,39.3,positive,doi.org/10.1002/macp.1985.021860409 +313,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0355,,0.1,23.67,positive,doi.org/10.1063/1.430349 +31,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.091732599,0.11,3.552,181.176,negative,doi.org/10.1021/ma9517308 +3,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-octane,111-65-9,CCCCCCCC,1240,1.068965517,0.209944751,0.285,0.1,5.05,positive,doi.org/10.1016/S0378-3812(01)00548-9 +48,53,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,16600,1.050632911,0.141900377,0.18,42.5,-10.25,positive,doi.org/10.1039/B109405J +150,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.013393937,0.0186,6.7,190,negative,doi.org/10.1016/j.fluid.2003.07.004 +83,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.2095,,0.1,116.6,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +151,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.015930203,0.0221,10.98,240.15,negative,See 2001TOR in ISBN: 9781420067989 +314,111,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,20400,1.0625,0.003714317,0.005,0.1,3.1,positive,doi.org/10.1021/ma00015a024 +16,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.1205,0.1205,0.49,67.78,positive,doi.org/10.1006/jcht.1999.0607 +282,87,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,109000,1.058252427,0.0443,,0.1,49.236,positive,doi.org/10.1063/1.439127 +11,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.230080583,0.27,2.25,0.33,positive,doi.org/10.1021/ma00107a011 +315,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.005426128,0.0073,0.1,21,positive,doi.org/10.1002/macp.1965.020880115 +316,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0863,,0.1,23.818,positive,doi.org/10.1063/1.430349 +283,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,0.1,23.12,positive,doi.org/10.1063/1.464440 +43,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.08954642,0.084,4.65,14.15,positive,doi.org/10.1006/jcht.1999.0607 +44,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.093148089,0.0874,5.06,-4.61,positive,doi.org/10.1006/jcht.1999.0607 +284,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,5.516,54.95,positive,doi.org/10.1016/S0378-3812(97)00157-X +285,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.033831286,0.0458,13.717,53.02,positive,doi.org/10.1016/S0378-3812(97)00157-X +286,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.17486215,0.2251,7.05,30.76,positive,doi.org/10.1016/S0378-3812(97)00302-6 +317,75,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,320000,2.5,0.129478882,0.167,0.1,26,positive,doi.org/10.1021/ma00040a033 +12,5,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,10500,1.019417476,0.175925926,0.209,1.55,-38.2,positive,doi.org/10.1021/ma00107a011 +105,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,1.94,155.186,negative,doi.org/10.1021/ma9517308 +45,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.08954642,0.084,1.46,14.7,positive,doi.org/10.1006/jcht.1999.0607 +2,117,polystyrene,9003-53-6,*C(C*)c1ccccc1,bisphenol-A diglycidyl ether,1675-54-3,CC(C)(c1ccc(OCC2CO2)cc1)c3ccc(OCC4CO4)cc3,228000,1.050691244,0.1101,,0.1,77.65,positive,doi.org/10.1002/macp.200300106 +37,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.0888,,0.1,53.118,positive,doi.org/10.1063/1.472437 +287,83,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,46400,1.059360731,0.1492,,0.1,39.395,positive,doi.org/10.1063/1.439127 +87,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0535,0.0535,5.73,48.28,positive,doi.org/10.1006/jcht.1999.0607 +2,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-hexane,110-54-3,CCCCCC,1240,1.068965517,0.149652986,0.219,0.1,1.25,positive,doi.org/10.1016/S0378-3812(01)00548-9 +106,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.272868217,0.33,0.718,-2.118,positive,doi.org/10.1021/ma9517308 +49,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.127937264,0.163,0.97,12.34,positive,doi.org/10.1021/ma00107a011 +19,6,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,32900,1.018575851,0.007146122,0.01,0.1,29.85,positive,doi.org/10.1021/je990141k +20,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.141583369,0.188,0.26,30.26,positive,doi.org/10.1021/ma00107a011 +318,82,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0362,,0.1,26.47,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +11,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,100000,1.060445387,0.008266828,0.01,0.1,-28.2,positive,doi.org/10.1021/ma00015a024 +319,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.171502723,0.21815,0.1,21.98,positive,See 1984GIL in ISBN: 9781420067989 +22,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.197978407,0.217,2.83,63.85,positive,doi.org/10.1021/ma00107a011 +288,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.024291101,0.033,9.05,54.28,positive,doi.org/10.1016/S0378-3812(97)00302-6 +25,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.041,,0.1,30.12,positive,doi.org/10.1039/B301190A +320,58,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,286000,2.2,0.016940488,0.0227,0.1,25.23,positive,doi.org/10.1021/je0504865 +88,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1393,0.1393,0.12,24.2,positive,doi.org/10.1006/jcht.1999.0607 +23,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.052602282,0.075,11.51,170,negative,doi.org/10.1021/je0103162 +289,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.048267639,0.065,1.8,226.3,negative,doi.org/10.1016/S0378-3812(97)00157-X +290,81,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,719000,1.060471976,0.09,,0.1,60.681,positive,doi.org/10.1063/1.439127 +321,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.17,,0.1,20.3,positive,doi.org/10.1039/B301190A +107,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,1.153,146.679,negative,doi.org/10.1021/ma9517308 +21,118,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,98900,1.019587629,0.091650177,0.1245,0.1,2.3,positive,doi.org/10.1627/jpi1958.33.117 +291,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,16.389,52.15,positive,doi.org/10.1016/S0378-3812(97)00157-X +89,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.0519,0.0519,3.78,42.29,positive,doi.org/10.1006/jcht.1999.0607 +322,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0308,,0.1,23.556,positive,doi.org/10.1063/1.430349 +8,5,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,22920,1.070028011,0.003326828,0.005,0.1,170,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +323,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,13200000,1.130136986,0.0015,,0.1,31.47,positive,doi.org/10.1039/B301190A +292,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.033831286,0.0458,3.403,57.58,positive,doi.org/10.1016/S0378-3812(97)00157-X +152,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.014915089,0.0207,1.5,163,negative,doi.org/10.1021/ie034302w +1,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,3-methylpentane,96-14-0,CCC(C)CC,1240,1.068965517,0.114059164,0.17,0.1,4.95,positive,doi.org/10.1016/S0378-3812(01)00548-9 +153,9,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,15500,1.076388889,0.023277641,0.0322,1.7,180.02,negative,doi.org/10.1016/j.fluid.2003.07.004 +52,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.096178884,0.1253,0.29,11.86,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +84,3,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,4490,1.130982368,0.09352518,0.104,0.1,256.8,positive,doi.org/10.1016/0378-3812(93)85105-U +293,19,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,297000,5.449541284,0.051294444,0.069,0.1,57.65,positive,See 1988SC2 in ISBN: 9781420067989 +90,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.0922,0.0922,2.75,42.9,positive,doi.org/10.1006/jcht.1999.0607 +91,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0645,0.0645,2.1,49.69,positive,doi.org/10.1006/jcht.1999.0607 +53,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.053184277,0.0703,0.28,32.87,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +20,6,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,32900,1.018575851,0.016497908,0.023,0.1,40.15,positive,doi.org/10.1021/je990141k +324,76,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.091716033,0.1198,0.1,23.85,positive,See 1996RON in ISBN: 9781420067989 +294,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,14.12,20.97,positive,doi.org/10.1063/1.464440 +85,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.1949,,0.1,115.5,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +7,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,31200,1.2,0.03333434,0.0474,0.1,1.1,positive,doi.org/10.1016/0032-3861(95)91454-F +50,45,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,24700,1.037815126,0.013620475,0.018,45.5,-16.85,positive,doi.org/10.1039/B109405J +108,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.133912138,0.1687,2.601,99.603,positive,doi.org/10.1021/ma9517308 +325,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.067271065,0.0886,0.1,26.99,positive,See 1986KRU in ISBN: 9781420067989 +295,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.115562594,0.1519,3.05,31.29,positive,doi.org/10.1016/S0378-3812(97)00302-6 +326,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.224397707,0.28056,0.1,20,positive,See 1984GIL in ISBN: 9781420067989 +296,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.13,,0.1,22.756,positive,doi.org/10.1063/1.439127 +2,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,3-methylpentane,96-14-0,CCC(C)CC,1240,1.068965517,0.135802469,0.2,0.1,4.45,positive,doi.org/10.1016/S0378-3812(01)00548-9 +3,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,"2,2,4-trimethylpentane",540-84-1,CC(C)CC(C)(C)C,1240,1.068965517,0.118931597,0.17,0.1,-12.15,positive,doi.org/10.1016/S0378-3812(01)00548-9 +46,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.119576843,0.1124,0.51,14.94,positive,doi.org/10.1006/jcht.1999.0607 +327,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,97200,1.05997819,0.020924548,0.028,0.1,18.71,positive,doi.org/10.1021/ma60032a020 +21,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.166591168,0.194,0.76,71.45,positive,doi.org/10.1021/ma00107a011 +109,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.143200418,0.1799,5.206,164.824,negative,doi.org/10.1021/ma9517308 +86,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.2031,,0.1,131.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +328,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,25000,1.059322034,0.144,,0.1,7.16,positive,doi.org/10.1039/B301190A +329,84,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.1171,,0.1,24.54,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +330,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.081,,0.1,25.83,positive,doi.org/10.1039/B301190A +38,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.2402,,0.1,19.521,positive,doi.org/10.1063/1.472437 +297,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,5.5,56.57,positive,doi.org/10.1016/S0378-3812(97)00157-X +154,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.076532282,0.1037,8.49,213.7,negative,See 2000BEH in ISBN: 9781420067989 +2,1,polyisobutylene,9003-27-4,*CC(*)(C)C,n-heptane,142-82-5,CCCCCCC,1000000,1.666666667,0.018867925,0.025,5.4,200.1,negative,doi.org/10.1021/je010171z +4,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,2-propanone,67-64-1,CC(=O)C,44500,1.508474576,0.058111711,0.07,0.1,55.9,positive,See 1998SCH in ISBN: 9781420067989 +92,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.0922,0.0922,1.62,43.19,positive,doi.org/10.1006/jcht.1999.0607 +32,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,5.346,190.781,negative,doi.org/10.1021/ma9517308 +298,107,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20200,1.057591623,0.0593,,0.1,24.154,positive,doi.org/10.1063/1.439127 +19,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.042,,10,6.55,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +155,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.067892668,0.0923,7.99,209.3,negative,doi.org/10.1016/j.supflu.2005.08.004 +299,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.087,,0.1,22.096,positive,doi.org/10.1063/1.439127 +300,71,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,90000,1.039981511,0.077294298,0.103,0.1,46.95,positive,doi.org/10.1016/j.eurpolymj.2003.09.027 +301,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,90.61,30.1,positive,doi.org/10.1063/1.464440 +331,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,100000,1.060445387,0.022430822,0.03,0.1,19.8,positive,doi.org/10.1021/ma00015a024 +332,29,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,111000,1.050141911,0.080069894,0.105,0.1,21.34,positive,See 1986KRU in ISBN: 9781420067989 +156,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.007183423,0.01,4.798,187.49,negative,doi.org/10.1016/j.supflu.2005.08.004 +157,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.016075286,0.0223,4.408,182.49,negative,doi.org/10.1016/j.supflu.2005.08.004 +333,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.119690701,0.15488,0.1,23.54,positive,See 1984GIL in ISBN: 9781420067989 +302,95,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17300,1.061349693,0.0961,,0.1,22.526,positive,doi.org/10.1063/1.439127 +47,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.123163812,0.1158,1.51,14.93,positive,doi.org/10.1006/jcht.1999.0607 +110,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.193939394,0.24,1.18,-1.2,positive,doi.org/10.1021/ma9517308 +51,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.212733185,0.264,0.66,10.92,positive,doi.org/10.1021/ma00107a011 +334,35,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,335500,1.690176322,0.056201266,0.0743,0.1,24.93,positive,See 1986KRU in ISBN: 9781420067989 +22,57,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],7800,1.181818182,0.075900888,0.09,0.1,8.37,positive,doi.org/10.1063/1.1143329 +33,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.169547249,0.1999,2.653,172.276,negative,doi.org/10.1021/ma9517308 +303,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.192338678,0.2461,11.38,20.85,positive,doi.org/10.1063/1.464440 +93,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1611,0.1611,1.56,6.34,positive,doi.org/10.1006/jcht.1999.0607 +158,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.06088695,0.083,3.7,215,negative,doi.org/10.1021/ie034302w +304,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.192338678,0.2461,0.1,22.64,positive,doi.org/10.1063/1.464440 +305,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,40.7,19.62,positive,doi.org/10.1063/1.464440 +159,9,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,15500,1.076388889,0.072508469,0.0984,3.3,190,negative,doi.org/10.1016/j.fluid.2003.07.004 +306,89,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37900,1.010666667,0.038251272,0.0517,0.1,35.16,positive,See 1996RON in ISBN: 9781420067989 +39,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.0446,,0.1,53.079,positive,doi.org/10.1063/1.472437 +94,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0645,0.0645,1.23,49.98,positive,doi.org/10.1006/jcht.1999.0607 +23,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.09653999,0.114,1.39,107.42,negative,doi.org/10.1021/ma00107a011 +335,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0496,,0.1,26.143,positive,doi.org/10.1103/PhysRevE.55.3159 +336,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,25000,1.059322034,0.166,,0.1,7.07,positive,doi.org/10.1039/B301190A +95,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1562,0.1562,4.28,6.26,positive,doi.org/10.1006/jcht.1999.0607 +337,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0094,,0.1,30.11,positive,doi.org/10.1103/PhysRevA.18.2683 +307,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,10.119,52.87,positive,doi.org/10.1016/S0378-3812(97)00157-X +308,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,35.625,45.97,positive,doi.org/10.1016/S0378-3812(97)00157-X +17,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.1326,0.1326,3.33,66.47,positive,doi.org/10.1006/jcht.1999.0607 +11,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.204664927,0.24,0.1,229,negative,doi.org/10.1016/0032-3861(95)91454-F +338,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.048,,0.1,26.21,positive,doi.org/10.1039/B301190A +160,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.003514777,0.0049,1.572,167.33,negative,doi.org/10.1016/j.supflu.2005.08.004 +96,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.0337,0.0337,4.98,40.48,positive,doi.org/10.1006/jcht.1999.0607 +339,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0964,,0.1,23.772,positive,doi.org/10.1063/1.430349 +87,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0221,,0.1,117.6,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +309,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.192338678,0.2461,58.55,19.1,positive,doi.org/10.1063/1.464440 +48,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.123163812,0.1158,3.61,14.55,positive,doi.org/10.1006/jcht.1999.0607 +161,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.065251657,0.0888,3.4,180.21,negative,doi.org/10.1016/j.fluid.2003.07.004 +21,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.141583369,0.188,0.84,30.01,positive,doi.org/10.1021/ma00107a011 +111,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.143283582,0.18,1.866,-4.647,positive,doi.org/10.1021/ma9517308 +26,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],25000,1.059322034,0.16,,0.1,10.26,positive,doi.org/10.1039/B301190A +3,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,anisole,100-66-3,COc1ccccc1,44500,1.508474576,0.636255072,0.629,0.1,33.5,positive,See 1998SCH in ISBN: 9781420067989 +48,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.02268772,0.0249,0.1,31.55,negative,doi.org/10.1016/S0022-2860(00)00559-7 +20,52,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,90000,1.040462428,0.058619573,0.0699,0.1,8.1,positive,doi.org/10.1016/0032-3861(95)91454-F +88,1,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,11615,1.110739218,0.3411,,0.1,133.55,negative,See 2001FIS in ISBN: 9781420067989 +310,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,65.51,29.56,positive,doi.org/10.1063/1.464440 +112,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.202531646,0.25,3.267,-3.574,positive,doi.org/10.1021/ma9517308 +89,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0196,,0.1,117.2,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +113,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.211167513,0.26,2.399,-2.068,positive,doi.org/10.1021/ma9517308 +21,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.042,,40,9.15,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +340,113,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,610000,1.077738516,0.052119604,0.069,0.1,27.6,positive,doi.org/10.1021/ma00015a024 +52,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,11500,1.069767442,0.160153235,0.202,0.1,-25.28,positive,doi.org/10.1063/1.1143329 +10,5,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,22920,1.070028011,0.092510867,0.1427,0.1,153.4,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +341,42,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0817,,0.1,25.09,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +342,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,100000,1.060445387,0.153984546,0.197,0.1,19.9,positive,doi.org/10.1021/ma00015a024 +311,87,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,109000,1.058252427,0.2919,,0.1,39.89,positive,doi.org/10.1063/1.439127 +97,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1059,0.1059,0.28,43.49,positive,doi.org/10.1006/jcht.1999.0607 +49,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.239830986,0.2273,5.27,12.83,positive,doi.org/10.1006/jcht.1999.0607 +27,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],13200000,1.130136986,0.0074,,0.1,36.69,positive,doi.org/10.1039/B301190A +162,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.047765372,0.065445,5.474,187.35,negative,doi.org/10.1016/j.supflu.2005.08.004 +343,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.029516206,0.03938,0.1,20,positive,See 1984GIL in ISBN: 9781420067989 +40,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.2294,,0.1,32.661,positive,doi.org/10.1063/1.472437 +344,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,97200,1.05997819,0.016715303,0.0224,0.1,230.66,negative,doi.org/10.1021/ma60032a020 +34,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.221355036,0.2581,0.559,158.396,negative,doi.org/10.1021/ma9517308 +345,42,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0912,,0.1,24.87,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +346,84,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0312,,0.1,27.07,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +163,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.015930203,0.0221,9.9,229.75,negative,See 2001TOR in ISBN: 9781420067989 +347,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.010947535,0.0147,0.1,27,positive,doi.org/10.1002/macp.1965.020880115 +35,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,3.087,25.372,positive,doi.org/10.1021/ma9517308 +312,19,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,297000,5.449541284,0.086588554,0.115,0.1,55.51,positive,See 1988SC2 in ISBN: 9781420067989 +313,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.103004224,0.136,10.1,51.32,positive,doi.org/10.1016/S0378-3812(97)00302-6 +50,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.249063489,0.2362,3.02,-4.38,positive,doi.org/10.1006/jcht.1999.0607 +314,102,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.151967736,0.1972,34.32,10.58,positive,doi.org/10.1063/1.464440 +98,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.044,0.044,4.33,41.69,positive,doi.org/10.1006/jcht.1999.0607 +315,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.097275917,0.1287,32.36,19.88,positive,doi.org/10.1063/1.464440 +114,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.199003566,0.2459,2.748,107.237,positive,doi.org/10.1021/ma9517308 +348,82,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0806,,0.1,25.09,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +53,45,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,24700,1.037815126,0.013620475,0.018,5,149.35,negative,doi.org/10.1039/B109405J +316,95,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17300,1.061349693,0.0649,,0.1,21.325,positive,doi.org/10.1063/1.439127 +115,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.176799578,0.2199,5.059,63.842,positive,doi.org/10.1021/ma9517308 +99,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1126,0.1126,1.28,23.95,positive,doi.org/10.1006/jcht.1999.0607 +3,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-hexane,110-54-3,CCCCCC,1240,1.068965517,0.053753782,0.083,0.1,-5.75,positive,doi.org/10.1016/S0378-3812(01)00548-9 +49,9,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,88200,1.8,0.00036365,0.0004,0.1,36.2,negative,doi.org/10.1295/polymj.34.383 +349,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.019043908,0.0255,0.1,26,positive,doi.org/10.1002/macp.1965.020880115 +350,113,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,610000,1.077738516,0.021677489,0.029,0.1,28.3,positive,doi.org/10.1021/ma00015a024 +12,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.066170639,0.08,0.1,231.4,negative,doi.org/10.1016/0032-3861(95)91454-F +18,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.0995,0.0995,0.49,67.96,positive,doi.org/10.1006/jcht.1999.0607 +164,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.044167367,0.0606,8.519,212.08,negative,doi.org/10.1016/j.supflu.2005.08.004 +317,61,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,181000,1.058479532,0.0379,,0.1,53.61,positive,doi.org/10.1063/1.439127 +12,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,100000,1.060445387,0.128859181,0.152,0.1,149.3,negative,doi.org/10.1021/ma00015a024 +100,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1654,0.1654,1.22,24.09,positive,doi.org/10.1006/jcht.1999.0607 +318,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,33.73,46.55,positive,doi.org/10.1016/S0378-3812(97)00157-X +319,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,3.82,34.65,positive,doi.org/10.1063/1.464440 +36,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.169547249,0.1999,5.207,190.37,negative,doi.org/10.1021/ma9517308 +165,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.038986749,0.0536,4,170.02,negative,doi.org/10.1016/j.fluid.2003.07.004 +320,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.234042447,0.2952,40.4,18.3,positive,doi.org/10.1063/1.464440 +351,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.058201058,0.078189943,0.1026,0.1,23.83,positive,doi.org/10.1021/ma60032a020 +9,5,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,600000,1.099908341,0.025880868,0.03,0.1,147.2,negative,doi.org/10.1021/ma00015a024 +54,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.13205856,0.17,4.85,117.98,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +101,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1245,0.1245,1.39,42.9,positive,doi.org/10.1006/jcht.1999.0607 +352,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0897,,0.1,23.809,positive,doi.org/10.1063/1.430349 +37,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.091732599,0.11,4.83,190.345,negative,doi.org/10.1021/ma9517308 +353,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,25000,1.059322034,0.133,,0.1,7.15,positive,doi.org/10.1039/B301190A +38,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.221355036,0.2581,0.574,31.383,positive,doi.org/10.1021/ma9517308 +3,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-pentane,109-66-0,CCCCC,1240,1.068965517,0.18161435,0.27,0.1,12.45,positive,doi.org/10.1016/S0378-3812(01)00548-9 +354,26,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0598,,0.1,26.48,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +116,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.070072993,0.09,2.184,163.803,negative,doi.org/10.1021/ma9517308 +10,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,100000,1.060445387,0.451171611,0.489,0.1,199.2,negative,doi.org/10.1021/ma00015a024 +7,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,61400,1.04957265,0.04443423,0.0603,0.1,7.7,positive,doi.org/10.1016/0032-3861(95)91454-F +117,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.224203822,0.275,2.477,70.723,positive,doi.org/10.1021/ma9517308 +166,9,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,15500,1.076388889,0.072508469,0.0984,2,180.03,negative,doi.org/10.1016/j.fluid.2003.07.004 +11,9,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,7410,1.170616114,0.010790804,0.0175,0.1,160.1,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +55,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.145931506,0.187,3.41,36.87,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +321,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.097275917,0.1287,46.78,19.63,positive,doi.org/10.1063/1.464440 +19,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.1543,0.1543,3.54,66.1,positive,doi.org/10.1006/jcht.1999.0607 +9,5,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,22920,1.070028011,0.074080544,0.1075,0.1,167.8,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +50,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.002273244,0.0025,0.1,30.95,negative,doi.org/10.1016/S0022-2860(00)00559-7 +355,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0863,,0.1,23.82,positive,doi.org/10.1063/1.430349 +322,83,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,46400,1.059360731,0.2212,,0.1,37.895,positive,doi.org/10.1063/1.439127 +118,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,1.134,146.686,negative,doi.org/10.1021/ma9517308 +356,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1006,,0.1,23.738,positive,doi.org/10.1063/1.430349 +39,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.091732599,0.11,0.884,31.4,positive,doi.org/10.1021/ma9517308 +323,95,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17300,1.061349693,0.2178,,0.1,22.837,positive,doi.org/10.1063/1.439127 +102,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1801,0.1801,4.59,6.04,positive,doi.org/10.1006/jcht.1999.0607 +324,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.17486215,0.2251,9.05,30.3,positive,doi.org/10.1016/S0378-3812(97)00302-6 +56,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.042437227,0.0563,0.1,-0.58,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +167,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.065251657,0.0888,6.3,200.26,negative,doi.org/10.1016/j.fluid.2003.07.004 +51,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.123163812,0.1158,2.38,14.77,positive,doi.org/10.1006/jcht.1999.0607 +325,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,60.61,19.63,positive,doi.org/10.1063/1.464440 +90,6,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,2530,1.171296296,0.351505591,0.3788,0.1,222.3,positive,doi.org/10.1016/0378-3812(93)85105-U +326,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,3.36,55.69,positive,doi.org/10.1016/S0378-3812(97)00157-X +28,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],123000,1.060344828,0.158,,0.1,24.19,positive,doi.org/10.1039/B301190A +3,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,600000,1.099908341,0.046851606,0.0557,0.1,217.2,negative,doi.org/10.1016/0032-3861(95)91454-F +51,2,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,144000,2.057142857,0.003182831,0.0035,55.85,41.95,negative,doi.org/10.1021/ma011533a +168,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.043722494,0.06,10.7,210.5,negative,doi.org/10.1021/ie034302w +327,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.074826302,0.0998,6.67,21.81,positive,doi.org/10.1063/1.464440 +328,81,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,719000,1.060471976,0.014,,0.1,61.119,positive,doi.org/10.1063/1.439127 +57,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,3.22,113,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +357,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0403,,0.1,26.85,positive,doi.org/10.1103/PhysRevE.55.3159 +329,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.234042447,0.2952,71.69,18.63,positive,doi.org/10.1063/1.464440 +358,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.072,,0.1,26.02,positive,doi.org/10.1039/B301190A +169,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.003026428,0.00422,8.7,192.5,negative,doi.org/10.1021/ie034302w +91,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0187,,0.1,142.35,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +6,90,polystyrene,9003-53-6,*C(C*)c1ccccc1,methyl acetate,79-20-9,COC(=O)C,190000,1.038251366,0.037263336,0.042,0.1,27.25,positive,doi.org/10.1016/S0378-3812(99)00128-4 +22,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.123399022,0.165,0.38,30.32,positive,doi.org/10.1021/ma00107a011 +170,9,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,15500,1.076388889,0.023277641,0.0322,4.3,200,negative,doi.org/10.1016/j.fluid.2003.07.004 +171,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.067892668,0.0923,4.59,182.85,negative,doi.org/10.1016/j.supflu.2005.08.004 +330,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,3.797,55.42,positive,doi.org/10.1016/S0378-3812(97)00157-X +359,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.059,,0.1,23.835,positive,doi.org/10.1063/1.430349 +103,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1454,0.1454,3.68,42.29,positive,doi.org/10.1006/jcht.1999.0607 +3,3,polyethylene,9002-88-4,*CC*,cyclopentene,142-29-0,C1CC=CC1,106000,5.273631841,0.050963522,0.06,4.78,215.4,negative,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +12,3,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,11570,1.150099404,0.021100848,0.034,0.1,157.7,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +331,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.1269,,0.1,23.344,positive,doi.org/10.1063/1.479914 +332,109,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,14000,1.059803179,0.168506941,0.2174,0.1,18.65,positive,doi.org/10.1016/j.eurpolymj.2003.09.027 +92,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0182,,0.1,118,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +360,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.020314953,0.02719,0.1,22.96,positive,See 1984GIL in ISBN: 9781420067989 +333,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,200000,1.058201058,0.102053114,0.13479,0.1,53.833,positive,doi.org/10.1021/ma60032a020 +119,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,1.698,78.819,positive,doi.org/10.1021/ma9517308 +24,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.027741083,0.04,12.62,170,negative,doi.org/10.1021/je0103162 +361,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0962,,0.1,23.772,positive,doi.org/10.1063/1.430349 +58,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.134578869,0.1731,3.44,33.87,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +59,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.085273484,0.1115,2.09,137.96,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +60,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.096178884,0.1253,0.53,11.59,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +52,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.097023214,0.1057,0.1,32.74,negative,doi.org/10.1016/S0378-3812(01)00469-1 +334,33,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,2700000,1.099796334,0.042535037,0.0574,0.1,215.875,negative,doi.org/10.1021/ma60032a020 +120,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.176884422,0.22,4.655,92.42,positive,doi.org/10.1021/ma9517308 +172,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.048847856,0.0669,5.994,192.25,negative,doi.org/10.1016/j.supflu.2005.08.004 +61,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.13205856,0.17,3.49,113,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +24,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.125199984,0.147,1.01,71.06,positive,doi.org/10.1021/ma00107a011 +362,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.136,,0.1,27.517,positive,doi.org/10.1103/PhysRevA.18.2683 +10,4,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,31120,1.019993445,0.015531552,0.0232,0.1,166.2,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +20,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.2291,0.2291,0.58,64.59,positive,doi.org/10.1006/jcht.1999.0607 +54,45,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,24700,1.037815126,0.013620475,0.018,40.3,-15.15,positive,doi.org/10.1039/B109405J +62,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.085273484,0.1115,2.54,138.6,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +104,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.1119,0.1119,4.61,48.79,positive,doi.org/10.1006/jcht.1999.0607 +335,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,18.745,49.14,positive,doi.org/10.1016/S0378-3812(97)00157-X +105,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.134,0.134,3.22,6.34,positive,doi.org/10.1006/jcht.1999.0607 +121,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,3.823,172.532,negative,doi.org/10.1021/ma9517308 +25,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.139214446,0.163,0.51,93.13,negative,doi.org/10.1021/ma00107a011 +40,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.091732599,0.11,4.842,190.34,negative,doi.org/10.1021/ma9517308 +173,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.222104622,0.285,8.3,225,negative,doi.org/10.1021/ie034302w +29,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],25000,1.059322034,0.053,,0.1,9.45,positive,doi.org/10.1039/B301190A +93,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.2172,,0.1,116.85,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +336,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,8.4,53.32,positive,doi.org/10.1016/S0378-3812(97)00157-X +337,19,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,297000,5.449541284,0.102218137,0.135,0.1,55.01,positive,See 1988SC2 in ISBN: 9781420067989 +106,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1393,0.1393,0.76,24.1,positive,doi.org/10.1006/jcht.1999.0607 +363,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.033,,0.1,25.491,positive,doi.org/10.1103/PhysRevE.55.3159 +174,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.003514777,0.0049,3.662,182.12,negative,doi.org/10.1016/j.supflu.2005.08.004 +63,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.145931506,0.187,3.46,113,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +41,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.1129,,0.1,52.663,positive,doi.org/10.1063/1.472437 +52,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.093148089,0.0874,5.07,-4.61,positive,doi.org/10.1006/jcht.1999.0607 +64,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.085273484,0.1115,0.41,13.87,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +13,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.016358238,0.02,0.1,241,negative,doi.org/10.1016/0032-3861(95)91454-F +175,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.045517759,0.06242,9.709,222.57,negative,doi.org/10.1016/j.supflu.2005.08.004 +364,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0412,,0.1,23.753,positive,doi.org/10.1063/1.430349 +25,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.049016339,0.07,14.96,170,negative,doi.org/10.1021/je0103162 +11,8,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,18970,1.04002193,0.032680711,0.0484,0.1,168.6,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +53,2,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,144000,2.057142857,0.003182831,0.0035,20.2,40.55,negative,doi.org/10.1021/ma011533a +338,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.090479565,0.12,5.1,54.6,positive,doi.org/10.1016/S0378-3812(97)00157-X +8,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,61400,1.04957265,0.066723501,0.0898,0.1,219.5,negative,doi.org/10.1016/0032-3861(95)91454-F +107,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1503,0.1503,4.44,23.69,positive,doi.org/10.1006/jcht.1999.0607 +54,10,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,12099,1.11,0.009099181,0.01,0.1,35.5,negative,doi.org/10.1021/ma050261z +176,9,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,15500,1.076388889,0.060436268,0.0824,2.1,179.92,negative,doi.org/10.1016/j.fluid.2003.07.004 +177,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.112846412,0.1508,9.01,224.22,negative,See 2000BEH in ISBN: 9781420067989 +339,83,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,46400,1.059360731,0.2863,,0.1,34.45,positive,doi.org/10.1063/1.439127 +55,45,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,24700,1.037815126,0.013620475,0.018,53.65,-20.15,positive,doi.org/10.1039/B109405J +26,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.166591168,0.194,1.54,64.13,positive,doi.org/10.1021/ma00107a011 +340,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,30.02,47.25,positive,doi.org/10.1016/S0378-3812(97)00157-X +21,4,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20100,1.020304569,0.07336462,0.1,0.1,31.03,positive,doi.org/10.1021/je990141k +55,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.162319965,0.1757,0.1,32.55,negative,doi.org/10.1021/ma011533a +341,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.141,,0.1,23.394,positive,doi.org/10.1063/1.479914 +365,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,97200,1.05997819,0.032108206,0.0428,0.1,229.5,negative,doi.org/10.1021/ma60032a020 +178,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.014915089,0.0207,3.7,180,negative,doi.org/10.1021/ie034302w +56,2,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,144000,2.057142857,0.003182831,0.0035,50.75,41.75,negative,doi.org/10.1021/ma011533a +342,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,55.878,44.38,positive,doi.org/10.1016/S0378-3812(97)00157-X +343,81,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,719000,1.060471976,0.0699,,0.1,61.363,positive,doi.org/10.1063/1.439127 +122,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.202445508,0.2499,4.539,63.827,positive,doi.org/10.1021/ma9517308 +366,111,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,20400,1.0625,0.159760173,0.204,0.1,6.6,positive,doi.org/10.1021/ma00015a024 +108,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1454,0.1454,2.64,42.6,positive,doi.org/10.1006/jcht.1999.0607 +42,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.026,,0.1,41.143,positive,doi.org/10.1063/1.472437 +94,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.1945,,0.1,116,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +26,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.013782542,0.02,10.96,130,negative,doi.org/10.1021/je0103162 +344,98,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.060790274,0.1969,,0.1,35.438,positive,doi.org/10.1063/1.439127 +345,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,64.82,19.7,positive,doi.org/10.1063/1.464440 +56,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.123853657,0.158,1.29,56.04,positive,doi.org/10.1021/ma00107a011 +23,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.168180942,0.185,3.36,96.51,negative,doi.org/10.1021/ma00107a011 +57,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.114095631,0.146,1.18,93.65,negative,doi.org/10.1021/ma00107a011 +16,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.098758936,0.0927,0.47,38.68,positive,doi.org/10.1006/jcht.1999.0607 +123,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,4.729,181.539,negative,doi.org/10.1021/ma9517308 +109,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1388,0.1388,1.82,24,positive,doi.org/10.1006/jcht.1999.0607 +124,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.046376812,0.06,0.534,64.15,positive,doi.org/10.1021/ma9517308 +110,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0645,0.0645,3.02,49.38,positive,doi.org/10.1006/jcht.1999.0607 +346,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,6.685,54.41,positive,doi.org/10.1016/S0378-3812(97)00157-X +367,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1062,,0.1,23.689,positive,doi.org/10.1063/1.430349 +125,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.211167513,0.26,3.162,-2.657,positive,doi.org/10.1021/ma9517308 +179,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.067892668,0.0923,8.98,217.99,negative,doi.org/10.1016/j.supflu.2005.08.004 +347,98,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.060790274,0.0205,,0.1,30.89,positive,doi.org/10.1063/1.439127 +17,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.141282805,0.133,3.78,37.71,positive,doi.org/10.1006/jcht.1999.0607 +348,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.1146,,0.1,23.253,positive,doi.org/10.1063/1.479914 +111,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1215,0.1215,5.56,6.24,positive,doi.org/10.1006/jcht.1999.0607 +126,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.070072993,0.09,3.425,172.615,negative,doi.org/10.1021/ma9517308 +368,42,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.059,,0.1,25.51,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +369,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.008930516,0.012,0.1,22,positive,doi.org/10.1002/macp.1965.020880115 +95,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.3373,,0.1,138.35,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +43,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.2235,,0.1,19.882,positive,doi.org/10.1063/1.472437 +349,109,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,14000,1.059803179,0.156697046,0.203,0.1,18.75,positive,doi.org/10.1016/j.eurpolymj.2003.09.027 +370,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.017766467,0.0238,0.1,25,positive,doi.org/10.1002/macp.1965.020880115 +22,92,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,184000,1.069767442,0.124061294,0.1664,0.1,4.9,positive,doi.org/10.1627/jpi1958.33.117 +371,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0812,,0.1,23.832,positive,doi.org/10.1063/1.430349 +57,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.137781669,0.1495,0.1,29.55,negative,doi.org/10.1016/S0022-2860(00)00559-7 +350,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,2.47,240.73,negative,doi.org/10.1016/S0378-3812(97)00157-X +127,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.199003566,0.2459,2.762,107.235,positive,doi.org/10.1021/ma9517308 +372,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0673,,0.1,30.098,positive,doi.org/10.1103/PhysRevA.18.2683 +96,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.018710324,0.021,0.1,287.5,positive,doi.org/10.1021/ma00015a024 +112,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0727,0.0727,0.95,23.01,positive,doi.org/10.1006/jcht.1999.0607 +128,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.176884422,0.22,5.023,164.332,negative,doi.org/10.1021/ma9517308 +351,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.065916504,0.0882,8.05,28.75,positive,doi.org/10.1016/S0378-3812(97)00302-6 +352,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.1899,,0.1,23.394,positive,doi.org/10.1063/1.479914 +44,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.0057,,0.1,48.629,positive,doi.org/10.1063/1.472437 +97,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0217,,0.1,116.75,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +21,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.1543,0.1543,2.03,66.7,positive,doi.org/10.1006/jcht.1999.0607 +2,46,polystyrene,9003-53-6,*C(C*)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,233000,1.060054595,0.111193657,0.1304,0.1,269.5,negative,doi.org/10.1016/0032-3861(95)91454-F +180,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.051604672,0.0706,7.324,202.42,negative,doi.org/10.1016/j.supflu.2005.08.004 +373,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.283660426,0.348,0.1,19,positive,doi.org/10.1002/macp.1965.020880115 +58,11,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,30740,1.16,0.009099181,0.01,0.1,33.3,negative,doi.org/10.1021/ma050261z +374,70,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.058201058,0.008258803,0.0111,0.1,26.07,positive,doi.org/10.1021/ma60032a020 +353,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.068890296,0.09208,0.1,23.478,positive,doi.org/10.1002/macp.1994.021950233 +181,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.032797521,0.0452,9.445,221.82,negative,doi.org/10.1016/j.supflu.2005.08.004 +59,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.61141016,0.6338,0.1,29.35,negative,doi.org/10.1016/S0022-2860(00)00559-7 +375,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0074,,0.1,29.97,positive,doi.org/10.1103/PhysRevA.18.2683 +376,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1344,,0.1,23.198,positive,doi.org/10.1063/1.430349 +13,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.151508193,0.181,1.14,6.47,positive,doi.org/10.1021/ma00107a011 +12,6,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,16370,1.109830508,0.086668469,0.125,0.1,170.6,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +129,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.193939394,0.24,0.688,-0.905,positive,doi.org/10.1021/ma9517308 +58,53,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,16600,1.050632911,0.141900377,0.18,15.86,6.85,positive,doi.org/10.1039/B109405J +13,4,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,31120,1.019993445,0.028570876,0.0424,0.1,165.8,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +30,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],13200000,1.130136986,0.0176,,0.1,36.73,positive,doi.org/10.1039/B301190A +182,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.001720302,0.0024,8.223,221.79,negative,doi.org/10.1016/j.supflu.2005.08.004 +183,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.005599565,0.0078,5.899,197.04,negative,doi.org/10.1016/j.supflu.2005.08.004 +184,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.031034654,0.0428,4.3,164,negative,doi.org/10.1021/ie034302w +377,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.176384014,0.224,0.1,22.75,positive,See 1986KRU in ISBN: 9781420067989 +53,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.108699719,0.1021,4.48,-4.17,positive,doi.org/10.1006/jcht.1999.0607 +65,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.096178884,0.1253,3.75,7.59,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +185,9,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,15500,1.076388889,0.072508469,0.0984,4.7,200.07,negative,doi.org/10.1016/j.fluid.2003.07.004 +41,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.169547249,0.1999,3.097,28.092,positive,doi.org/10.1021/ma9517308 +23,86,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,171900,1.029958059,0.010975765,0.0154,0.1,170.8,negative,doi.org/10.1002/pen.760330806 +45,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.1831,,0.1,20.375,positive,doi.org/10.1063/1.472437 +378,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.006,,0.1,29.36,positive,doi.org/10.1039/B301190A +379,73,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,41000,5.125,0.067271065,0.0886,0.1,25.4,positive,doi.org/10.1002/pi.4980080407 +186,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.048847856,0.0669,4.684,182.4,negative,doi.org/10.1016/j.supflu.2005.08.004 +354,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.033831286,0.0458,10.249,54.26,positive,doi.org/10.1016/S0378-3812(97)00157-X +113,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.134,0.134,5.42,6.15,positive,doi.org/10.1006/jcht.1999.0607 +13,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,100000,1.060445387,0.024887625,0.03,0.1,-22.6,positive,doi.org/10.1021/ma00015a024 +59,13,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,11700,1.030837004,0.166842438,0.21,1.07,1.01,positive,doi.org/10.1021/ma00107a011 +27,57,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],7800,1.181818182,0.215902108,0.249,0.1,12.71,positive,doi.org/10.1063/1.1143329 +24,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.126636377,0.14,3.12,70.05,positive,doi.org/10.1021/ma00107a011 +27,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.024234764,0.035,15.86,170,negative,doi.org/10.1021/je0103162 +18,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.086048994,0.0807,4.34,37.62,positive,doi.org/10.1006/jcht.1999.0607 +114,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2242,0.2242,1.61,6.1,positive,doi.org/10.1006/jcht.1999.0607 +355,39,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,670000,1.098360656,0.051347472,0.06907,0.1,219.338,negative,doi.org/10.1021/ma60032a020 +380,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0006,,0.1,24.37,positive,doi.org/10.1103/PhysRevE.55.3159 +381,82,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0688,,0.1,25.4,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +356,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,4.58,55.11,positive,doi.org/10.1016/S0378-3812(97)00157-X +382,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.016114982,0.0216,0.1,26.62,positive,See 1986KRU in ISBN: 9781420067989 +14,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.1307942,0.157,0.71,4.64,positive,doi.org/10.1021/ma00107a011 +31,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],25000,1.059322034,0.183,,0.1,10.14,positive,doi.org/10.1039/B301190A +357,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.070164545,0.09374,80,20.576,positive,doi.org/10.1002/macp.1994.021950233 +358,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.05402428,0.0726,3.05,28.89,positive,doi.org/10.1016/S0378-3812(97)00302-6 +359,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.070164545,0.09374,10,21.903,positive,doi.org/10.1002/macp.1994.021950233 +60,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.114095631,0.146,1.59,98.53,negative,doi.org/10.1021/ma00107a011 +130,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.22839651,0.2798,1.881,147.784,negative,doi.org/10.1021/ma9517308 +360,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.4063,,0.1,16.47,positive,doi.org/10.1063/1.446753 +28,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.175485948,0.204,1.38,65.38,positive,doi.org/10.1021/ma00107a011 +22,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.0738,0.0738,0.37,67.7,positive,doi.org/10.1006/jcht.1999.0607 +115,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.1119,0.1119,1.91,49.59,positive,doi.org/10.1006/jcht.1999.0607 +131,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.070072993,0.09,3.43,172.617,negative,doi.org/10.1021/ma9517308 +361,71,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,90000,1.039981511,0.098607812,0.1304,0.1,46.75,positive,doi.org/10.1016/j.eurpolymj.2003.09.027 +187,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.003514777,0.0049,5.2,190.03,negative,doi.org/10.1016/j.fluid.2003.07.004 +362,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.048267639,0.065,3.705,241.44,negative,doi.org/10.1016/S0378-3812(97)00157-X +363,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.074826302,0.0998,67.27,19.66,positive,doi.org/10.1063/1.464440 +364,70,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,400000,1.058201058,0.011024209,0.01505,0.1,221.906,negative,doi.org/10.1021/ma60032a020 +383,82,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0194,,0.1,26.2,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +98,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.019,,0.1,117.6,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +188,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.114958864,0.1535,5.4,199.86,negative,doi.org/10.1016/j.fluid.2003.07.004 +384,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,25000,1.059322034,0.034,,0.1,5.17,positive,doi.org/10.1039/B301190A +365,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.206896594,0.2634,11.05,29.55,positive,doi.org/10.1016/S0378-3812(97)00302-6 +366,81,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,719000,1.060471976,0.0269,,0.1,61.616,positive,doi.org/10.1063/1.439127 +32,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],25000,1.059322034,0.13,,0.1,10.34,positive,doi.org/10.1039/B301190A +66,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.126382966,0.163,0.51,48.96,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +116,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1454,0.1454,0.31,43.24,positive,doi.org/10.1006/jcht.1999.0607 +60,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.577736749,0.6008,0.1,28.07,negative,doi.org/10.1016/S0022-2860(00)00559-7 +99,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0376,,0.1,136.35,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +100,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.349,,0.1,139.3,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +28,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.013782542,0.02,15.79,170,negative,doi.org/10.1021/je0103162 +67,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.126382966,0.163,2.98,37.9,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +54,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.139704443,0.1315,3.56,14.55,positive,doi.org/10.1006/jcht.1999.0607 +68,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.053184277,0.0703,2.11,27.48,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +189,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.025687508,0.0355,3.8,207,negative,doi.org/10.1021/ie034302w +190,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.031034654,0.0428,10.7,209,negative,doi.org/10.1021/ie034302w +132,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.202445508,0.2499,1.001,146.564,negative,doi.org/10.1021/ma9517308 +367,87,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,109000,1.058252427,0.1639,,0.1,48.262,positive,doi.org/10.1063/1.439127 +368,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.097275917,0.1287,28.24,20.05,positive,doi.org/10.1063/1.464440 +385,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0009,,0.1,23.5,positive,doi.org/10.1103/PhysRevA.18.2683 +133,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.199003566,0.2459,3.452,147.136,negative,doi.org/10.1021/ma9517308 +42,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.117493871,0.1401,2.74,28.596,positive,doi.org/10.1021/ma9517308 +25,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.193308488,0.212,3.22,96.81,negative,doi.org/10.1021/ma00107a011 +191,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.114958864,0.1535,4.1,189.9,negative,doi.org/10.1016/j.fluid.2003.07.004 +192,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.053694841,0.0734,9.543,222.03,negative,doi.org/10.1016/j.supflu.2005.08.004 +369,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,16.77,20.75,positive,doi.org/10.1063/1.464440 +134,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.126732673,0.16,2.903,-3.729,positive,doi.org/10.1021/ma9517308 +26,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.108305043,0.12,2.79,69.9,positive,doi.org/10.1021/ma00107a011 +193,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.043722494,0.06,9.6,201.5,negative,doi.org/10.1021/ie034302w +386,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0177,,0.1,27.38,positive,doi.org/10.1103/PhysRevE.55.3159 +370,39,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,670000,1.098360656,0.026945209,0.03657,0.1,61.239,positive,doi.org/10.1021/ma60032a020 +371,102,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.151967736,0.1972,72.37,11.33,positive,doi.org/10.1063/1.464440 +61,8,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,258000,2.15,0.003546712,0.0039,14.85,34.95,negative,doi.org/10.1021/ma011533a +29,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.041879016,0.06,6.62,130,negative,doi.org/10.1021/je0103162 +61,45,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,24700,1.037815126,0.013620475,0.018,70,-22.15,positive,doi.org/10.1039/B109405J +29,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.09653999,0.114,1.72,61.51,positive,doi.org/10.1021/ma00107a011 +194,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.031034654,0.0428,8.3,189,negative,doi.org/10.1021/ie034302w +43,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.143286669,0.1699,3.627,28.78,positive,doi.org/10.1021/ma9517308 +387,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.085503847,0.11192,0.1,24.7,positive,See 1984GIL in ISBN: 9781420067989 +388,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1532,,0.1,22.695,positive,doi.org/10.1063/1.430349 +13,5,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,68000,1.03030303,0.112069379,0.1329,0.1,73.44,positive,doi.org/10.1021/je0504865 +62,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.013563827,0.0149,0.1,30.48,negative,doi.org/10.1016/S0022-2860(00)00559-7 +389,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.043508558,0.05777,0.1,26.53,positive,See 1984GIL in ISBN: 9781420067989 +390,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.058201058,0.035982076,0.0479,0.1,223.98,negative,doi.org/10.1021/ma60032a020 +117,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.025,0.025,2.23,46,positive,doi.org/10.1006/jcht.1999.0607 +27,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.145049278,0.16,3.18,90.15,negative,doi.org/10.1021/ma00107a011 +63,2,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,144000,2.057142857,0.027987201,0.0307,42.6,39.95,negative,doi.org/10.1021/ma011533a +195,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.014915089,0.0207,9.4,217,negative,doi.org/10.1021/ie034302w +372,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,8.418,55.15,positive,doi.org/10.1016/S0378-3812(97)00157-X +118,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.3649,0.3649,3.67,16,positive,doi.org/10.1006/jcht.1999.0607 +135,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.176799578,0.2199,4.741,63.838,positive,doi.org/10.1021/ma9517308 +44,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,1.36,163.69,negative,doi.org/10.1021/ma9517308 +196,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.032797521,0.0452,8.345,212.17,negative,doi.org/10.1016/j.supflu.2005.08.004 +391,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0543,,0.1,23.828,positive,doi.org/10.1063/1.430349 +23,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.0738,0.0738,2.26,66.91,positive,doi.org/10.1006/jcht.1999.0607 +197,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.067892668,0.0923,6.9,200.21,negative,doi.org/10.1016/j.supflu.2005.08.004 +392,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.279189005,0.343,0.1,19,positive,doi.org/10.1002/macp.1965.020880115 +373,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.058586078,0.0786,21.97,19.88,positive,doi.org/10.1063/1.464440 +24,9,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,354000,1.020172911,0.045363939,0.06277,0.1,10.1,positive,doi.org/10.1627/jpi1958.33.117 +19,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.207685345,0.1964,1.72,36.1,positive,doi.org/10.1006/jcht.1999.0607 +3,32,polystyrene,9003-53-6,*C(C*)c1ccccc1,diisodecyl phthalate,26761-40-0,CC(C)CCCCCCCOC(=O)c1ccccc1C(=O)OCCCCCCCC(C)C,235000,2.100089366,0.139800492,0.15,0.1,56.35,positive,See 2001HE1 in ISBN: 9036516463 +55,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.148118448,0.1395,3.34,-3.77,positive,doi.org/10.1006/jcht.1999.0607 +374,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.022,,0.1,16.47,positive,doi.org/10.1063/1.446753 +393,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0923,,0.1,23.793,positive,doi.org/10.1063/1.430349 +394,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1701,,0.1,21.856,positive,doi.org/10.1063/1.430349 +30,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.111263273,0.131,2.2,61.36,positive,doi.org/10.1021/ma00107a011 +45,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.221355036,0.2581,3.291,25.255,positive,doi.org/10.1021/ma9517308 +395,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1598,,0.1,22.405,positive,doi.org/10.1063/1.430349 +375,61,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,181000,1.058479532,0.0435,,0.1,53.722,positive,doi.org/10.1063/1.439127 +396,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0164,,0.1,30.4,positive,doi.org/10.1103/PhysRevA.18.2683 +7,41,polystyrene,9003-53-6,*C(C*)c1ccccc1,1-dodecanol,112-53-8,CCCCCCCCCCCCO,235000,2.100089366,0.326630671,0.38,0.1,163.7,positive,"See 2001HE1 ISBN: 9036516463, doi.org/10.1016/S0040-6031(01)00587-1" +397,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0015,,0.1,27.49,positive,doi.org/10.1103/PhysRevA.18.2683 +398,70,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.058201058,0.018592917,0.0249,0.1,221.92,negative,doi.org/10.1021/ma60032a020 +376,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.065916504,0.0882,3.05,29.78,positive,doi.org/10.1016/S0378-3812(97)00302-6 +399,35,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,335500,1.690176322,0.083129926,0.1089,0.1,24.5,positive,See 1986KRU in ISBN: 9781420067989 +6,77,polystyrene,9003-53-6,*C(C*)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,1971000,1.260230179,0.016657216,0.0199,0.1,234.3,negative,doi.org/10.1016/0032-3861(95)91454-F +400,26,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.1287,,0.1,24.7,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +401,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0979,,0.1,23.757,positive,doi.org/10.1063/1.430349 +402,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.155,,0.1,20.82,positive,doi.org/10.1039/B301190A +119,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0355,0.0355,0.6,49.24,positive,doi.org/10.1006/jcht.1999.0607 +46,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.1391,,0.1,43.379,positive,doi.org/10.1063/1.472437 +403,42,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0319,,0.1,26.58,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +377,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,8.472,54.58,positive,doi.org/10.1016/S0378-3812(97)00157-X +404,35,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,335500,1.690176322,0.063701039,0.084,0.1,24.84,positive,See 1986KRU in ISBN: 9781420067989 +7,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,methyl acetate,79-20-9,COC(=O)C,100000,1.060445387,0.034589453,0.039,0.1,32.3,positive,doi.org/10.1021/ma00015a024 +136,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.176884422,0.22,3.165,107.451,positive,doi.org/10.1021/ma9517308 +378,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.181960329,0.23366,40,20.762,positive,doi.org/10.1002/macp.1994.021950233 +11,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.016339869,0.02,0.1,-31.4,positive,doi.org/10.1016/0032-3861(95)91454-F +9,9,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,227000,1.270285395,0.0558,,0.1,23.5,positive,See 1991LEE in ISBN: 9781420067989 +33,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],123000,1.060344828,0.014,,0.1,22.81,positive,doi.org/10.1039/B301190A +405,119,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0799,,0.1,23.78,positive,"doi.org/10.1016/0032-3861(73)90005-0, doi.org/10.1002/pol.1973.180111121" +406,84,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0734,,0.1,26.37,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +1,1,poly(vinyl acetate),9003-20-7,*CC(*)OC(C)=O,cyclopentane,287-92-3,C1CCCC1,124800,2.368121442,0.03842517,0.06,25.4,258.3,positive,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +5,1,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,20000,2.5,0.693756194,0.7,0.1,29,negative,doi.org/10.1021/jp0574854 +47,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.0402,,0.1,32.661,positive,doi.org/10.1063/1.472437 +14,5,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,600000,1.099908341,0.008266828,0.01,0.1,0.4,positive,doi.org/10.1021/ma00015a024 +379,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.072747343,0.0971,1.6,56.19,positive,doi.org/10.1016/S0378-3812(97)00302-6 +380,33,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,2700000,1.099796334,0.034594398,0.04682,0.1,66.865,positive,doi.org/10.1021/ma60032a020 +381,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,31.845,47.91,positive,doi.org/10.1016/S0378-3812(97)00157-X +120,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1562,0.1562,5.45,6.17,positive,doi.org/10.1006/jcht.1999.0607 +407,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.023787808,0.0318,0.1,26.99,positive,See 1986KRU in ISBN: 9781420067989 +64,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.032596819,0.03574,0.1,33.31,negative,doi.org/10.1016/S0378-3812(01)00469-1 +3,6,polyethylene,9002-88-4,*CC*,1-octene,111-66-0,CCCCCCC=C,105000,2.441860465,0.034454976,0.0439,2.19,251.25,negative,See 2001TOR in ISBN: 9781420067989 +408,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.182161582,0.2309,0.1,18.5,positive,See 1986KRU in ISBN: 9781420067989 +382,102,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.151967736,0.1972,0.1,12.57,positive,doi.org/10.1063/1.464440 +62,100,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,7800,1.18993135,0.069339333,0.09,0.1,-23.4,positive,doi.org/10.1063/1.1143329 +383,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.05402428,0.0726,9.05,27.73,positive,doi.org/10.1016/S0378-3812(97)00302-6 +384,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,9.1,50.98,positive,doi.org/10.1016/S0378-3812(97)00157-X +385,83,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,46400,1.059360731,0.0273,,0.1,36.625,positive,doi.org/10.1063/1.439127 +137,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.143200418,0.1799,3.434,107.824,positive,doi.org/10.1021/ma9517308 +198,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.01259787,0.0175,8.1,188,negative,doi.org/10.1021/ie034302w +386,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,37.6,47.07,positive,doi.org/10.1016/S0378-3812(97)00157-X +121,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0812,0.0812,0.29,50.29,positive,doi.org/10.1006/jcht.1999.0607 +31,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.125199984,0.147,1.25,67.1,positive,doi.org/10.1021/ma00107a011 +32,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.085339266,0.101,0.56,64.77,positive,doi.org/10.1021/ma00107a011 +3,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,600000,1.099908341,0.076050577,0.0898,0.1,266,negative,doi.org/10.1016/0032-3861(95)91454-F +409,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.019,,0.1,25.73,positive,doi.org/10.1039/B301190A +69,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.134578869,0.1731,1.33,40.98,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +199,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.080034768,0.1083,1.9,170.27,negative,doi.org/10.1016/j.fluid.2003.07.004 +48,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.2415,,0.1,38.726,positive,doi.org/10.1063/1.472437 +14,7,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,992000,1.05982906,0.001235545,0.0015,0.1,75.21,positive,doi.org/10.1021/je0504865 +101,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.471584892,0.501,0.1,146.3,negative,doi.org/10.1021/ma00015a024 +387,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.1079,,0.1,22.55,positive,doi.org/10.1063/1.439127 +15,3,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,280000,1.060606061,0.001153155,0.0014,0.1,74.24,positive,doi.org/10.1021/je0504865 +102,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.3907,,0.1,143.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +410,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0472,,0.1,26.101,positive,doi.org/10.1103/PhysRevE.55.3159 +388,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,0.1,35.72,positive,doi.org/10.1063/1.464440 +411,20,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0615,,0.1,223.99,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +389,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,2.7,53.4,positive,doi.org/10.1016/S0378-3812(97)00157-X +390,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.117960635,0.15492,20,21.703,positive,doi.org/10.1002/macp.1994.021950233 +49,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.0595,,0.1,43.535,positive,doi.org/10.1063/1.472437 +56,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.148118448,0.1395,1.98,-3.66,positive,doi.org/10.1006/jcht.1999.0607 +46,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.169547249,0.1999,0.991,160.153,negative,doi.org/10.1021/ma9517308 +391,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.240492932,0.30267,40,20.275,positive,doi.org/10.1002/macp.1994.021950233 +412,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.045750362,0.0607,0.1,19.91,positive,See 1986KRU in ISBN: 9781420067989 +122,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.0337,0.0337,0.19,41.79,positive,doi.org/10.1006/jcht.1999.0607 +413,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.05,,0.1,29.43,positive,doi.org/10.1039/B301190A +47,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.091732599,0.11,0.945,31.398,positive,doi.org/10.1021/ma9517308 +28,5,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],10500,1.019417476,0.199847839,0.219,2.61,-6.46,positive,doi.org/10.1021/ma00107a011 +392,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,34.684,46.33,positive,doi.org/10.1016/S0378-3812(97)00157-X +414,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0269,,0.1,23.44,positive,doi.org/10.1063/1.430349 +70,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.075072918,0.0985,2.7,58.94,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +393,61,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,181000,1.058479532,0.0897,,0.1,53.812,positive,doi.org/10.1063/1.439127 +415,84,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0092,,0.1,26.06,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +48,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,3.846,181.609,negative,doi.org/10.1021/ma9517308 +63,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.212733185,0.264,0.2,11.67,positive,doi.org/10.1021/ma00107a011 +200,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.061488104,0.0838,6.9,187,negative,doi.org/10.1021/ie034302w +65,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.04557036,0.0499,0.1,30.82,negative,doi.org/10.1016/S0022-2860(00)00559-7 +416,120,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,286000,1.43,0.072252515,0.095,0.1,25.55,positive,doi.org/10.1002/polc.5070390106 +417,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.043523848,0.05779,0.1,24.96,positive,See 1984GIL in ISBN: 9781420067989 +201,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.015930203,0.0221,5.11,190.85,negative,See 2001TOR in ISBN: 9781420067989 +394,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.058586078,0.0786,25.2,19.67,positive,doi.org/10.1063/1.464440 +395,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,56.88,19.6,positive,doi.org/10.1063/1.464440 +202,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.078282347,0.106,7,201,negative,doi.org/10.1021/ie034302w +203,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.237537236,0.3031,5.642,207.525,negative,doi.org/10.1016/j.supflu.2005.08.004 +418,30,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,600000,1.099908341,0.045214464,0.06,0.1,28.28,positive,doi.org/10.1007/BF01525017 +396,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.115562594,0.1519,7.05,30.38,positive,doi.org/10.1016/S0378-3812(97)00302-6 +397,107,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20200,1.057591623,0.2836,,0.1,24.154,positive,doi.org/10.1063/1.439127 +33,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.111263273,0.131,1.68,99.64,negative,doi.org/10.1021/ma00107a011 +14,9,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,7410,1.170616114,0.049848122,0.0732,0.1,176,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +204,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.004305154,0.006,11.1,214,negative,doi.org/10.1021/ie034302w +419,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.09019211,0.11787,0.1,20.14,positive,See 1986KRU in ISBN: 9781420067989 +398,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.192338678,0.2461,9.12,21.08,positive,doi.org/10.1063/1.464440 +123,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.0625,0.0625,1.07,3.43,positive,doi.org/10.1006/jcht.1999.0607 +103,7,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8420,1.24925816,0.469791078,0.4992,0.1,148.1,negative,doi.org/10.1016/0378-3812(93)85105-U +104,11,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,3350,1.595238095,0.371119637,0.399,0.1,228.5,positive,doi.org/10.1021/ma00015a024 +50,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.0531,,0.1,33.629,positive,doi.org/10.1063/1.472437 +49,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.169547249,0.1999,3.876,181.214,negative,doi.org/10.1021/ma9517308 +14,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,61400,1.04957265,0.057790721,0.07,0.1,215.2,negative,doi.org/10.1016/0032-3861(95)91454-F +399,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,4.11,57.35,positive,doi.org/10.1016/S0378-3812(97)00157-X +15,5,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,600000,1.099908341,0.024887625,0.03,0.1,118.4,negative,doi.org/10.1021/ma00015a024 +71,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.134578869,0.1731,2.83,35.84,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +51,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.1777,,0.1,42.447,positive,doi.org/10.1063/1.472437 +205,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.222104622,0.285,10.1,244,negative,doi.org/10.1021/ie034302w +400,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,16.012,49.97,positive,doi.org/10.1016/S0378-3812(97)00157-X +34,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.101,,0.1,29.46,positive,doi.org/10.1039/B301190A +420,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.281870337,0.346,0.1,19,positive,doi.org/10.1002/macp.1965.020880115 +421,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.029516206,0.03938,0.1,18.99,positive,See 1984GIL in ISBN: 9781420067989 +4,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-hexane,110-54-3,CCCCCC,1240,1.068965517,0.129781892,0.192,0.1,1.55,positive,doi.org/10.1016/S0378-3812(01)00548-9 +15,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.1307942,0.157,1.69,2.76,positive,doi.org/10.1021/ma00107a011 +124,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0457,0.0457,0.76,49.59,positive,doi.org/10.1006/jcht.1999.0607 +125,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1651,0.1651,5.18,40.98,positive,doi.org/10.1006/jcht.1999.0607 +105,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0198,,0.1,141.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +106,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0616,,0.1,133.15,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +206,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.061488104,0.0838,4.6,171,negative,doi.org/10.1021/ie034302w +207,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.187363134,0.2435,2.374,177.404,negative,doi.org/10.1016/j.supflu.2005.08.004 +401,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,97200,1.05997819,0.078645843,0.10475,0.1,232.66,negative,doi.org/10.1021/ma60032a020 +138,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.070072993,0.09,4.261,63.105,positive,doi.org/10.1021/ma9517308 +422,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.1366,,0.1,27.49,positive,doi.org/10.1103/PhysRevA.18.2683 +208,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.112846412,0.1508,5.55,196.23,negative,See 2000BEH in ISBN: 9781420067989 +107,3,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,4490,1.130982368,0.336807003,0.3636,0.1,254,positive,doi.org/10.1016/0378-3812(93)85105-U +423,36,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,90000,1.040462428,0.120753644,0.1562,0.1,19.32,positive,doi.org/10.1016/S0378-3812(99)00128-4 +402,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.192338678,0.2461,68.65,19.3,positive,doi.org/10.1063/1.464440 +403,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.097275917,0.1287,6.86,22.02,positive,doi.org/10.1063/1.464440 +5,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-hexane,110-54-3,CCCCCC,1240,1.068965517,0.118208206,0.176,0.1,1.75,positive,doi.org/10.1016/S0378-3812(01)00548-9 +34,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.175485948,0.204,0.49,76.52,positive,doi.org/10.1021/ma00107a011 +424,70,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.058201058,0.051888907,0.0687,0.1,221.52,negative,doi.org/10.1021/ma60032a020 +25,54,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,43000,1.009389671,0.194078829,0.2534,0.1,-5.9,positive,doi.org/10.1627/jpi1958.33.117 +404,87,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,109000,1.058252427,0.0022,,0.1,39.89,positive,doi.org/10.1063/1.439127 +209,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.187363134,0.2435,4.499,192.385,negative,doi.org/10.1016/j.supflu.2005.08.004 +72,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.13205856,0.17,1.66,104.95,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +64,53,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,16600,1.050632911,0.141900377,0.18,76.7,-15.75,positive,doi.org/10.1039/B109405J +16,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.109425436,0.132,1.31,2.48,positive,doi.org/10.1021/ma00107a011 +35,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],13200000,1.130136986,0.0083,,0.1,36.71,positive,doi.org/10.1039/B301190A +126,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1393,0.1393,4.83,23.46,positive,doi.org/10.1006/jcht.1999.0607 +35,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.197860168,0.229,1.54,62.07,positive,doi.org/10.1021/ma00107a011 +73,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,4.91,29.93,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +425,26,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0319,,0.1,27.6,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +26,50,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,791000,1.010217114,0.099080439,0.1342,0.1,163.7,negative,doi.org/10.1002/pen.760330806 +20,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.207685345,0.1964,3.58,35.61,positive,doi.org/10.1006/jcht.1999.0607 +139,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.159916002,0.1999,3.909,147.524,negative,doi.org/10.1021/ma9517308 +405,107,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20200,1.057591623,0.2226,,0.1,25.537,positive,doi.org/10.1063/1.439127 +426,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.096622152,0.126,0.1,24.24,positive,See 1984GIL in ISBN: 9781420067989 +22,4,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20100,1.020304569,0.110144297,0.148,0.1,32.651,positive,doi.org/10.1021/je990141k +406,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.036526526,0.0494,2.05,27.86,positive,doi.org/10.1016/S0378-3812(97)00302-6 +23,7,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,75600,1.05,0.017436957,0.0243,0.1,52.75,positive,doi.org/10.1021/je990141k +407,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.181960329,0.23366,20,21.707,positive,doi.org/10.1002/macp.1994.021950233 +408,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.097275917,0.1287,21.57,20.44,positive,doi.org/10.1063/1.464440 +21,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.141282805,0.133,0.63,38.5,positive,doi.org/10.1006/jcht.1999.0607 +409,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.036526526,0.0494,1.05,28.15,positive,doi.org/10.1016/S0378-3812(97)00302-6 +57,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.249063489,0.2362,5.26,-4.57,positive,doi.org/10.1006/jcht.1999.0607 +108,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.018710324,0.021,0.1,123.2,negative,doi.org/10.1021/ma00015a024 +427,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.014,,0.1,29.68,positive,doi.org/10.1039/B301190A +15,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,61400,1.04957265,0.100007611,0.12,0.1,211.5,negative,doi.org/10.1016/0032-3861(95)91454-F +428,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.010798029,0.0145,0.1,24,positive,doi.org/10.1002/macp.1965.020880115 +210,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.003514777,0.0049,3.017,177.21,negative,doi.org/10.1016/j.supflu.2005.08.004 +429,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.045689106,0.06062,0.1,20.65,positive,See 1986KRU in ISBN: 9781420067989 +127,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2634,0.2634,0.33,5.38,positive,doi.org/10.1006/jcht.1999.0607 +58,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.08954642,0.084,4.66,14.15,positive,doi.org/10.1006/jcht.1999.0607 +430,42,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0806,,0.1,25.09,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +431,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,37000,1.06017192,0.063468512,0.0837,0.1,12.37,positive,doi.org/10.1021/ma60032a020 +432,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.037580202,0.05,0.1,27.7,positive,doi.org/10.1002/macp.1965.020880115 +29,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.237413105,0.259,1.69,67.67,positive,doi.org/10.1021/ma00107a011 +211,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.045517759,0.06242,5.494,187.32,negative,doi.org/10.1016/j.supflu.2005.08.004 +27,103,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,354000,1.020172911,0.126727716,0.1698,0.1,167.1,negative,doi.org/10.1002/pen.760330806 +410,98,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.060790274,0.0529,,0.1,34.78,positive,doi.org/10.1063/1.439127 +433,93,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0452,,0.1,223.74,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +434,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0296,,0.1,27.09,positive,doi.org/10.1103/PhysRevE.55.3159 +435,33,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2700000,1.099796334,0.027412662,0.0366,0.1,31.09,positive,doi.org/10.1021/ma60032a020 +109,1,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,11615,1.110739218,0.2246,,0.1,121.1,negative,See 2001FIS in ISBN: 9781420067989 +212,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.025687508,0.0355,3.1,200.5,negative,doi.org/10.1021/ie034302w +411,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.206896594,0.2634,3.05,31.29,positive,doi.org/10.1016/S0378-3812(97)00302-6 +412,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.192338678,0.2461,73.55,19.42,positive,doi.org/10.1063/1.464440 +74,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.13205856,0.17,0.69,44.84,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +213,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.031034654,0.0428,11.7,219,negative,doi.org/10.1021/ie034302w +413,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.234042447,0.2952,10.59,20.05,positive,doi.org/10.1063/1.464440 +36,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.125199984,0.147,2.48,59.13,positive,doi.org/10.1021/ma00107a011 +436,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.038197091,0.05081,0.1,22.99,positive,See 1984GIL in ISBN: 9781420067989 +37,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.139214446,0.163,0.74,72.11,positive,doi.org/10.1021/ma00107a011 +65,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.085973967,0.111,0.99,98.15,negative,doi.org/10.1021/ma00107a011 +140,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,0.352,136.985,negative,doi.org/10.1021/ma9517308 +66,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.022797308,0.02502,0.1,33.5,negative,doi.org/10.1016/S0378-3812(01)00469-1 +110,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0295,,0.1,115.8,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +22,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.172,,10,11.15,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +214,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.11613391,0.155,5.7,248,negative,doi.org/10.1021/ie034302w +414,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,7.98,53.52,positive,doi.org/10.1016/S0378-3812(97)00157-X +128,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.1212,0.1212,3.45,49.08,positive,doi.org/10.1006/jcht.1999.0607 +75,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,4.41,117.97,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +76,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.075072918,0.0985,4.22,50.46,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +7,2,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,76500,1.100719424,0.04112483,0.05,0.1,240.2,negative,doi.org/10.1016/0032-3861(95)91454-F +437,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.063375511,0.08358,0.1,20.54,positive,See 1986KRU in ISBN: 9781420067989 +77,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.109403402,0.1419,3.12,10.02,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +438,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0365,,0.1,23.696,positive,doi.org/10.1063/1.430349 +111,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.2751,,0.1,133.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +50,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.169547249,0.1999,1.469,163.496,negative,doi.org/10.1021/ma9517308 +59,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.105951487,0.0995,4.61,14.25,positive,doi.org/10.1006/jcht.1999.0607 +215,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.027077076,0.0374,2.2,150,negative,doi.org/10.1021/ie034302w +216,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.041056487,0.0564,7.5,219,negative,doi.org/10.1021/ie034302w +141,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.22839651,0.2798,0.644,71.672,positive,doi.org/10.1021/ma9517308 +439,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.08,,0.1,21.44,positive,doi.org/10.1039/B301190A +4,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-pentane,109-66-0,CCCCC,1240,1.068965517,0.082278481,0.13,0.1,9.95,positive,doi.org/10.1016/S0378-3812(01)00548-9 +415,70,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,400000,1.058201058,0.042324293,0.05712,0.1,59.533,positive,doi.org/10.1021/ma60032a020 +416,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.0741,,0.1,22.436,positive,doi.org/10.1063/1.446753 +417,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,43.532,45.77,positive,doi.org/10.1016/S0378-3812(97)00157-X +23,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.132854881,0.177,2.27,29.53,positive,doi.org/10.1021/ma00107a011 +142,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.228571429,0.28,1.649,-1.171,positive,doi.org/10.1021/ma9517308 +217,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.067892668,0.0923,8.585,214.38,negative,doi.org/10.1016/j.supflu.2005.08.004 +67,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.091928292,0.1002,0.1,30.06,negative,doi.org/10.1016/S0022-2860(00)00559-7 +60,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.08954642,0.084,2.28,14.56,positive,doi.org/10.1006/jcht.1999.0607 +143,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.102211302,0.13,2.869,-5.527,positive,doi.org/10.1021/ma9517308 +144,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.084136448,0.1076,4.353,64.1,positive,doi.org/10.1021/ma9517308 +10,12,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,257000,1.992248062,0.083,,0.1,22.2,positive,See 1991LEE in ISBN: 9781420067989 +218,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.001720302,0.0024,7.643,216.92,negative,doi.org/10.1016/j.supflu.2005.08.004 +16,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,233000,1.059090909,0.163063457,0.191,0.1,136.1,negative,doi.org/10.1021/ma00015a024 +440,84,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0185,,0.1,221.61,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +30,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.197978407,0.217,3.18,96.87,negative,doi.org/10.1021/ma00107a011 +418,98,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.060790274,0.0287,,0.1,32.544,positive,doi.org/10.1063/1.439127 +52,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.2047,,0.1,41.143,positive,doi.org/10.1063/1.472437 +441,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.058201058,0.073890732,0.0971,0.1,23.92,positive,doi.org/10.1021/ma60032a020 +53,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.1682,,0.1,42.744,positive,doi.org/10.1063/1.472437 +38,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.197860168,0.229,0.26,75.18,positive,doi.org/10.1021/ma00107a011 +112,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.37501454,0.403,0.1,282.5,positive,doi.org/10.1021/ma00015a024 +78,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.145931506,0.187,5.35,119.98,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +219,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.114880564,0.1534,1.363,162.655,negative,doi.org/10.1016/j.supflu.2005.08.004 +16,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.025407197,0.031,0.1,238.7,negative,doi.org/10.1016/0032-3861(95)91454-F +4,3,polyethylene,9002-88-4,*CC*,cyclopentene,142-29-0,C1CC=CC1,106000,5.273631841,0.050963522,0.06,6.31,225.6,negative,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +419,89,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37900,1.010666667,0.116594363,0.1532,0.1,37.38,positive,See 1996RON in ISBN: 9781420067989 +5,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-pentane,109-66-0,CCCCC,1240,1.068965517,0.0625,0.1,0.1,7.85,positive,doi.org/10.1016/S0378-3812(01)00548-9 +8,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,31200,1.2,0.100007611,0.12,0.1,259.7,negative,doi.org/10.1016/0032-3861(95)91454-F +17,5,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,600000,1.099908341,0.084846672,0.101,0.1,121,negative,doi.org/10.1021/ma00015a024 +420,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.048267639,0.065,3.98,243.89,negative,doi.org/10.1016/S0378-3812(97)00157-X +220,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.094370769,0.127,5.6,188,negative,doi.org/10.1021/ie034302w +145,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.084136448,0.1076,4.9,181.631,negative,doi.org/10.1021/ma9517308 +442,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1282,,0.1,23.322,positive,doi.org/10.1063/1.430349 +113,6,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,2530,1.171296296,0.351505591,0.3788,0.1,160.1,negative,doi.org/10.1016/0378-3812(93)85105-U +421,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,200000,1.058201058,0.102053114,0.13479,0.1,227.74,negative,doi.org/10.1021/ma60032a020 +79,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.042437227,0.0563,3.68,-3.99,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +17,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.143031397,0.17,0.1,227.5,negative,doi.org/10.1016/0032-3861(95)91454-F +31,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.126636377,0.14,3.59,63.89,positive,doi.org/10.1021/ma00107a011 +23,46,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,233000,1.060054595,0.127042306,0.1494,0.1,13.6,positive,doi.org/10.1016/0032-3861(95)91454-F +129,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0929,0.0929,1.76,49.48,positive,doi.org/10.1006/jcht.1999.0607 +66,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.082791819,0.107,0.62,10.04,positive,doi.org/10.1021/ma00107a011 +22,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.113770676,0.1069,4.72,37.75,positive,doi.org/10.1006/jcht.1999.0607 +422,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,59.286,43.03,positive,doi.org/10.1016/S0378-3812(97)00157-X +443,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.059057483,0.078,0.1,25.7,positive,See 1986KRU in ISBN: 9781420067989 +51,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.117493871,0.1401,4.969,190.367,negative,doi.org/10.1021/ma9517308 +130,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0535,0.0535,4.06,48.79,positive,doi.org/10.1006/jcht.1999.0607 +146,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,3.777,172.53,negative,doi.org/10.1021/ma9517308 +444,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0694,,0.1,26.23,positive,doi.org/10.1103/PhysRevE.55.3159 +114,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.1884,,0.1,115.6,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +147,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.22839651,0.2798,0.969,139.56,negative,doi.org/10.1021/ma9517308 +148,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.133912138,0.1687,2.275,130.601,negative,doi.org/10.1021/ma9517308 +131,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2048,0.2048,3.49,6.01,positive,doi.org/10.1006/jcht.1999.0607 +61,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.075015907,0.0703,0.38,14.6,positive,doi.org/10.1006/jcht.1999.0607 +149,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.176884422,0.22,3.736,99.868,positive,doi.org/10.1021/ma9517308 +4,2,poly(vinyl chloride),9002-86-2,*CC(*)Cl,phenetole,103-73-1,CCOc1ccccc1,37000,1.178343949,0.072234257,0.1,50,17,positive,doi.org/10.1002/macp.1985.021860409 +150,104,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,13500,1.058823529,0.181642512,0.2256,2.3,34.147,positive,doi.org/10.1021/ma9517308 +445,73,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,41000,5.125,0.041545029,0.0552,0.1,25.7,positive,doi.org/10.1002/pi.4980080407 +67,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.182841437,0.229,0.31,12.2,positive,doi.org/10.1021/ma00107a011 +423,95,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17300,1.061349693,0.3831,,0.1,16.48,positive,doi.org/10.1063/1.439127 +424,87,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,109000,1.058252427,0.0263,,0.1,48.262,positive,doi.org/10.1063/1.439127 +80,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.096178884,0.1253,2.91,8.6,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +425,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,77.28,20.06,positive,doi.org/10.1063/1.464440 +39,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.085339266,0.101,1.65,58.94,positive,doi.org/10.1021/ma00107a011 +426,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.074826302,0.0998,37.27,19.52,positive,doi.org/10.1063/1.464440 +132,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0861,0.0861,0.04,23.72,positive,doi.org/10.1006/jcht.1999.0607 +446,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.193191012,0.244,0.1,24,positive,doi.org/10.1002/macp.1965.020880115 +133,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1388,0.1388,4.32,23.6,positive,doi.org/10.1006/jcht.1999.0607 +427,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,9.25,52.94,positive,doi.org/10.1016/S0378-3812(97)00157-X +221,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.045517759,0.06242,1.894,162.57,negative,doi.org/10.1016/j.supflu.2005.08.004 +16,7,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,992000,1.05982906,0.008249344,0.01,0.1,76.23,positive,doi.org/10.1021/je0504865 +7,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,600000,1.099908341,0.072700017,0.0859,0.1,239.2,negative,doi.org/10.1016/0032-3861(95)91454-F +428,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.165808321,0.21412,10,22.804,positive,doi.org/10.1002/macp.1994.021950233 +151,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,2.854,163.77,negative,doi.org/10.1021/ma9517308 +81,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.126382966,0.163,2.26,107.01,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +13,4,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,31120,1.019993445,0.024125271,0.0388,0.1,150.9,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +429,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.090479565,0.12,8.85,53.01,positive,doi.org/10.1016/S0378-3812(97)00157-X +40,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],11500,1.069767442,0.189782755,0.22,0.1,10.08,positive,doi.org/10.1063/1.1143329 +222,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.067892668,0.0923,0.985,158.15,negative,doi.org/10.1016/j.supflu.2005.08.004 +223,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.114880564,0.1534,7.438,207.078,negative,doi.org/10.1016/j.supflu.2005.08.004 +224,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.147562055,0.19463,5.799,197.301,negative,doi.org/10.1016/j.supflu.2005.08.004 +11,12,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,257000,1.992248062,0.0487,,0.1,25,positive,See 1991LEE in ISBN: 9781420067989 +430,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.090479565,0.12,3.1,55.6,positive,doi.org/10.1016/S0378-3812(97)00157-X +447,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.122,,0.1,21.39,positive,doi.org/10.1039/B301190A +52,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.117493871,0.1401,0.607,158.365,negative,doi.org/10.1021/ma9517308 +15,6,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,16370,1.109830508,0.024954469,0.0371,0.1,170,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +82,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.13205856,0.17,0.89,43.87,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +448,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.077016188,0.1011,0.1,25.03,positive,See 1986KRU in ISBN: 9781420067989 +152,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.176799578,0.2199,0.476,86.122,positive,doi.org/10.1021/ma9517308 +54,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.1837,,0.1,47.288,positive,doi.org/10.1063/1.472437 +36,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.009,,0.1,28.9,positive,doi.org/10.1039/B301190A +431,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.097275917,0.1287,36.48,19.77,positive,doi.org/10.1063/1.464440 +11,5,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,600000,1.099908341,0.033688045,0.039,0.1,147.5,negative,doi.org/10.1021/ma00015a024 +432,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.014,,0.1,13.5,positive,doi.org/10.1063/1.446753 +225,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.045517759,0.06242,8.559,212.28,negative,doi.org/10.1016/j.supflu.2005.08.004 +53,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.221355036,0.2581,5.183,21.518,positive,doi.org/10.1021/ma9517308 +433,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.159149407,0.206,5.05,31.38,positive,doi.org/10.1016/S0378-3812(97)00302-6 +449,111,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,20400,1.0625,0.235161452,0.293,0.1,5.9,positive,doi.org/10.1021/ma00015a024 +450,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.024572425,0.03284,0.1,25.66,positive,See 1986KRU in ISBN: 9781420067989 +4,3,polyethylene,9002-88-4,*CC*,cyclopentane,287-92-3,C1CCCC1,106000,5.273631841,0.049147883,0.06,4.74,209.8,negative,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +1,1,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,ethanol,64-17-5,CCO,470000,1.690647482,0.056482364,0.075,19.8,40,positive,"See 1984SAN in ISBN: 9781420067989, doi.org/10.1002/apmc.1986.051390114" +434,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.058586078,0.0786,63.06,19.3,positive,doi.org/10.1063/1.464440 +41,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.175485948,0.204,2.23,59.98,positive,doi.org/10.1021/ma00107a011 +435,70,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,400000,1.058201058,0.052734515,0.0709,0.1,59.427,positive,doi.org/10.1021/ma60032a020 +451,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.245615577,0.305,0.1,21,positive,doi.org/10.1002/macp.1965.020880115 +436,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.036526526,0.0494,5.05,27.26,positive,doi.org/10.1016/S0378-3812(97)00302-6 +452,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.139722792,0.1796,0.1,23.5,positive,See 1984GIL in ISBN: 9781420067989 +437,107,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20200,1.057591623,0.116,,0.1,25.696,positive,doi.org/10.1063/1.439127 +453,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0092,,0.1,30.098,positive,doi.org/10.1103/PhysRevA.18.2683 +153,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.202445508,0.2499,1.822,154.999,negative,doi.org/10.1021/ma9517308 +454,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.139837006,0.17974,0.1,22.96,positive,See 1984GIL in ISBN: 9781420067989 +455,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0333,,0.1,23.613,positive,doi.org/10.1063/1.430349 +55,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.0189,,0.1,51.906,positive,doi.org/10.1063/1.472437 +154,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.202445508,0.2499,4.546,63.83,positive,doi.org/10.1021/ma9517308 +226,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.053694841,0.0734,5.913,192.12,negative,doi.org/10.1016/j.supflu.2005.08.004 +54,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.221355036,0.2581,2.169,27.703,positive,doi.org/10.1021/ma9517308 +68,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.038053348,0.0417,20,34.85,negative,doi.org/10.1021/ma011533a +456,33,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2700000,1.099796334,0.011770093,0.0158,0.1,215.94,negative,doi.org/10.1021/ma60032a020 +134,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1503,0.1503,0.63,24.3,positive,doi.org/10.1006/jcht.1999.0607 +17,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.180315051,0.214,1.83,3.55,positive,doi.org/10.1021/ma00107a011 +2,1,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,ethanol,64-17-5,CCO,470000,1.690647482,0.056482364,0.075,40,39,positive,"See 1984SAN in ISBN: 9781420067989, doi.org/10.1002/apmc.1986.051390114" +457,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0078,,0.1,29.95,positive,doi.org/10.1103/PhysRevA.18.2683 +18,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.230080583,0.27,1.76,1.31,positive,doi.org/10.1021/ma00107a011 +438,95,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17300,1.061349693,0.1097,,0.1,22.748,positive,doi.org/10.1063/1.439127 +458,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.171502723,0.21815,0.1,23.5,positive,See 1984GIL in ISBN: 9781420067989 +227,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.103032843,0.1382,9.8,235.35,negative,See 2001TOR in ISBN: 9781420067989 +62,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.17424529,0.1644,0.48,-3.73,positive,doi.org/10.1006/jcht.1999.0607 +459,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0041,,0.1,29.118,positive,doi.org/10.1103/PhysRevA.18.2683 +24,6,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,32900,1.018575851,0.096228366,0.13,0.1,44.75,positive,doi.org/10.1021/je990141k +439,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,65.868,43.79,positive,doi.org/10.1016/S0378-3812(97)00157-X +17,5,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,68000,1.03030303,0.001153155,0.0014,0.1,71.33,positive,doi.org/10.1021/je0504865 +42,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.197860168,0.229,2.01,59.37,positive,doi.org/10.1021/ma00107a011 +32,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.186779372,0.205,2.73,69.97,positive,doi.org/10.1021/ma00107a011 +460,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.162821913,0.2077,0.1,22.07,positive,See 1984GIL in ISBN: 9781420067989 +14,5,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,22920,1.070028011,0.032756845,0.0524,0.1,152.9,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +440,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.2115,,0.1,22.778,positive,doi.org/10.1063/1.439127 +461,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.1643,,0.1,23.834,positive,doi.org/10.1103/PhysRevE.55.3159 +462,84,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.1171,,0.1,224.3,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +37,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],25000,1.059322034,0.088,,0.1,10.16,positive,doi.org/10.1039/B301190A +441,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.2271,,0.1,23.156,positive,doi.org/10.1063/1.479914 +155,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.246153846,0.3,3.424,-3.007,positive,doi.org/10.1021/ma9517308 +33,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.108305043,0.12,3.22,63.82,positive,doi.org/10.1021/ma00107a011 +63,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.081489244,0.0764,4.9,-5.02,positive,doi.org/10.1006/jcht.1999.0607 +463,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0791,,0.1,23.835,positive,doi.org/10.1063/1.430349 +464,76,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.022883009,0.0306,0.1,23.38,positive,See 1996RON in ISBN: 9781420067989 +56,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.1266,,0.1,52.22,positive,doi.org/10.1063/1.472437 +156,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.176884422,0.22,4.086,-4.156,positive,doi.org/10.1021/ma9517308 +157,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.133912138,0.1687,2.607,99.573,positive,doi.org/10.1021/ma9517308 +228,13,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,27500,1.833333333,0.073721893,0.1,0.1,169.6,negative,doi.org/10.1021/ma00001a026 +229,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.014915089,0.0207,7.2,208,negative,doi.org/10.1021/ie034302w +64,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.21060407,0.1992,4.65,13.34,positive,doi.org/10.1006/jcht.1999.0607 +23,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.161141072,0.1519,3.33,37.63,positive,doi.org/10.1006/jcht.1999.0607 +442,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.058586078,0.0786,33.05,19.36,positive,doi.org/10.1063/1.464440 +158,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.084136448,0.1076,4.4,64.1,positive,doi.org/10.1021/ma9517308 +115,11,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,3350,1.595238095,0.08988764,0.1,0.1,155.7,negative,doi.org/10.1021/ma00015a024 +443,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.3088,,0.1,21.011,positive,doi.org/10.1063/1.439127 +230,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.005599565,0.0078,2.599,172.41,negative,doi.org/10.1016/j.supflu.2005.08.004 +69,8,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,258000,2.15,0.003546712,0.0039,2.055,34.05,negative,doi.org/10.1021/ma011533a +70,12,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,5750,1.15,0.009099181,0.01,0.1,38.9,negative,doi.org/10.1021/ma050261z +444,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.033831286,0.0458,8.775,54.77,positive,doi.org/10.1016/S0378-3812(97)00157-X +465,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0404,,0.1,23.738,positive,doi.org/10.1063/1.430349 +231,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.016075286,0.0223,3.748,177.62,negative,doi.org/10.1016/j.supflu.2005.08.004 +18,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,233000,1.059090909,0.059328053,0.071,0.1,130,negative,doi.org/10.1021/ma00015a024 +159,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.199003566,0.2459,4.06,92.508,positive,doi.org/10.1021/ma9517308 +232,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.007183423,0.01,8.353,217.03,negative,doi.org/10.1016/j.supflu.2005.08.004 +233,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.005599565,0.0078,7.099,206.9,negative,doi.org/10.1016/j.supflu.2005.08.004 +38,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.089,,0.1,29.73,positive,doi.org/10.1039/B301190A +466,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.130370417,0.1681,0.1,24.29,positive,See 1986KRU in ISBN: 9781420067989 +160,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.070072993,0.09,4.383,63.093,positive,doi.org/10.1021/ma9517308 +467,55,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,100000,1.063829787,0.199117293,0.251,0.1,230.4,negative,doi.org/10.1002/app.1993.070470707 +234,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.005599565,0.0078,1.874,167.45,negative,doi.org/10.1016/j.supflu.2005.08.004 +12,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.032802249,0.04,0.1,193.1,negative,doi.org/10.1016/0032-3861(95)91454-F +5,1,poly(vinyl chloride),9002-86-2,*CC(*)Cl,phenetole,103-73-1,CCOc1ccccc1,75000,1.159196291,0.057433034,0.08,25,40.2,positive,doi.org/10.1002/macp.1985.021860409 +65,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.154212561,0.1453,2.09,-3.87,positive,doi.org/10.1006/jcht.1999.0607 +83,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.13205856,0.17,3.05,111.04,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +468,82,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0912,,0.1,24.87,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +469,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0184,,0.1,30.44,positive,doi.org/10.1103/PhysRevA.18.2683 +470,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.1145,,0.1,25.687,positive,doi.org/10.1103/PhysRevE.55.3159 +471,70,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.058201058,0.030364539,0.0405,0.1,27.03,positive,doi.org/10.1021/ma60032a020 +235,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.005599565,0.0078,5.269,192.12,negative,doi.org/10.1016/j.supflu.2005.08.004 +236,9,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,15500,1.076388889,0.066609219,0.0906,4.7,199.94,negative,doi.org/10.1016/j.fluid.2003.07.004 +472,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.025825673,0.0345,0.1,26,positive,doi.org/10.1002/macp.1965.020880115 +161,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.046376812,0.06,2.413,58.62,positive,doi.org/10.1021/ma9517308 +473,29,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,111000,1.050141911,0.083994158,0.11,0.1,21.33,positive,See 1986KRU in ISBN: 9781420067989 +445,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,4.985,56.74,positive,doi.org/10.1016/S0378-3812(97)00157-X +71,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.004456531,0.0049,0.1,30.68,negative,doi.org/10.1016/S0022-2860(00)00559-7 +19,5,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,10500,1.019417476,0.175925926,0.209,0.15,-37.17,positive,doi.org/10.1021/ma00107a011 +446,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,9.08,53.02,positive,doi.org/10.1016/S0378-3812(97)00157-X +68,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.182841437,0.229,0.82,11.37,positive,doi.org/10.1021/ma00107a011 +447,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,9.9,50.76,positive,doi.org/10.1016/S0378-3812(97)00157-X +4,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,600000,1.099908341,0.071079633,0.0841,0.1,217.2,negative,doi.org/10.1016/0032-3861(95)91454-F +474,35,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,335500,1.690176322,0.059443885,0.0785,0.1,24.82,positive,See 1986KRU in ISBN: 9781420067989 +12,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,233000,1.059090909,0.044128651,0.051,0.1,151.8,negative,doi.org/10.1021/ma00015a024 +66,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.187744248,0.1773,2.43,14.25,positive,doi.org/10.1006/jcht.1999.0607 +8,77,polystyrene,9003-53-6,*C(C*)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,1971000,1.260230179,0.004174888,0.005,0.1,237.1,negative,doi.org/10.1016/0032-3861(95)91454-F +4,1,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,ethoxybenzene,103-73-1,CCOc1ccccc1,24500,2.289719626,0.090169709,0.09,0.1,47.5,positive,See 1998SCH in ISBN: 9781420067989 +237,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.147562055,0.19463,3.774,182.393,negative,doi.org/10.1016/j.supflu.2005.08.004 +135,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1215,0.1215,4.39,6.35,positive,doi.org/10.1006/jcht.1999.0607 +475,84,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0357,,0.1,27.1,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +116,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0254,,0.1,139.3,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +448,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.096806139,0.1281,7.05,29.82,positive,doi.org/10.1016/S0378-3812(97)00302-6 +238,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.047765372,0.065445,6.044,192.15,negative,doi.org/10.1016/j.supflu.2005.08.004 +476,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.018142068,0.0243,0.1,24,positive,doi.org/10.1002/macp.1965.020880115 +449,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.023771294,0.0323,5.05,25.43,positive,doi.org/10.1016/S0378-3812(97)00302-6 +4,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,anisole,100-66-3,COc1ccccc1,44500,1.508474576,0.031951597,0.031,0.1,86.4,positive,See 1998SCH in ISBN: 9781420067989 +239,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.051604672,0.0706,2.684,167.9,negative,doi.org/10.1016/j.supflu.2005.08.004 +450,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,0.984,59.46,positive,doi.org/10.1016/S0378-3812(97)00157-X +39,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.037,,0.1,30.09,positive,doi.org/10.1039/B301190A +240,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.06615654,0.09,7.8,231,negative,doi.org/10.1021/ie034302w +67,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.093148089,0.0874,2.77,-4.41,positive,doi.org/10.1006/jcht.1999.0607 +451,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,39.305,45.47,positive,doi.org/10.1016/S0378-3812(97)00157-X +117,11,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,3350,1.595238095,0.13559322,0.15,0.1,246.4,positive,doi.org/10.1021/ma00015a024 +477,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,100000,1.060445387,0.003714317,0.005,0.1,15.3,positive,doi.org/10.1021/ma00015a024 +11,67,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,4215,1.069796954,0.137956451,0.1507,0.1,45.39,positive,doi.org/10.1021/je0504865 +241,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.182001135,0.237,8.3,221.3,negative,doi.org/10.1021/ie034302w +478,36,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,90000,1.040462428,0.007512822,0.0101,0.1,15.65,positive,doi.org/10.1016/S0378-3812(99)00128-4 +68,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.224035975,0.2121,0.34,-4.04,positive,doi.org/10.1006/jcht.1999.0607 +13,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,100000,1.060445387,0.008602602,0.01,0.1,171.5,negative,doi.org/10.1021/ma00015a024 +452,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.141965772,0.18487,40,20.765,positive,doi.org/10.1002/macp.1994.021950233 +479,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1162,,0.1,23.556,positive,doi.org/10.1063/1.430349 +118,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0316,,0.1,137.35,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +480,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0439,,0.1,30.471,positive,doi.org/10.1103/PhysRevA.18.2683 +453,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,5.77,54.52,positive,doi.org/10.1016/S0378-3812(97)00157-X +454,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,1.969,58.64,positive,doi.org/10.1016/S0378-3812(97)00157-X +119,6,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,2530,1.171296296,0.082622362,0.092,0.1,159.3,negative,doi.org/10.1016/0378-3812(93)85105-U +120,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.2069,,0.1,116.4,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +72,8,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,258000,2.15,0.026890297,0.0295,35.45,34.95,negative,doi.org/10.1021/ma011533a +481,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.083263456,0.10907,0.1,24.83,positive,See 1984GIL in ISBN: 9781420067989 +24,52,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,90000,1.040462428,0.170176518,0.1984,0.1,8.3,positive,doi.org/10.1016/0032-3861(95)91454-F +455,70,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,400000,1.058201058,0.018273523,0.02488,0.1,221.849,negative,doi.org/10.1021/ma60032a020 +162,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,4.881,181.479,negative,doi.org/10.1021/ma9517308 +69,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.114095631,0.146,1.33,54.37,positive,doi.org/10.1021/ma00107a011 +5,1,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,ethoxybenzene,103-73-1,CCOc1ccccc1,24500,2.289719626,0.060116877,0.06,0.1,48.6,positive,See 1998SCH in ISBN: 9781420067989 +55,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.143286669,0.1699,2.791,172.281,negative,doi.org/10.1021/ma9517308 +482,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.085566784,0.112,0.1,26.29,positive,See 1986KRU in ISBN: 9781420067989 +57,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.1436,,0.1,49.131,positive,doi.org/10.1063/1.472437 +121,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.004446915,0.005,0.1,277.6,positive,doi.org/10.1021/ma00015a024 +483,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.231692294,0.289,0.1,22,positive,doi.org/10.1002/macp.1965.020880115 +456,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,3.76,57.56,positive,doi.org/10.1016/S0378-3812(97)00157-X +457,102,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.151967736,0.1972,1.18,12.43,positive,doi.org/10.1063/1.464440 +25,4,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20100,1.020304569,0.047198115,0.065,0.1,29.7,positive,doi.org/10.1021/je990141k +484,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.031994425,0.04265,0.1,23.5,positive,See 1984GIL in ISBN: 9781420067989 +458,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,75.481,43.53,positive,doi.org/10.1016/S0378-3812(97)00157-X +242,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.06615654,0.09,6.7,221,negative,doi.org/10.1021/ie034302w +459,95,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17300,1.061349693,0.0809,,0.1,22.116,positive,doi.org/10.1063/1.439127 +460,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,27.321,48.77,positive,doi.org/10.1016/S0378-3812(97)00157-X +58,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.0296,,0.1,52.663,positive,doi.org/10.1063/1.472437 +122,11,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,3350,1.595238095,0.273009307,0.297,0.1,158.1,negative,doi.org/10.1021/ma00015a024 +163,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.176884422,0.22,4.297,155.744,negative,doi.org/10.1021/ma9517308 +56,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.221355036,0.2581,2.503,172.316,negative,doi.org/10.1021/ma9517308 +69,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.093148089,0.0874,3.98,-4.51,positive,doi.org/10.1006/jcht.1999.0607 +461,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,1.86,22.76,positive,doi.org/10.1063/1.464440 +485,26,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0891,,0.1,25.96,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +164,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.070072993,0.09,1.07,148.421,negative,doi.org/10.1021/ma9517308 +462,102,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.151967736,0.1972,19.91,10.91,positive,doi.org/10.1063/1.464440 +243,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.031034654,0.0428,5.7,172,negative,doi.org/10.1021/ie034302w +486,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0137,,0.1,22.405,positive,doi.org/10.1063/1.430349 +244,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.147562055,0.19463,3.149,177.963,negative,doi.org/10.1016/j.supflu.2005.08.004 +26,6,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,32900,1.018575851,0.010016121,0.014,0.1,33.85,positive,doi.org/10.1021/je990141k +136,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1245,0.1245,0.54,43.15,positive,doi.org/10.1006/jcht.1999.0607 +57,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.117493871,0.1401,2.478,172.286,negative,doi.org/10.1021/ma9517308 +70,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.168519092,0.212,0.05,12.97,positive,doi.org/10.1021/ma00107a011 +487,121,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,101400,1.090322581,0.087141082,0.114,7.4,257.8,negative,See 1999BUN in ISBN: 9781420067989 +4,32,polystyrene,9003-53-6,*C(C*)c1ccccc1,diisodecyl phthalate,26761-40-0,CC(C)CCCCCCCOC(=O)c1ccccc1C(=O)OCCCCCCCC(C)C,235000,2.100089366,0.187149216,0.2,0.1,56.35,positive,See 2001HE1 in ISBN: 9036516463 +40,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],2000000,1.299967501,0.019,,0.1,34.2,positive,doi.org/10.1039/B301190A +463,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.103004224,0.136,3,54.53,positive,doi.org/10.1016/S0378-3812(97)00302-6 +165,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.228571429,0.28,2.914,-2.193,positive,doi.org/10.1021/ma9517308 +464,87,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,109000,1.058252427,0.0169,,0.1,47.071,positive,doi.org/10.1063/1.439127 +59,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.0651,,0.1,18.568,positive,doi.org/10.1063/1.472437 +166,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.046376812,0.06,2.049,58.621,positive,doi.org/10.1021/ma9517308 +488,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0769,,0.1,23.837,positive,doi.org/10.1063/1.430349 +489,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.029985758,0.04,0.1,27.8,positive,doi.org/10.1002/macp.1965.020880115 +167,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,2.878,163.772,negative,doi.org/10.1021/ma9517308 +490,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0385,,0.1,23.717,positive,doi.org/10.1063/1.430349 +491,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0432,,0.1,23.772,positive,doi.org/10.1063/1.430349 +70,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.224035975,0.2121,2.75,-4.26,positive,doi.org/10.1006/jcht.1999.0607 +73,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.000818249,0.0009,0.1,33.83,negative,doi.org/10.1016/S0022-2860(00)00559-7 +60,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.1957,,0.1,20.305,positive,doi.org/10.1063/1.472437 +5,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,2-propanone,67-64-1,CC(=O)C,44500,1.508474576,0.353361626,0.4,0.1,46.5,positive,See 1998SCH in ISBN: 9781420067989 +123,1,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,11615,1.110739218,0.048,,0.1,121.2,negative,See 2001FIS in ISBN: 9781420067989 +465,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.192338678,0.2461,82.08,19.72,positive,doi.org/10.1063/1.464440 +466,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,3.08,245.7,negative,doi.org/10.1016/S0378-3812(97)00157-X +245,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.075696126,0.1026,7.8,200.04,negative,doi.org/10.1016/j.fluid.2003.07.004 +467,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,6.022,54.08,positive,doi.org/10.1016/S0378-3812(97)00157-X +5,46,polystyrene,9003-53-6,*C(C*)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,233000,1.060054595,0.110558414,0.1298,0.1,221.2,negative,doi.org/10.1016/0032-3861(95)91454-F +468,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.214800322,0.27272,80,20.987,positive,doi.org/10.1002/macp.1994.021950233 +246,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.059610426,0.0813,4.5,188.75,negative,See 2001TOR in ISBN: 9781420067989 +61,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.0379,,0.1,42.447,positive,doi.org/10.1063/1.472437 +492,93,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0624,,0.1,224.18,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +469,33,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,2700000,1.099796334,0.014079976,0.0192,0.1,215.455,negative,doi.org/10.1021/ma60032a020 +62,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.036,,0.1,14.3,positive,doi.org/10.1063/1.472437 +28,99,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,43000,1.009389671,0.079942502,0.1091,0.1,181.1,negative,doi.org/10.1002/pen.760330806 +137,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1126,0.1126,0.79,24.02,positive,doi.org/10.1006/jcht.1999.0607 +470,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.097275917,0.1287,24.61,20.27,positive,doi.org/10.1063/1.464440 +138,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0944,0.0944,0.23,23.87,positive,doi.org/10.1006/jcht.1999.0607 +493,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.115767573,0.15,0.1,26.2,positive,doi.org/10.1002/macp.1965.020880115 +6,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,2-propanone,67-64-1,CC(=O)C,44500,1.508474576,0.306216127,0.35,0.1,48.3,positive,See 1998SCH in ISBN: 9781420067989 +6,2,poly(vinyl chloride),9002-86-2,*CC(*)Cl,phenetole,103-73-1,CCOc1ccccc1,37000,1.178343949,0.072234257,0.1,100,13.9,positive,doi.org/10.1002/macp.1985.021860409 +247,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.003026428,0.00422,9.9,201.9,negative,doi.org/10.1021/ie034302w +84,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.085273484,0.1115,0.56,13.57,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +3,1,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,ethanol,64-17-5,CCO,470000,1.690647482,0.056482364,0.075,0.1,42.2,positive,"See 1984SAN in ISBN: 9781420067989, doi.org/10.1002/apmc.1986.051390114" +43,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.111263273,0.131,1.59,66.16,positive,doi.org/10.1021/ma00107a011 +494,76,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.080148277,0.1051,0.1,23.95,positive,See 1996RON in ISBN: 9781420067989 +44,57,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],7800,1.181818182,0.126947526,0.149,0.1,13.6,positive,doi.org/10.1063/1.1143329 +63,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.1466,,0.1,34.673,positive,doi.org/10.1063/1.472437 +71,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.114095631,0.146,0.98,57.4,positive,doi.org/10.1021/ma00107a011 +495,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.094,,0.1,23.787,positive,doi.org/10.1063/1.430349 +471,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.023771294,0.0323,7.05,25.1,positive,doi.org/10.1016/S0378-3812(97)00302-6 +496,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.065531534,0.08636,0.1,25.46,positive,See 1984GIL in ISBN: 9781420067989 +139,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0929,0.0929,0.58,49.88,positive,doi.org/10.1006/jcht.1999.0607 +472,89,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37900,1.010666667,0.009443808,0.0129,0.1,27.84,positive,See 1996RON in ISBN: 9781420067989 +168,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,0.929,81.945,positive,doi.org/10.1021/ma9517308 +58,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,1.147,31.497,positive,doi.org/10.1021/ma9517308 +473,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.048267639,0.065,3.06,236.46,negative,doi.org/10.1016/S0378-3812(97)00157-X +64,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.1663,,0.1,34.513,positive,doi.org/10.1063/1.472437 +248,9,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,15500,1.076388889,0.066609219,0.0906,2,179.96,negative,doi.org/10.1016/j.fluid.2003.07.004 +30,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.041879016,0.06,12.75,150,negative,doi.org/10.1021/je0103162 +65,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.0704,,0.1,18.968,positive,doi.org/10.1063/1.472437 +140,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0355,0.0355,5.84,47.59,positive,doi.org/10.1006/jcht.1999.0607 +85,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.096178884,0.1253,0.74,11.3,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +497,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.091,,0.1,21.46,positive,doi.org/10.1039/B301190A +169,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.199003566,0.2459,3.474,147.127,negative,doi.org/10.1021/ma9517308 +19,5,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,600000,1.099908341,0.084846672,0.101,0.1,1.7,positive,doi.org/10.1021/ma00015a024 +6,1,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,ethoxybenzene,103-73-1,CCOc1ccccc1,24500,2.289719626,0.2503884,0.25,0.1,42.9,positive,See 1998SCH in ISBN: 9781420067989 +141,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0355,0.0355,3.27,48.39,positive,doi.org/10.1006/jcht.1999.0607 +474,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.240492932,0.30267,0.1,23.833,positive,doi.org/10.1002/macp.1994.021950233 +142,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.139,0.139,4.68,41.69,positive,doi.org/10.1006/jcht.1999.0607 +249,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.097457804,0.131,6.4,190.03,negative,doi.org/10.1016/j.fluid.2003.07.004 +250,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.187363134,0.2435,5.774,202.312,negative,doi.org/10.1016/j.supflu.2005.08.004 +170,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,1.545,77.786,positive,doi.org/10.1021/ma9517308 +66,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.1364,,0.1,43.51,positive,doi.org/10.1063/1.472437 +74,13,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,2996,1.07,0.009099181,0.01,0.1,44,negative,doi.org/10.1021/ma050261z +171,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,2.976,156.578,negative,doi.org/10.1021/ma9517308 +498,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0201,,0.1,23.082,positive,doi.org/10.1063/1.430349 +124,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0174,,0.1,118.2,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +29,9,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,354000,1.020172911,0.007408545,0.01041,0.1,8,positive,doi.org/10.1627/jpi1958.33.117 +172,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.224203822,0.275,4.671,181.23,negative,doi.org/10.1021/ma9517308 +475,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,37.688,46.7,positive,doi.org/10.1016/S0378-3812(97)00157-X +499,76,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.118741132,0.1537,0.1,23.52,positive,See 1996RON in ISBN: 9781420067989 +500,122,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,35400,1.311111111,0.139233403,0.179,0.1,11.45,positive,doi.org/10.1002/polc.5070390106 +501,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.058201058,0.020171999,0.027,0.1,224.3,negative,doi.org/10.1021/ma60032a020 +476,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,14.315,52.75,positive,doi.org/10.1016/S0378-3812(97)00157-X +31,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.027741083,0.04,7.03,130,negative,doi.org/10.1021/je0103162 +86,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,1.31,103.98,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +477,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.058586078,0.0786,9.81,21.02,positive,doi.org/10.1063/1.464440 +173,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.29917988,0.3591,3.393,-4.173,positive,doi.org/10.1021/ma9517308 +67,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.1053,,0.1,20.189,positive,doi.org/10.1063/1.472437 +251,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.051604672,0.0706,7.899,207.23,negative,doi.org/10.1016/j.supflu.2005.08.004 +8,41,polystyrene,9003-53-6,*C(C*)c1ccccc1,1-dodecanol,112-53-8,CCCCCCCCCCCCO,235000,2.100089366,0.412398239,0.47,0.1,154.93,positive,"See 2001HE1 ISBN: 9036516463, doi.org/10.1016/S0040-6031(01)00587-1" +478,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.097275917,0.1287,12.75,21.32,positive,doi.org/10.1063/1.464440 +252,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.045517759,0.06242,6.144,192.56,negative,doi.org/10.1016/j.supflu.2005.08.004 +68,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.0385,,0.1,42.744,positive,doi.org/10.1063/1.472437 +14,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,233000,1.059090909,0.130743968,0.149,0.1,155.2,negative,doi.org/10.1021/ma00015a024 +502,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0197,,0.1,23.046,positive,doi.org/10.1063/1.430349 +479,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.058586078,0.0786,58.15,19.24,positive,doi.org/10.1063/1.464440 +69,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.0239,,0.1,48.636,positive,doi.org/10.1063/1.472437 +503,26,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.055,,0.1,26.98,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +480,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.2691,,0.1,22.371,positive,doi.org/10.1063/1.479914 +253,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.001720302,0.0024,2.668,177.77,negative,doi.org/10.1016/j.supflu.2005.08.004 +481,39,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,670000,1.098360656,0.042444715,0.05728,0.1,219.042,negative,doi.org/10.1021/ma60032a020 +15,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,233000,1.059090909,0.176793414,0.2,0.1,159,negative,doi.org/10.1021/ma00015a024 +24,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.1205,0.1205,3.7,66.51,positive,doi.org/10.1006/jcht.1999.0607 +504,123,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,61500,1.118181818,0.110158052,0.143,0.1,17.3,positive,doi.org/10.1002/polc.5070390106 +482,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.072747343,0.0971,3.05,55.44,positive,doi.org/10.1016/S0378-3812(97)00302-6 +483,124,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,22000,1.028037383,0.154248892,0.2,0.1,27.7,positive,doi.org/10.1016/0378-3812(93)87042-Y +16,9,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,7410,1.170616114,0.079312804,0.1148,0.1,176.7,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +125,8,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,100000,2,0.006227065,0.007,0.1,101.5,negative,doi.org/10.1021/ma00015a024 +484,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,200000,1.058201058,0.040887583,0.05521,0.1,226.548,negative,doi.org/10.1021/ma60032a020 +254,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.036109458,0.0497,9.39,214.9,negative,See 2000BEH in ISBN: 9781420067989 +5,3,polyethylene,9002-88-4,*CC*,cyclopentane,287-92-3,C1CCCC1,106000,5.273631841,0.049147883,0.06,11.04,255.6,negative,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +32,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.013782542,0.02,13.03,170,negative,doi.org/10.1021/je0103162 +70,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.0812,,0.1,19.521,positive,doi.org/10.1063/1.472437 +485,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,10.1,54.37,positive,doi.org/10.1016/S0378-3812(97)00157-X +255,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.041056487,0.0564,9.7,249,negative,doi.org/10.1021/ie034302w +505,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.033132638,0.04415,0.1,19.99,positive,See 1984GIL in ISBN: 9781420067989 +174,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,0.616,137.214,negative,doi.org/10.1021/ma9517308 +256,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.065100905,0.0886,5.3,180.01,negative,doi.org/10.1016/j.fluid.2003.07.004 +17,8,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,18970,1.04002193,0.014048274,0.021,0.1,169.5,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +71,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.2183,,0.1,44.903,positive,doi.org/10.1063/1.472437 +175,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,0.488,137.152,negative,doi.org/10.1021/ma9517308 +486,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.065916504,0.0882,14.05,27.75,positive,doi.org/10.1016/S0378-3812(97)00302-6 +506,30,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,600000,1.099908341,0.045214464,0.06,18.7,27.97,positive,doi.org/10.1007/BF01525017 +59,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.091732599,0.11,3.855,25.261,positive,doi.org/10.1021/ma9517308 +507,90,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.009826621,0.0132,0.1,21.71,positive,doi.org/10.1016/S0378-3812(99)00128-4 +176,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.193939394,0.24,1.613,-1.656,positive,doi.org/10.1021/ma9517308 +72,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.1583,,0.1,42.994,positive,doi.org/10.1063/1.472437 +508,121,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,101400,1.090322581,0.087141082,0.114,2.76,228.3,negative,See 1999BUN in ISBN: 9781420067989 +8,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,61400,1.04957265,0.039918699,0.0566,0.1,14.8,positive,doi.org/10.1016/0032-3861(95)91454-F +487,39,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,670000,1.098360656,0.062460243,0.08368,0.1,61.016,positive,doi.org/10.1021/ma60032a020 +509,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.007289103,0.0098,0.1,22.75,positive,See 1986KRU in ISBN: 9781420067989 +3,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,3-methylpentane,96-14-0,CCC(C)CC,1240,1.068965517,0.072088174,0.11,0.1,4.05,positive,doi.org/10.1016/S0378-3812(01)00548-9 +20,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,100000,1.060445387,0.172798201,0.202,0.1,150.1,negative,doi.org/10.1021/ma00015a024 +257,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.061488104,0.0838,10.1,213,negative,doi.org/10.1021/ie034302w +177,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,3.618,164.849,negative,doi.org/10.1021/ma9517308 +87,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.075072918,0.0985,2.64,97.97,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +488,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.237164844,0.29882,50,20.267,positive,doi.org/10.1002/macp.1994.021950233 +258,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.010646004,0.0148,5.5,189.99,negative,doi.org/10.1016/j.fluid.2003.07.004 +75,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.038053348,0.0417,3,32.55,negative,doi.org/10.1021/ma011533a +510,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.15645712,0.2,0.1,24.9,positive,doi.org/10.1002/macp.1965.020880115 +511,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.041613746,0.05529,0.1,22.5,positive,See 1984GIL in ISBN: 9781420067989 +489,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.17486215,0.2251,13.05,29.6,positive,doi.org/10.1016/S0378-3812(97)00302-6 +25,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.128,,40,14.05,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +512,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.066028333,0.087,0.1,27.03,positive,See 1986KRU in ISBN: 9781420067989 +490,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.1341,,0.1,22.778,positive,doi.org/10.1063/1.439127 +72,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.127937264,0.163,0.55,67.66,positive,doi.org/10.1021/ma00107a011 +21,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,100000,1.060445387,0.261269411,0.3,0.1,162,negative,doi.org/10.1021/ma00015a024 +491,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.058586078,0.0786,0.1,22.54,positive,doi.org/10.1063/1.464440 +76,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.185468115,0.2003,0.1,29.35,negative,doi.org/10.1016/S0022-2860(00)00559-7 +259,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.000358203,0.0005,5.611,206.99,negative,doi.org/10.1016/j.supflu.2005.08.004 +492,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.05402428,0.0726,7.05,28.1,positive,doi.org/10.1016/S0378-3812(97)00302-6 +493,109,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,14000,1.059803179,0.146199703,0.1901,0.1,18.95,positive,doi.org/10.1016/j.eurpolymj.2003.09.027 +18,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,61400,1.04957265,0.007346193,0.009,0.1,236.5,negative,doi.org/10.1016/0032-3861(95)91454-F +260,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.06088695,0.083,2.8,206,negative,doi.org/10.1021/ie034302w +513,20,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.1078,,0.1,226.54,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +73,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.123853657,0.158,0.71,86.08,negative,doi.org/10.1021/ma00107a011 +143,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.3649,0.3649,4.49,15.9,positive,doi.org/10.1006/jcht.1999.0607 +494,107,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20200,1.057591623,0.1234,,0.1,25.734,positive,doi.org/10.1063/1.439127 +126,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0181,,0.1,143.3,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +514,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.032,,0.1,26.08,positive,doi.org/10.1039/B301190A +4,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-octane,111-65-9,CCCCCCCC,1240,1.068965517,0.112676056,0.16,0.1,2.55,positive,doi.org/10.1016/S0378-3812(01)00548-9 +12,2,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,78800,1.119318182,0.037400187,0.0413,0.1,78.5,positive,doi.org/10.1021/je0504865 +71,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.21060407,0.1992,1.4,13.94,positive,doi.org/10.1006/jcht.1999.0607 +515,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0648,,0.1,26.3,positive,doi.org/10.1103/PhysRevE.55.3159 +516,42,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0688,,0.1,25.4,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +34,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.145049278,0.16,3.51,96.8,negative,doi.org/10.1021/ma00107a011 +4,6,polyethylene,9002-88-4,*CC*,1-octene,111-66-0,CCCCCCC=C,105000,2.441860465,0.015456236,0.0198,3.16,260.35,negative,See 2001TOR in ISBN: 9781420067989 +127,10,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8000,1.6,0.017817372,0.02,0.1,128.9,negative,doi.org/10.1021/ma00015a024 +495,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,22.373,49.24,positive,doi.org/10.1016/S0378-3812(97)00157-X +496,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,200000,1.058201058,0.06707307,0.08971,0.1,54.225,positive,doi.org/10.1021/ma60032a020 +24,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,13500,1.058823529,0.123399022,0.165,1.27,18.38,positive,doi.org/10.1021/ma00107a011 +72,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.056732495,0.0531,4.92,13.13,positive,doi.org/10.1006/jcht.1999.0607 +41,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.079,,0.1,29.89,positive,doi.org/10.1039/B301190A +60,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.091732599,0.11,2.249,172.28,negative,doi.org/10.1021/ma9517308 +77,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.070216876,0.0767,0.1,33.2,negative,doi.org/10.1016/S0378-3812(01)00469-1 +497,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.160909526,0.20815,50,20.696,positive,doi.org/10.1002/macp.1994.021950233 +128,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.3181,,0.1,136.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +33,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.070707071,0.1,10.27,170,negative,doi.org/10.1021/je0103162 +517,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.094,,0.1,21.47,positive,doi.org/10.1039/B301190A +88,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.109403402,0.1419,2.21,139.04,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +42,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],25000,1.059322034,0.104,,0.1,10.27,positive,doi.org/10.1039/B301190A +518,125,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,470000,1.068181818,0.02620337,0.035,0.1,27.9,positive,doi.org/10.1002/pol.1968.110060608 +4,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,3-methylpentane,96-14-0,CCC(C)CC,1240,1.068965517,0.092827004,0.14,0.1,5.05,positive,doi.org/10.1016/S0378-3812(01)00548-9 +261,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.042610985,0.0585,8.569,211.92,negative,doi.org/10.1016/j.supflu.2005.08.004 +519,30,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,600000,1.099908341,0.045214464,0.06,26,28.28,positive,doi.org/10.1007/BF01525017 +129,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0807,,0.1,132.15,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +498,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,21.855,50.1,positive,doi.org/10.1016/S0378-3812(97)00157-X +178,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.199003566,0.2459,5.388,85.303,positive,doi.org/10.1021/ma9517308 +520,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.066898135,0.08812,0.1,25.23,positive,See 1986KRU in ISBN: 9781420067989 +179,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.199003566,0.2459,3.258,99.761,positive,doi.org/10.1021/ma9517308 +521,76,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.056664058,0.0749,0.1,24,positive,See 1996RON in ISBN: 9781420067989 +522,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.004309499,0.0058,0.1,20,positive,doi.org/10.1002/macp.1965.020880115 +18,8,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,18970,1.04002193,0.071296118,0.1036,0.1,169,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +73,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.0385,,0.1,49.506,positive,doi.org/10.1063/1.472437 +499,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.1941,,0.1,23.382,positive,doi.org/10.1063/1.479914 +523,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.102,,0.1,23.521,positive,doi.org/10.1103/PhysRevE.55.3159 +144,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0929,0.0929,3.62,48.88,positive,doi.org/10.1006/jcht.1999.0607 +89,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.134578869,0.1731,4.74,31.03,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +13,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.050221114,0.061,0.1,-13.3,positive,doi.org/10.1016/0032-3861(95)91454-F +34,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.041879016,0.06,9.31,150,negative,doi.org/10.1021/je0103162 +9,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,31200,1.2,0.074303432,0.1038,0.1,3.4,positive,doi.org/10.1016/0032-3861(95)91454-F +9,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,31200,1.2,0.074076526,0.0894,0.1,259.1,negative,doi.org/10.1016/0032-3861(95)91454-F +524,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.073,,0.1,21.43,positive,doi.org/10.1039/B301190A +180,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.176884422,0.22,3.71,147.41,negative,doi.org/10.1021/ma9517308 +130,3,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,4490,1.130982368,0.043524404,0.0487,0.1,247.4,positive,doi.org/10.1016/0378-3812(93)85105-U +2,7,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,ethanol,64-17-5,CCO,74000,1.48,0.866618288,0.8881,0.1,30,positive,doi.org/10.1002/1521-3935(20020301)203:4<705::AID-MACP705>3.0.CO;2-7 +525,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0065,,0.1,29.75,positive,doi.org/10.1103/PhysRevA.18.2683 +73,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.197460596,0.1866,3.84,-4.17,positive,doi.org/10.1006/jcht.1999.0607 +78,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.282007422,0.3017,0.1,27.86,negative,doi.org/10.1016/S0022-2860(00)00559-7 +74,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.1217,,0.1,20.401,positive,doi.org/10.1063/1.472437 +131,9,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,151000,3.696450428,0.1675,,0.1,106.8,negative,See 2001FIS in ISBN: 9781420067989 +526,96,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,680000,1.019490255,0.0446,,0.1,28.025,positive,doi.org/10.1016/0032-3861(73)90005-0 +90,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.13205856,0.17,2.8,36.94,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +262,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.087451445,0.118,7.1,205,negative,doi.org/10.1021/ie034302w +527,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0605,,0.1,23.837,positive,doi.org/10.1063/1.430349 +181,104,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,13500,1.058823529,0.152122512,0.1906,1.778,35.345,positive,doi.org/10.1021/ma9517308 +9,41,polystyrene,9003-53-6,*C(C*)c1ccccc1,1-dodecanol,112-53-8,CCCCCCCCCCCCO,235000,2.100089366,0.771375529,0.81,0.1,88.13,positive,"See 2001HE1 ISBN: 9036516463, doi.org/10.1016/S0040-6031(01)00587-1" +528,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.071706848,0.0943,0.1,26.6,positive,See 1986KRU in ISBN: 9781420067989 +529,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.156448871,0.19999,0.1,23,positive,See 1984GIL in ISBN: 9781420067989 +14,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.050221114,0.061,0.1,189.9,negative,doi.org/10.1016/0032-3861(95)91454-F +530,36,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,90000,1.040462428,0.008930516,0.012,0.1,16.15,positive,doi.org/10.1016/S0378-3812(99)00128-4 +19,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.091500413,0.11,0.1,229.9,negative,doi.org/10.1016/0032-3861(95)91454-F +500,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.162073213,0.20957,80,21.252,positive,doi.org/10.1002/macp.1994.021950233 +531,114,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,206000,1.045685279,0.068,,0.1,23.94,positive,doi.org/10.1016/0032-3861(73)90005-0 +501,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.05402428,0.0726,10.05,27.58,positive,doi.org/10.1016/S0378-3812(97)00302-6 +91,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.134578869,0.1731,0.45,44.92,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +16,5,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,600000,1.099908341,0.008602602,0.01,0.1,150.2,negative,doi.org/10.1021/ma00015a024 +92,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.134578869,0.1731,1.53,39.87,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +145,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1799,0.1799,5.22,6.01,positive,doi.org/10.1006/jcht.1999.0607 +146,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1651,0.1651,1.42,42.01,positive,doi.org/10.1006/jcht.1999.0607 +74,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,11500,1.069767442,0.187926825,0.235,0.1,-25.75,positive,doi.org/10.1063/1.1143329 +182,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.133912138,0.1687,2.763,140.325,negative,doi.org/10.1021/ma9517308 +532,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.150652962,0.19295,0.1,19.28,positive,See 1986KRU in ISBN: 9781420067989 +27,7,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,75600,1.05,0.03651422,0.0505,0.1,55.35,positive,doi.org/10.1021/je990141k +13,94,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,849000,1.450042699,0.036127403,0.0399,0.1,80.05,positive,doi.org/10.1021/je0504865 +533,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,13200000,1.130136986,0.0084,,0.1,32.1,positive,doi.org/10.1039/B301190A +24,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.098758936,0.0927,3.37,37.94,positive,doi.org/10.1006/jcht.1999.0607 +2,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],methylcyclopentane,96-37-7,CC1CCCC1,26900,1.059055118,0.142795134,0.179,0.23,30.24,positive,doi.org/10.1021/ma00107a011 +263,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.076532282,0.1037,3.1,172.27,negative,See 2000BEH in ISBN: 9781420067989 +79,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.280950334,0.3006,0.1,27.92,negative,doi.org/10.1016/S0022-2860(00)00559-7 +534,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.223914918,0.28,0.1,22,positive,doi.org/10.1002/macp.1965.020880115 +35,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.00686948,0.01,13.79,150,negative,doi.org/10.1021/je0103162 +502,83,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,46400,1.059360731,0.039,,0.1,37.895,positive,doi.org/10.1063/1.439127 +535,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0386,,0.1,25.846,positive,doi.org/10.1103/PhysRevE.55.3159 +503,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.090479565,0.12,5.47,54.42,positive,doi.org/10.1016/S0378-3812(97)00157-X +504,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.082475925,0.1097,13.05,28.37,positive,doi.org/10.1016/S0378-3812(97)00302-6 +264,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.001720302,0.0024,4.048,187.61,negative,doi.org/10.1016/j.supflu.2005.08.004 +265,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.000358203,0.0005,4.336,197.11,negative,doi.org/10.1016/j.supflu.2005.08.004 +25,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.131491471,0.1237,3.19,38.03,positive,doi.org/10.1006/jcht.1999.0607 +505,70,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,400000,1.058201058,0.018273523,0.02488,0.1,58.946,positive,doi.org/10.1021/ma60032a020 +147,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1388,0.1388,1.22,24.09,positive,doi.org/10.1006/jcht.1999.0607 +506,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,97200,1.05997819,0.129018865,0.16878,0.1,234.375,negative,doi.org/10.1021/ma60032a020 +266,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.000358203,0.0005,3.746,192.32,negative,doi.org/10.1016/j.supflu.2005.08.004 +183,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.202445508,0.2499,4.732,181.307,negative,doi.org/10.1021/ma9517308 +93,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.134578869,0.1731,1.38,40.98,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +184,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.224203822,0.275,2.644,163.562,negative,doi.org/10.1021/ma9517308 +536,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1124,,0.1,23.598,positive,doi.org/10.1063/1.430349 +132,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.2921,,0.1,135.05,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +35,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.193308488,0.212,3.85,56.86,positive,doi.org/10.1021/ma00107a011 +185,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.211167513,0.26,0.558,-0.653,positive,doi.org/10.1021/ma9517308 +507,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.1112,,0.1,23.373,positive,doi.org/10.1063/1.446753 +133,1,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,11615,1.110739218,0.2301,,0.1,122.4,negative,See 2001FIS in ISBN: 9781420067989 +537,30,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,600000,1.099908341,0.045214464,0.06,8.8,27.8,positive,doi.org/10.1007/BF01525017 +508,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,1.969,58.19,positive,doi.org/10.1016/S0378-3812(97)00157-X +36,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.175610347,0.193,3.16,63.98,positive,doi.org/10.1021/ma00107a011 +509,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.1014,,0.1,23.078,positive,doi.org/10.1063/1.479914 +25,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.110119924,0.148,2.31,29.45,positive,doi.org/10.1021/ma00107a011 +538,93,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0932,,0.1,24.99,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +94,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.134578869,0.1731,4.27,31.98,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +539,93,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0932,,0.1,224.47,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +95,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.13205856,0.17,2.13,38.88,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +186,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,1.947,155.134,negative,doi.org/10.1021/ma9517308 +540,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.073,,0.1,29.97,positive,doi.org/10.1103/PhysRevA.18.2683 +510,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.090479565,0.12,7.25,53.64,positive,doi.org/10.1016/S0378-3812(97)00157-X +148,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.1322,0.1322,0.27,49.88,positive,doi.org/10.1006/jcht.1999.0607 +4,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,"2,2,4-trimethylpentane",540-84-1,CC(C)CC(C)(C)C,1240,1.068965517,0.195984643,0.27,0.1,-12.15,positive,doi.org/10.1016/S0378-3812(01)00548-9 +267,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.051604672,0.0706,1.909,162.99,negative,doi.org/10.1016/j.supflu.2005.08.004 +511,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.242,,0.1,22.55,positive,doi.org/10.1063/1.439127 +512,95,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17300,1.061349693,0.0264,,0.1,16.48,positive,doi.org/10.1063/1.439127 +513,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.090479565,0.12,2.8,55.79,positive,doi.org/10.1016/S0378-3812(97)00157-X +80,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.377358491,0.4,0.1,27.74,negative,doi.org/10.1016/S0022-2860(00)00559-7 +187,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,4.834,181.485,negative,doi.org/10.1021/ma9517308 +268,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.060586478,0.0826,5.969,192.55,negative,doi.org/10.1016/j.supflu.2005.08.004 +269,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.187363134,0.2435,5.104,197.271,negative,doi.org/10.1016/j.supflu.2005.08.004 +43,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],13200000,1.130136986,0.0015,,0.1,36.04,positive,doi.org/10.1039/B301190A +37,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.186779372,0.205,3.11,63.84,positive,doi.org/10.1021/ma00107a011 +74,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.139704443,0.1315,1.45,14.93,positive,doi.org/10.1006/jcht.1999.0607 +75,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.168519092,0.212,1.21,10.96,positive,doi.org/10.1021/ma00107a011 +270,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.027077076,0.0374,9.1,205,negative,doi.org/10.1021/ie034302w +188,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.224203822,0.275,4.67,181.246,negative,doi.org/10.1021/ma9517308 +26,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,13500,1.058823529,0.123399022,0.165,2,18.15,positive,doi.org/10.1021/ma00107a011 +134,6,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,2530,1.171296296,0.163728103,0.1805,0.1,158.7,negative,doi.org/10.1016/0378-3812(93)85105-U +44,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],25000,1.059322034,0.044,,0.1,9.01,positive,doi.org/10.1039/B301190A +541,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0609,,0.1,30.244,positive,doi.org/10.1103/PhysRevA.18.2683 +271,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.042388798,0.0582,3.15,178.35,negative,See 2001TOR in ISBN: 9781420067989 +272,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.022402455,0.031,8.2,200.01,negative,doi.org/10.1016/j.fluid.2003.07.004 +45,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.125199984,0.147,0.71,93.98,negative,doi.org/10.1021/ma00107a011 +514,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.048267639,0.065,2.45,231.49,negative,doi.org/10.1016/S0378-3812(97)00157-X +135,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.2331,,0.1,132.35,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +136,7,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8420,1.24925816,0.045681592,0.0511,0.1,123,negative,doi.org/10.1016/0378-3812(93)85105-U +189,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.228571429,0.28,2.111,-1.705,positive,doi.org/10.1021/ma9517308 +515,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37000,1.06017192,0.165446698,0.21368,0.1,35.23,positive,doi.org/10.1021/ma60032a020 +516,19,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,297000,5.449541284,0.091259073,0.121,0.1,55.45,positive,See 1988SC2 in ISBN: 9781420067989 +46,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],11500,1.069767442,0.075900888,0.09,0.1,7.8,positive,doi.org/10.1063/1.1143329 +190,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.202531646,0.25,1.249,-2.02,positive,doi.org/10.1021/ma9517308 +191,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.176799578,0.2199,3.274,70.657,positive,doi.org/10.1021/ma9517308 +61,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.091732599,0.11,2.595,27.759,positive,doi.org/10.1021/ma9517308 +15,5,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,22920,1.070028011,0.012095612,0.0196,0.1,153.5,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +273,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.060586478,0.0826,8.989,217.44,negative,doi.org/10.1016/j.supflu.2005.08.004 +542,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.1249,,0.1,23.126,positive,doi.org/10.1103/PhysRevE.55.3159 +517,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.141965772,0.18487,20,21.721,positive,doi.org/10.1002/macp.1994.021950233 +81,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.097023214,0.1057,0.1,32.75,negative,doi.org/10.1021/ma011533a +27,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.117133094,0.157,0.77,30.09,positive,doi.org/10.1021/ma00107a011 +76,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.078823191,0.102,0.92,8.68,positive,doi.org/10.1021/ma00107a011 +192,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.133912138,0.1687,2.269,130.597,negative,doi.org/10.1021/ma9517308 +47,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.09653999,0.114,0.92,69.56,positive,doi.org/10.1021/ma00107a011 +518,19,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,297000,5.449541284,0.02875475,0.039,0.1,58.86,positive,See 1988SC2 in ISBN: 9781420067989 +274,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.005599565,0.0078,1.099,162.4,negative,doi.org/10.1016/j.supflu.2005.08.004 +519,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,6.67,33.93,positive,doi.org/10.1063/1.464440 +45,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],13200000,1.130136986,0.0103,,0.1,36.76,positive,doi.org/10.1039/B301190A +46,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],123000,1.060344828,0.103,,0.1,24.95,positive,doi.org/10.1039/B301190A +62,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,1.854,27.873,positive,doi.org/10.1021/ma9517308 +28,4,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20100,1.020304569,0.09009141,0.122,0.1,32.52,positive,doi.org/10.1021/je990141k +275,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.147562055,0.19463,7.649,212.303,negative,doi.org/10.1016/j.supflu.2005.08.004 +543,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.045214464,0.06,0.1,27.6,positive,doi.org/10.1002/macp.1965.020880115 +96,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.134578869,0.1731,0.33,45.47,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +149,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1503,0.1503,0.13,24.39,positive,doi.org/10.1006/jcht.1999.0607 +544,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0114,,0.1,30.22,positive,doi.org/10.1103/PhysRevA.18.2683 +276,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.043722494,0.06,4.8,164.4,negative,doi.org/10.1021/ie034302w +520,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.1549,,0.1,23.407,positive,doi.org/10.1063/1.479914 +277,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.062390359,0.085,7.2,237,negative,doi.org/10.1021/ie034302w +278,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.060811825,0.0829,5.3,179.98,negative,doi.org/10.1016/j.fluid.2003.07.004 +279,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.048847856,0.0669,5.394,187.37,negative,doi.org/10.1016/j.supflu.2005.08.004 +521,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.103004224,0.136,8.25,52,positive,doi.org/10.1016/S0378-3812(97)00302-6 +280,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.001720302,0.0024,5.948,202.41,negative,doi.org/10.1016/j.supflu.2005.08.004 +137,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.269,,0.1,133.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +281,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.042610985,0.0585,7.969,206.88,negative,doi.org/10.1016/j.supflu.2005.08.004 +545,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.086,,0.1,25.7,positive,doi.org/10.1039/B301190A +546,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0113,,0.1,21.856,positive,doi.org/10.1063/1.430349 +75,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.2589,,0.1,31.079,positive,doi.org/10.1063/1.472437 +522,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,32.925,47.81,positive,doi.org/10.1016/S0378-3812(97)00157-X +193,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.102211302,0.13,1.362,77.922,positive,doi.org/10.1021/ma9517308 +547,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0352,,0.1,25.687,positive,doi.org/10.1103/PhysRevE.55.3159 +194,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.143200418,0.1799,3.956,147.771,negative,doi.org/10.1021/ma9517308 +523,87,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,109000,1.058252427,0.1306,,0.1,49.236,positive,doi.org/10.1063/1.439127 +524,98,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.060790274,0.278,,0.1,32.544,positive,doi.org/10.1063/1.439127 +30,88,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,1300000,1.050080775,0.018227874,0.0255,0.1,14,positive,doi.org/10.1627/jpi1958.33.117 +77,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.155986574,0.197,0.4,12.45,positive,doi.org/10.1021/ma00107a011 +76,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.1743,,0.1,20.434,positive,doi.org/10.1063/1.472437 +138,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.471584892,0.501,0.1,266.1,positive,doi.org/10.1021/ma00015a024 +525,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.1068,,0.1,23.156,positive,doi.org/10.1063/1.479914 +526,19,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,297000,5.449541284,0.006435126,0.0088,0.1,54.83,positive,See 1988SC2 in ISBN: 9781420067989 +548,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.058201058,0.085252125,0.1116,0.1,224.67,negative,doi.org/10.1021/ma60032a020 +63,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.221355036,0.2581,0.575,158.408,negative,doi.org/10.1021/ma9517308 +82,9,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,88200,1.8,9.09E-05,0.0001,0.1,36.4,negative,doi.org/10.1295/polymj.34.383 +26,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.131491471,0.1237,0.61,38.66,positive,doi.org/10.1006/jcht.1999.0607 +139,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.3824,,0.1,142.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +20,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.230080583,0.27,1.03,2.79,positive,doi.org/10.1021/ma00107a011 +3,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],methylcyclopentane,96-37-7,CC1CCCC1,26900,1.059055118,0.142795134,0.179,1.51,29.75,positive,doi.org/10.1021/ma00107a011 +150,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2048,0.2048,1.56,6.17,positive,doi.org/10.1006/jcht.1999.0607 +97,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,3.75,116.04,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +527,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,200000,1.058201058,0.057193127,0.07677,0.1,54.095,positive,doi.org/10.1021/ma60032a020 +282,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.038986749,0.0536,6.7,190.02,negative,doi.org/10.1016/j.fluid.2003.07.004 +64,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.143286669,0.1699,3.906,181.186,negative,doi.org/10.1021/ma9517308 +38,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.237413105,0.259,2.41,95.42,negative,doi.org/10.1021/ma00107a011 +549,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.042919986,0.057,0.1,27.24,positive,See 1986KRU in ISBN: 9781420067989 +15,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.130772179,0.156,0.1,184.2,negative,doi.org/10.1016/0032-3861(95)91454-F +528,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.070164545,0.09374,0.1,23.454,positive,doi.org/10.1002/macp.1994.021950233 +550,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.183151821,0.23208,0.1,21.48,positive,See 1984GIL in ISBN: 9781420067989 +83,8,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,258000,2.15,0.003546712,0.0039,50.75,35.05,negative,doi.org/10.1021/ma011533a +75,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.093148089,0.0874,0.6,-4.22,positive,doi.org/10.1006/jcht.1999.0607 +27,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.131491471,0.1237,4.37,37.72,positive,doi.org/10.1006/jcht.1999.0607 +283,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.014915089,0.0207,5.2,190,negative,doi.org/10.1021/ie034302w +529,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,4.464,55.63,positive,doi.org/10.1016/S0378-3812(97)00157-X +151,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0457,0.0457,0.16,49.78,positive,doi.org/10.1006/jcht.1999.0607 +530,61,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,181000,1.058479532,0.1553,,0.1,52.057,positive,doi.org/10.1063/1.439127 +47,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.07,,0.1,30.02,positive,doi.org/10.1039/B301190A +531,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.05402428,0.0726,5.05,28.46,positive,doi.org/10.1016/S0378-3812(97)00302-6 +77,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.1552,,0.1,48.636,positive,doi.org/10.1063/1.472437 +551,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.120302606,0.15564,0.1,24,positive,See 1984GIL in ISBN: 9781420067989 +284,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.148019545,0.1952,5.1,200.06,negative,doi.org/10.1016/j.fluid.2003.07.004 +84,8,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,258000,2.15,0.003546712,0.0039,42.6,35.25,negative,doi.org/10.1021/ma011533a +16,8,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,18970,1.04002193,0.014337412,0.0232,0.1,155.1,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +140,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.2201,,0.1,117.6,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +552,93,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0168,,0.1,25.59,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +10,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,31200,1.2,0.11668788,0.1601,0.1,163.5,negative,doi.org/10.1016/0032-3861(95)91454-F +285,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.217026822,0.279,3.8,245,negative,doi.org/10.1021/ie034302w +286,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.003514777,0.0049,6.242,201.97,negative,doi.org/10.1016/j.supflu.2005.08.004 +287,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.076532282,0.1037,7.53,205.33,negative,See 2000BEH in ISBN: 9781420067989 +288,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.06615654,0.09,8.8,241,negative,doi.org/10.1021/ie034302w +141,9,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,151000,3.696450428,0.0041,,0.1,114.8,negative,See 2001FIS in ISBN: 9781420067989 +553,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,37000,1.06017192,0.188045285,0.2379,0.1,11.95,positive,doi.org/10.1021/ma60032a020 +532,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.159149407,0.206,11.05,30,positive,doi.org/10.1016/S0378-3812(97)00302-6 +5,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,anisole,100-66-3,COc1ccccc1,44500,1.508474576,0.409526971,0.402,0.1,66.6,positive,See 1998SCH in ISBN: 9781420067989 +65,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.143286669,0.1699,0.825,158.15,negative,doi.org/10.1021/ma9517308 +85,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.009099181,0.01,0.1,33.05,negative,doi.org/10.1016/S0022-2860(00)00559-7 +7,1,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,ethoxybenzene,103-73-1,CCOc1ccccc1,24500,2.289719626,0.140249461,0.14,0.1,46.8,positive,See 1998SCH in ISBN: 9781420067989 +78,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.2327,,0.1,19.702,positive,doi.org/10.1063/1.472437 +289,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.067892668,0.0923,3.21,173.02,negative,doi.org/10.1016/j.supflu.2005.08.004 +48,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.076,,0.1,29.95,positive,doi.org/10.1039/B301190A +78,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.085973967,0.111,1.56,48.07,positive,doi.org/10.1021/ma00107a011 +554,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.051197032,0.0678,0.1,26.08,positive,See 1984GIL in ISBN: 9781420067989 +533,83,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,46400,1.059360731,0.052,,0.1,38.67,positive,doi.org/10.1063/1.439127 +290,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.087451445,0.118,6.3,196.5,negative,doi.org/10.1021/ie034302w +2,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,61400,1.04957265,0.116324778,0.1399,0.1,-12.3,positive,doi.org/10.1016/0032-3861(95)91454-F +555,126,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,103000,1.009803922,0.2899,,0.1,14,positive,doi.org/10.1002/pol.1981.180190913 +556,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.023,,0.1,29.75,positive,doi.org/10.1039/B301190A +557,42,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.1046,,0.1,24.55,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +195,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.176799578,0.2199,4.847,181.273,negative,doi.org/10.1021/ma9517308 +152,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0307,0.0307,1.99,47.58,positive,doi.org/10.1006/jcht.1999.0607 +196,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,3.084,70.815,positive,doi.org/10.1021/ma9517308 +142,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0208,,0.1,141.35,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +48,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.09653999,0.114,1.22,105.62,negative,doi.org/10.1021/ma00107a011 +558,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.075140119,0.0987,0.1,26.85,positive,See 1986KRU in ISBN: 9781420067989 +26,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.084,,60,13.35,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +559,90,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.077250864,0.1014,0.1,24.2,positive,doi.org/10.1016/S0378-3812(99)00128-4 +49,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],2000000,1.299967501,0.005,,0.1,33.79,positive,doi.org/10.1039/B301190A +291,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.007183423,0.01,7.228,207.28,negative,doi.org/10.1016/j.supflu.2005.08.004 +143,8,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,100000,2,0.008898776,0.01,0.1,102.4,negative,doi.org/10.1021/ma00015a024 +534,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,11.57,21.32,positive,doi.org/10.1063/1.464440 +292,9,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,15500,1.076388889,0.045354449,0.0622,1.9,180.07,negative,doi.org/10.1016/j.fluid.2003.07.004 +560,26,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0082,,0.1,26.64,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +4,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,600000,1.099908341,0.111367972,0.1306,0.1,265.7,negative,doi.org/10.1016/0032-3861(95)91454-F +49,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],11500,1.069767442,0.136580782,0.16,0.1,11.01,positive,doi.org/10.1063/1.1143329 +535,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,25.606,49.3,positive,doi.org/10.1016/S0378-3812(97)00157-X +144,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0475,,0.1,134.65,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +536,107,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20200,1.057591623,0.2127,,0.1,25.623,positive,doi.org/10.1063/1.439127 +197,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,3.03,70.673,positive,doi.org/10.1021/ma9517308 +145,6,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,2530,1.171296296,0.057116,0.0638,0.1,210.7,positive,doi.org/10.1016/0378-3812(93)85105-U +537,98,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.060790274,0.0838,,0.1,35.692,positive,doi.org/10.1063/1.439127 +98,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.096178884,0.1253,2.18,139.69,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +21,5,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,10500,1.019417476,0.175925926,0.209,1.11,-37.9,positive,doi.org/10.1021/ma00107a011 +86,8,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,258000,2.15,0.003546712,0.0039,25.25,35.25,negative,doi.org/10.1021/ma011533a +198,104,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,13500,1.058823529,0.181642512,0.2256,1.098,36.06,positive,doi.org/10.1021/ma9517308 +199,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.046376812,0.06,2.223,172.387,negative,doi.org/10.1021/ma9517308 +293,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.112846412,0.1508,1.69,166.69,negative,See 2000BEH in ISBN: 9781420067989 +22,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.109425436,0.132,0.73,3.47,positive,doi.org/10.1021/ma00107a011 +561,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.03180481,0.0424,0.1,22.99,positive,See 1984GIL in ISBN: 9781420067989 +20,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,61400,1.04957265,0.195757994,0.23,0.1,213,negative,doi.org/10.1016/0032-3861(95)91454-F +538,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,19.42,20.52,positive,doi.org/10.1063/1.464440 +200,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.224203822,0.275,0.546,143.34,negative,doi.org/10.1021/ma9517308 +539,89,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37900,1.010666667,0.184156572,0.2363,0.1,36.54,positive,See 1996RON in ISBN: 9781420067989 +540,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.23818408,0.3,13.413,21.799,positive,doi.org/10.1002/macp.1994.021950233 +201,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.228571429,0.28,3.565,-2.612,positive,doi.org/10.1021/ma9517308 +202,49,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22000,1.030010768,0.16084021,0.201,0.32,85.4,positive,doi.org/10.1002/polb.1994.090321315 +203,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.168421053,0.21,3.78,-3.637,positive,doi.org/10.1021/ma9517308 +99,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,1.36,40.03,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +541,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.048267639,0.065,4.29,246.35,negative,doi.org/10.1016/S0378-3812(97)00157-X +542,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.115562594,0.1519,13.05,29.2,positive,doi.org/10.1016/S0378-3812(97)00302-6 +79,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.0577,,0.1,43.51,positive,doi.org/10.1063/1.472437 +153,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.0833,0.0833,1.38,6.46,positive,doi.org/10.1006/jcht.1999.0607 +562,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.0353,,0.1,23.521,positive,doi.org/10.1103/PhysRevE.55.3159 +294,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.094370769,0.127,4.3,180,negative,doi.org/10.1021/ie034302w +563,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,37000,1.06017192,0.082266198,0.1078,0.1,12.23,positive,doi.org/10.1021/ma60032a020 +295,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.042610985,0.0585,4.119,177.21,negative,doi.org/10.1016/j.supflu.2005.08.004 +28,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.122614126,0.164,1.67,29.83,positive,doi.org/10.1021/ma00107a011 +100,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.145931506,0.187,4.76,118.01,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +543,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.234042447,0.2952,35.5,18.4,positive,doi.org/10.1063/1.464440 +39,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.205461162,0.225,2.85,63.74,positive,doi.org/10.1021/ma00107a011 +101,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.053184277,0.0703,3.19,25.04,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +9,77,polystyrene,9003-53-6,*C(C*)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,1971000,1.260230179,0.083023497,0.0979,0.1,236.9,negative,doi.org/10.1016/0032-3861(95)91454-F +564,29,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,111000,1.050141911,0.095829745,0.125,0.1,21.29,positive,See 1986KRU in ISBN: 9781420067989 +204,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.084136448,0.1076,1.377,77.933,positive,doi.org/10.1021/ma9517308 +87,2,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,144000,2.057142857,0.003182831,0.0035,60.95,42.45,negative,doi.org/10.1021/ma011533a +205,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,2.665,147.823,negative,doi.org/10.1021/ma9517308 +76,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.148118448,0.1395,0.39,-3.53,positive,doi.org/10.1006/jcht.1999.0607 +206,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.193939394,0.24,2.319,-2.22,positive,doi.org/10.1021/ma9517308 +88,2,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,144000,2.057142857,0.003182831,0.0035,66.05,42.65,negative,doi.org/10.1021/ma011533a +207,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.211167513,0.26,1.901,-1.682,positive,doi.org/10.1021/ma9517308 +22,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,233000,1.059090909,0.059328053,0.071,0.1,-2.9,positive,doi.org/10.1021/ma00015a024 +31,118,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,98900,1.019587629,0.059414452,0.08175,0.1,2.3,positive,doi.org/10.1627/jpi1958.33.117 +544,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.033831286,0.0458,3.851,57.18,positive,doi.org/10.1016/S0378-3812(97)00157-X +208,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.102211302,0.13,4.804,64.029,positive,doi.org/10.1021/ma9517308 +4,1,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,ethanol,64-17-5,CCO,470000,1.690647482,0.056482364,0.075,62.5,38,positive,"See 1984SAN in ISBN: 9781420067989, doi.org/10.1002/apmc.1986.051390114" +565,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0274,,0.1,23.438,positive,doi.org/10.1063/1.430349 +146,10,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8000,1.6,0.08988764,0.1,0.1,282.5,positive,doi.org/10.1021/ma00015a024 +566,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0556,,0.1,23.83,positive,doi.org/10.1063/1.430349 +567,84,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0479,,0.1,220.7,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +568,119,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0779,,0.1,23.84,positive,"doi.org/10.1016/0032-3861(73)90005-0, doi.org/10.1002/pol.1973.180111121" +296,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.11613391,0.155,4.5,236,negative,doi.org/10.1021/ie034302w +154,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0861,0.0861,0.53,23.64,positive,doi.org/10.1006/jcht.1999.0607 +3,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-methylpentane,107-83-5,CCCC(C)C,1240,1.068965517,0.05145326,0.08,0.1,7.55,positive,doi.org/10.1016/S0378-3812(01)00548-9 +23,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,233000,1.059090909,0.008266828,0.01,0.1,136.1,negative,doi.org/10.1021/ma00015a024 +32,115,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,98900,1.019587629,0.079639847,0.1087,0.1,172.5,negative,doi.org/10.1002/pen.760330806 +545,70,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,400000,1.058201058,0.087560288,0.11625,0.1,58.743,positive,doi.org/10.1021/ma60032a020 +80,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.0464,,0.1,49.764,positive,doi.org/10.1063/1.472437 +546,98,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.060790274,0.2241,,0.1,34.78,positive,doi.org/10.1063/1.439127 +5,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,"2,2,4-trimethylpentane",540-84-1,CC(C)CC(C)(C)C,1240,1.068965517,0.096891627,0.14,0.1,-12.15,positive,doi.org/10.1016/S0378-3812(01)00548-9 +547,39,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,670000,1.098360656,0.013718816,0.01871,0.1,219.15,negative,doi.org/10.1021/ma60032a020 +548,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.17486215,0.2251,5.05,31.2,positive,doi.org/10.1016/S0378-3812(97)00302-6 +569,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,13200000,1.130136986,0.0097,,0.1,32.15,positive,doi.org/10.1039/B301190A +209,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.29917988,0.3591,3.952,-4.556,positive,doi.org/10.1021/ma9517308 +102,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.134578869,0.1731,2.74,35.84,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +297,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.067892668,0.0923,9.485,222.58,negative,doi.org/10.1016/j.supflu.2005.08.004 +570,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0778,,0.1,23.837,positive,doi.org/10.1063/1.430349 +571,29,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,111000,1.050141911,0.091084165,0.119,0.1,21.3,positive,See 1986KRU in ISBN: 9781420067989 +29,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.132854881,0.177,0.83,30.13,positive,doi.org/10.1021/ma00107a011 +549,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,4.83,56.94,positive,doi.org/10.1016/S0378-3812(97)00157-X +155,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.3145,0.3145,1.54,4.3,positive,doi.org/10.1006/jcht.1999.0607 +5,6,polyethylene,9002-88-4,*CC*,1-octene,111-66-0,CCCCCCC=C,105000,2.441860465,0.144977637,0.1791,3.3,271.65,negative,See 2001TOR in ISBN: 9781420067989 +572,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0581,,0.1,30.291,positive,doi.org/10.1103/PhysRevA.18.2683 +298,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.048847856,0.0669,7.244,202.06,negative,doi.org/10.1016/j.supflu.2005.08.004 +550,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.212489212,0.27,64.579,20.503,positive,doi.org/10.1002/macp.1994.021950233 +551,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.037801129,0.0511,9.5,53.76,positive,doi.org/10.1016/S0378-3812(97)00302-6 +156,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2867,0.2867,4.72,4.43,positive,doi.org/10.1006/jcht.1999.0607 +552,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.0993,,0.1,23.2,positive,doi.org/10.1063/1.446753 +157,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0929,0.0929,1.17,49.69,positive,doi.org/10.1006/jcht.1999.0607 +573,33,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2700000,1.099796334,0.047052647,0.0624,0.1,30.72,positive,doi.org/10.1021/ma60032a020 +50,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],123000,1.060344828,0.115,,0.1,24.89,positive,doi.org/10.1039/B301190A +79,45,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,24700,1.037815126,0.013620475,0.018,11.3,4.15,positive,doi.org/10.1039/B109405J +66,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.117493871,0.1401,2.763,28.594,positive,doi.org/10.1021/ma9517308 +574,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.058201058,0.102817467,0.1338,0.1,23.72,positive,doi.org/10.1021/ma60032a020 +6,3,polyethylene,9002-88-4,*CC*,cyclopentane,287-92-3,C1CCCC1,106000,5.273631841,0.049147883,0.06,7.45,228.5,negative,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +103,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.096178884,0.1253,4.05,141.1,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +575,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.04263725,0.05663,0.1,26.44,positive,See 1984GIL in ISBN: 9781420067989 +576,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.010349606,0.0139,0.1,27.25,positive,See 1986KRU in ISBN: 9781420067989 +158,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.0625,0.0625,4.75,3.13,positive,doi.org/10.1006/jcht.1999.0607 +81,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.344,,0.1,14.3,positive,doi.org/10.1063/1.472437 +25,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.1205,0.1205,4.54,66.2,positive,doi.org/10.1006/jcht.1999.0607 +27,52,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,90000,1.040462428,0.008216802,0.0099,0.1,3.4,positive,doi.org/10.1016/0032-3861(95)91454-F +33,103,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,354000,1.020172911,0.085858812,0.1169,0.1,164.8,negative,doi.org/10.1002/pen.760330806 +299,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.007183423,0.01,1.973,167.71,negative,doi.org/10.1016/j.supflu.2005.08.004 +3,17,polystyrene,9003-53-6,*C(C*)c1ccccc1,bisphenol-A diglycidyl ether,1675-54-3,CC(C)(c1ccc(OCC2CO2)cc1)c3ccc(OCC4CO4)cc3,86700,1.044578313,0.1101,,0.1,65.4,positive,doi.org/10.1002/macp.200300106 +553,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.097275917,0.1287,56.29,19.66,positive,doi.org/10.1063/1.464440 +577,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.047,,0.1,29.49,positive,doi.org/10.1039/B301190A +210,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,0.778,85.733,positive,doi.org/10.1021/ma9517308 +578,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0803,,0.1,26.02,positive,doi.org/10.1103/PhysRevE.55.3159 +554,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,8.4,51.2,positive,doi.org/10.1016/S0378-3812(97)00157-X +555,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,45.684,43.96,positive,doi.org/10.1016/S0378-3812(97)00157-X +556,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.2577,,0.1,22.31,positive,doi.org/10.1063/1.439127 +579,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,37000,1.06017192,0.034157793,0.0455,0.1,238.4,negative,doi.org/10.1021/ma60032a020 +51,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.022,,0.1,29.78,positive,doi.org/10.1039/B301190A +147,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.3094,,0.1,136.35,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +557,61,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,181000,1.058479532,0.0941,,0.1,53.778,positive,doi.org/10.1063/1.439127 +159,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1126,0.1126,0.23,24.12,positive,doi.org/10.1006/jcht.1999.0607 +89,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.036404777,0.0399,0.1,29.65,negative,doi.org/10.1016/S0022-2860(00)00559-7 +10,77,polystyrene,9003-53-6,*C(C*)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,1971000,1.260230179,0.061135775,0.0724,0.1,236.6,negative,doi.org/10.1016/0032-3861(95)91454-F +211,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.151620948,0.19,2.658,-3.212,positive,doi.org/10.1021/ma9517308 +50,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.111263273,0.131,1.13,72.68,positive,doi.org/10.1021/ma00107a011 +17,6,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,16370,1.109830508,0.028239101,0.0453,0.1,154.8,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +80,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,11500,1.069767442,0.069339333,0.09,0.1,-28,positive,doi.org/10.1063/1.1143329 +580,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,25000,1.059322034,0.122,,0.1,7.12,positive,doi.org/10.1039/B301190A +300,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.004305154,0.006,7.9,188,negative,doi.org/10.1021/ie034302w +301,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.026345536,0.0364,4,180.39,negative,doi.org/10.1016/j.fluid.2003.07.004 +104,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,2.59,35.97,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +302,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.003514777,0.0049,8.017,216.99,negative,doi.org/10.1016/j.supflu.2005.08.004 +40,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.126636377,0.14,3.07,90.35,negative,doi.org/10.1021/ma00107a011 +581,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.114804444,0.1488,0.1,20.1,positive,See 1986KRU in ISBN: 9781420067989 +26,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.0848,0.0848,2.57,66.92,positive,doi.org/10.1006/jcht.1999.0607 +67,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.143286669,0.1699,1.55,163.488,negative,doi.org/10.1021/ma9517308 +17,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,100000,1.060445387,0.088901,0.102,0.1,164.6,negative,doi.org/10.1021/ma00015a024 +77,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.127803169,0.1202,1.28,-3.66,positive,doi.org/10.1006/jcht.1999.0607 +52,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],123000,1.060344828,0.123,,0.1,24.76,positive,doi.org/10.1039/B301190A +16,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.024555659,0.03,0.1,-22.6,positive,doi.org/10.1016/0032-3861(95)91454-F +7,3,polyethylene,9002-88-4,*CC*,cyclopentane,287-92-3,C1CCCC1,106000,5.273631841,0.049147883,0.06,9.04,240.5,negative,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +558,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.114055986,0.15,74.395,21.053,positive,doi.org/10.1002/macp.1994.021950233 +303,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.045517759,0.06242,2.624,167.5,negative,doi.org/10.1016/j.supflu.2005.08.004 +160,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.0714,0.0714,4.17,4.22,positive,doi.org/10.1006/jcht.1999.0607 +105,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.109403402,0.1419,3.14,140,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +51,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.197860168,0.229,0.39,72.9,positive,doi.org/10.1021/ma00107a011 +82,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.1349,,0.1,49.341,positive,doi.org/10.1063/1.472437 +559,107,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20200,1.057591623,0.1977,,0.1,25.734,positive,doi.org/10.1063/1.439127 +582,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.107800339,0.14005,0.1,25.6,positive,See 1984GIL in ISBN: 9781420067989 +90,2,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,144000,2.057142857,0.003182831,0.0035,35.45,41.05,negative,doi.org/10.1021/ma011533a +212,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.176884422,0.22,3.235,138.946,negative,doi.org/10.1021/ma9517308 +304,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.016075286,0.0223,9.298,222.09,negative,doi.org/10.1016/j.supflu.2005.08.004 +583,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0234,,0.1,30.486,positive,doi.org/10.1103/PhysRevA.18.2683 +560,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.113176556,0.14889,80,21.239,positive,doi.org/10.1002/macp.1994.021950233 +91,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.006822834,0.0075,0.1,32.76,negative,doi.org/10.1016/S0022-2860(00)00559-7 +106,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.145931506,0.187,0.79,47.44,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +561,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.058586078,0.0786,43.44,19.17,positive,doi.org/10.1063/1.464440 +562,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.065916504,0.0882,10.05,28.37,positive,doi.org/10.1016/S0378-3812(97)00302-6 +563,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.058586078,0.0786,67.67,19.4,positive,doi.org/10.1063/1.464440 +28,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.086048994,0.0807,0.5,38.58,positive,doi.org/10.1006/jcht.1999.0607 +584,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.076,,0.1,25.93,positive,doi.org/10.1039/B301190A +21,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,61400,1.04957265,0.195757994,0.23,0.1,8.7,positive,doi.org/10.1016/0032-3861(95)91454-F +24,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,100000,1.060445387,0.128859181,0.152,0.1,-17.5,positive,doi.org/10.1021/ma00015a024 +585,74,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,101400,1.090322581,0.08163835,0.107,5.1,242.95,negative,doi.org/10.1016/S0896-8446(01)00144-9 +305,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.047765372,0.065445,3.399,172.64,negative,doi.org/10.1016/j.supflu.2005.08.004 +586,113,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,610000,1.077738516,0.007438245,0.01,0.1,28,positive,doi.org/10.1021/ma00015a024 +587,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0436,,0.1,23.772,positive,doi.org/10.1063/1.430349 +306,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.003514777,0.0049,2.322,172.35,negative,doi.org/10.1016/j.supflu.2005.08.004 +52,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.175485948,0.204,2.77,57.41,positive,doi.org/10.1021/ma00107a011 +307,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.032797521,0.0452,4.59,182.44,negative,doi.org/10.1016/j.supflu.2005.08.004 +308,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.009923852,0.0138,3.64,180.45,negative,See 2001TOR in ISBN: 9781420067989 +309,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.103032843,0.1382,3.25,183.05,negative,See 2001TOR in ISBN: 9781420067989 +564,39,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,670000,1.098360656,0.013718816,0.01871,0.1,60.66,positive,doi.org/10.1021/ma60032a020 +588,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.2096,,0.1,23.5,positive,doi.org/10.1103/PhysRevA.18.2683 +310,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.087451445,0.118,9.2,223,negative,doi.org/10.1021/ie034302w +311,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.036109458,0.0497,7.41,198.71,negative,See 2000BEH in ISBN: 9781420067989 +589,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.004,,0.1,24.11,positive,doi.org/10.1039/B301190A +23,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.1307942,0.157,1.3,3.5,positive,doi.org/10.1021/ma00107a011 +161,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.0519,0.0519,2.69,42.59,positive,doi.org/10.1006/jcht.1999.0607 +18,5,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,600000,1.099908341,0.00171858,0.002,0.1,154.5,negative,doi.org/10.1021/ma00015a024 +590,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.038,,0.1,29.71,positive,doi.org/10.1039/B301190A +591,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.17304469,0.22,0.1,24.4,positive,doi.org/10.1002/macp.1965.020880115 +592,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0857,,0.1,26.187,positive,doi.org/10.1103/PhysRevE.55.3159 +162,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0812,0.0812,1.38,49.88,positive,doi.org/10.1006/jcht.1999.0607 +163,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0645,0.0645,0.37,50.29,positive,doi.org/10.1006/jcht.1999.0607 +164,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1801,0.1801,0.37,6.39,positive,doi.org/10.1006/jcht.1999.0607 +28,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.128,,50,14.65,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +565,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,8.24,33.58,positive,doi.org/10.1063/1.464440 +593,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0881,,0.1,29.505,positive,doi.org/10.1103/PhysRevA.18.2683 +148,10,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8000,1.6,0.010680908,0.012,0.1,275.5,positive,doi.org/10.1021/ma00015a024 +92,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.329123433,0.3505,0.1,27.84,negative,doi.org/10.1016/S0022-2860(00)00559-7 +312,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.222104622,0.285,6.9,215,negative,doi.org/10.1021/ie034302w +149,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.2846,,0.1,134.65,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +81,108,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,8000,1.089918256,0.176928611,0.222,0.72,-19.96,positive,doi.org/10.1021/ma00107a011 +29,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.141282805,0.133,1.7,38.22,positive,doi.org/10.1006/jcht.1999.0607 +93,2,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,144000,2.057142857,0.027987201,0.0307,14.85,38.05,negative,doi.org/10.1021/ma011533a +107,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.13205856,0.17,0.2,47.49,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +34,115,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,98900,1.019587629,0.070969487,0.0972,0.1,172.7,negative,doi.org/10.1002/pen.760330806 +566,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.096806139,0.1281,3.05,30.73,positive,doi.org/10.1016/S0378-3812(97)00302-6 +53,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],13200000,1.130136986,0.015,,0.1,36.75,positive,doi.org/10.1039/B301190A +567,83,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,46400,1.059360731,0.0925,,0.1,39.426,positive,doi.org/10.1063/1.439127 +594,20,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0425,,0.1,25.7,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +595,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.003863089,0.0052,0.1,22,positive,doi.org/10.1002/macp.1965.020880115 +83,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.0757,,0.1,43.7,positive,doi.org/10.1063/1.472437 +596,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.14004914,0.18,0.1,25.4,positive,doi.org/10.1002/macp.1965.020880115 +568,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.17486215,0.2251,1.05,32.28,positive,doi.org/10.1016/S0378-3812(97)00302-6 +8,90,polystyrene,9003-53-6,*C(C*)c1ccccc1,methyl acetate,79-20-9,COC(=O)C,190000,1.038251366,0.009104414,0.0103,0.1,16.26,positive,doi.org/10.1016/S0378-3812(99)00128-4 +53,57,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],7800,1.181818182,0.06735151,0.08,0.1,6.03,positive,doi.org/10.1063/1.1143329 +569,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.033831286,0.0458,15.261,52.48,positive,doi.org/10.1016/S0378-3812(97)00157-X +570,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.074826302,0.0998,48.05,19.38,positive,doi.org/10.1063/1.464440 +213,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.159916002,0.1999,3.589,139.2,negative,doi.org/10.1021/ma9517308 +597,121,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,101400,1.090322581,0.087141082,0.114,6.1,249.3,negative,See 1999BUN in ISBN: 9781420067989 +571,61,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,181000,1.058479532,0.0309,,0.1,53.357,positive,doi.org/10.1063/1.439127 +6,6,polyethylene,9002-88-4,*CC*,1-octene,111-66-0,CCCCCCC=C,105000,2.441860465,0.071134297,0.0897,1.93,250.65,negative,See 2001TOR in ISBN: 9781420067989 +598,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.063236022,0.0834,0.1,27.04,positive,See 1986KRU in ISBN: 9781420067989 +7,2,poly(vinyl chloride),9002-86-2,*CC(*)Cl,phenetole,103-73-1,CCOc1ccccc1,37000,1.178343949,0.072234257,0.1,0.1,22.5,positive,doi.org/10.1002/macp.1985.021860409 +165,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.0337,0.0337,2.41,41.19,positive,doi.org/10.1006/jcht.1999.0607 +214,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.22839651,0.2798,1.004,139.589,negative,doi.org/10.1021/ma9517308 +599,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0545,,0.1,23.829,positive,doi.org/10.1063/1.430349 +572,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,12.26,21.25,positive,doi.org/10.1063/1.464440 +600,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.111686561,0.14491,0.1,24.2,positive,See 1984GIL in ISBN: 9781420067989 +573,87,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,109000,1.058252427,0.0582,,0.1,49.484,positive,doi.org/10.1063/1.439127 +150,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0502,,0.1,134.25,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +6,1,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,20000,2.5,0.293829579,0.3,0.1,36.5,negative,doi.org/10.1021/jp0574854 +574,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.212489212,0.27,5.306,23.268,positive,doi.org/10.1002/macp.1994.021950233 +575,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.048267639,0.065,2.12,228.97,negative,doi.org/10.1016/S0378-3812(97)00157-X +601,82,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0616,,0.1,25.6,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +166,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0812,0.0812,4.3,48.88,positive,doi.org/10.1006/jcht.1999.0607 +313,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.06088695,0.083,5.6,234.5,negative,doi.org/10.1021/ie034302w +314,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.007183423,0.01,5.428,192.5,negative,doi.org/10.1016/j.supflu.2005.08.004 +602,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0929,,0.1,23.79,positive,doi.org/10.1063/1.430349 +108,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,1.94,38.01,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +41,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.175610347,0.193,2.93,90.58,negative,doi.org/10.1021/ma00107a011 +167,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0622,0.0622,1.18,22.28,positive,doi.org/10.1006/jcht.1999.0607 +168,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1385,0.1385,0.38,6.81,positive,doi.org/10.1006/jcht.1999.0607 +576,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.1987,,0.1,23.367,positive,doi.org/10.1063/1.479914 +17,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.084629243,0.102,0.1,186.1,negative,doi.org/10.1016/0032-3861(95)91454-F +603,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.19943966,0.25138,0.1,22,positive,See 1984GIL in ISBN: 9781420067989 +54,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],123000,1.060344828,0.019,,0.1,23.38,positive,doi.org/10.1039/B301190A +604,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.005351659,0.0072,0.1,20,positive,doi.org/10.1002/macp.1965.020880115 +577,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.0602,,0.1,21.671,positive,doi.org/10.1063/1.446753 +94,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.47629025,0.5001,0.1,27.17,negative,doi.org/10.1016/S0022-2860(00)00559-7 +1,127,polystyrene,9003-53-6,*C(C*)c1ccccc1,diethyl malonate,105-53-3,CCOC(=O)CC(=O)OCC,107000,1.010387158,0.095106181,0.09469,0.1,7,positive,doi.org/10.1021/ma00175a031 +30,72,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,106300,1.059820538,0.115571327,0.155,1.63,52.81,positive,doi.org/10.1021/ma00107a011 +578,109,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,14000,1.059803179,0.073901935,0.0986,0.1,16.05,positive,doi.org/10.1016/j.eurpolymj.2003.09.027 +579,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.036526526,0.0494,6.05,27.07,positive,doi.org/10.1016/S0378-3812(97)00302-6 +36,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.024234764,0.035,11.17,130,negative,doi.org/10.1021/je0103162 +580,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.048116473,0.0648,9.75,53.22,positive,doi.org/10.1016/S0378-3812(97)00302-6 +2,128,polystyrene,9003-53-6,*C(C*)c1ccccc1,diethyl malonate,105-53-3,CCOC(=O)CC(=O)OCC,102000,1.02,0.097866962,0.09744,0.1,3.525,positive,doi.org/10.1021/ma00204a020 +29,6,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,32900,1.018575851,0.067336027,0.092,0.1,44.45,positive,doi.org/10.1021/je990141k +95,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.428813865,0.4523,0.1,27.08,negative,doi.org/10.1016/S0022-2860(00)00559-7 +581,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37000,1.06017192,0.068468364,0.09153,0.1,245.853,negative,doi.org/10.1021/ma60032a020 +82,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.127937264,0.163,0.7,12.81,positive,doi.org/10.1021/ma00107a011 +169,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1654,0.1654,2.39,23.89,positive,doi.org/10.1006/jcht.1999.0607 +582,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.0762,,0.1,21.785,positive,doi.org/10.1063/1.439127 +55,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],2000000,1.299967501,0.047,,0.1,34.02,positive,doi.org/10.1039/B301190A +18,9,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,7410,1.170616114,0.071370704,0.1115,0.1,160.6,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +3,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,"2,2-dimethylbutane",75-83-2,CCC(C)(C)C,1240,1.068965517,0.159573745,0.235,0.1,37.05,positive,doi.org/10.1016/S0378-3812(01)00548-9 +605,33,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2700000,1.099796334,0.014765169,0.0198,0.1,215.61,negative,doi.org/10.1021/ma60032a020 +583,70,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,400000,1.058201058,0.087560288,0.11625,0.1,222.575,negative,doi.org/10.1021/ma60032a020 +215,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.176884422,0.22,3.156,107.454,positive,doi.org/10.1021/ma9517308 +68,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.221355036,0.2581,3.694,181.214,negative,doi.org/10.1021/ma9517308 +216,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.176799578,0.2199,1.991,154.949,negative,doi.org/10.1021/ma9517308 +10,2,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,76500,1.100719424,0.00816395,0.01,0.1,-10.8,positive,doi.org/10.1016/0032-3861(95)91454-F +584,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,2.6,58.32,positive,doi.org/10.1016/S0378-3812(97)00157-X +11,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,600000,1.099908341,0.084920664,0.1001,0.1,239.7,negative,doi.org/10.1016/0032-3861(95)91454-F +585,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,29.499,47.33,positive,doi.org/10.1016/S0378-3812(97)00157-X +4,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,"2,2-dimethylbutane",75-83-2,CCC(C)(C)C,1240,1.068965517,0.133842029,0.2,0.1,37.25,positive,doi.org/10.1016/S0378-3812(01)00548-9 +606,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.082164155,0.10767,0.1,24.95,positive,See 1984GIL in ISBN: 9781420067989 +69,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.091732599,0.11,3.555,181.175,negative,doi.org/10.1021/ma9517308 +22,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.056954457,0.069,0.1,-22.8,positive,doi.org/10.1016/0032-3861(95)91454-F +607,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.130289346,0.168,0.1,27,positive,doi.org/10.1002/macp.1965.020880115 +608,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.089,,0.1,25.63,positive,doi.org/10.1039/B301190A +609,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,100000,1.060445387,0.036818971,0.049,0.1,20.3,positive,doi.org/10.1021/ma00015a024 +31,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.132854881,0.177,1.51,29.83,positive,doi.org/10.1021/ma00107a011 +610,30,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,600000,1.099908341,0.045214464,0.06,30,28.53,positive,doi.org/10.1007/BF01525017 +151,1,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,11615,1.110739218,0.3931,,0.1,136.45,negative,See 2001FIS in ISBN: 9781420067989 +23,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,61400,1.04957265,0.024583033,0.03,0.1,3.4,positive,doi.org/10.1016/0032-3861(95)91454-F +6,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-hexane,110-54-3,CCCCCC,1240,1.068965517,0.040489893,0.063,0.1,-9.95,positive,doi.org/10.1016/S0378-3812(01)00548-9 +611,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.062,,0.1,26.19,positive,doi.org/10.1039/B301190A +84,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.0294,,0.1,31.079,positive,doi.org/10.1063/1.472437 +586,107,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20200,1.057591623,0.315,,0.1,22.875,positive,doi.org/10.1063/1.439127 +70,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.117493871,0.1401,3.706,181.227,negative,doi.org/10.1021/ma9517308 +587,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.159149407,0.206,7.05,30.74,positive,doi.org/10.1016/S0378-3812(97)00302-6 +612,58,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,286000,2.2,0.036058137,0.048,0.1,25.2,positive,doi.org/10.1021/je0504865 +30,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.098758936,0.0927,4.6,37.62,positive,doi.org/10.1006/jcht.1999.0607 +217,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,1.179,146.734,negative,doi.org/10.1021/ma9517308 +218,104,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,13500,1.058823529,0.152122512,0.1906,1.459,35.819,positive,doi.org/10.1021/ma9517308 +315,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.009923852,0.0138,7.57,210.35,negative,See 2001TOR in ISBN: 9781420067989 +83,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.123853657,0.158,1.19,93.42,negative,doi.org/10.1021/ma00107a011 +613,90,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.130694742,0.1685,0.1,21.74,positive,doi.org/10.1016/S0378-3812(99)00128-4 +12,10,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,165000,1.2,0.076,,0.1,22.4,positive,See 1991LEE in ISBN: 9781420067989 +219,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.133912138,0.1687,4.405,84.966,positive,doi.org/10.1021/ma9517308 +6,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,anisole,100-66-3,COc1ccccc1,44500,1.508474576,0.602499779,0.595,0.1,40.8,positive,See 1998SCH in ISBN: 9781420067989 +588,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,5.48,52.19,positive,doi.org/10.1016/S0378-3812(97)00157-X +8,3,polyethylene,9002-88-4,*CC*,cyclopentane,287-92-3,C1CCCC1,106000,5.273631841,0.049147883,0.06,6.23,219.8,negative,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +316,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.065251657,0.0888,4.9,190.22,negative,doi.org/10.1016/j.fluid.2003.07.004 +42,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.168180942,0.185,4.04,56.81,positive,doi.org/10.1021/ma00107a011 +317,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.000358203,0.0005,6.806,216.98,negative,doi.org/10.1016/j.supflu.2005.08.004 +589,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.1366,,0.1,23.382,positive,doi.org/10.1063/1.479914 +220,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.084136448,0.1076,2.804,163.885,negative,doi.org/10.1021/ma9517308 +37,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.027038924,0.039,13.65,150,negative,doi.org/10.1021/je0103162 +24,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.197074196,0.233,1.41,3.94,positive,doi.org/10.1021/ma00107a011 +5,32,polystyrene,9003-53-6,*C(C*)c1ccccc1,diisodecyl phthalate,26761-40-0,CC(C)CCCCCCCOC(=O)c1ccccc1C(=O)OCCCCCCCC(C)C,235000,2.100089366,0.380409127,0.4,0.1,34.85,positive,See 2001HE1 in ISBN: 9036516463 +96,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.038025867,0.04167,40,35.17,negative,doi.org/10.1016/S0378-3812(01)00469-1 +152,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.027650797,0.031,0.1,121.7,negative,doi.org/10.1021/ma00015a024 +614,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.01577741,0.02115,0.1,21,positive,See 1984GIL in ISBN: 9781420067989 +54,57,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],7800,1.181818182,0.110394796,0.13,0.1,12.92,positive,doi.org/10.1063/1.1143329 +38,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.056199822,0.08,11.31,170,negative,doi.org/10.1021/je0103162 +590,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,1.933,58.48,positive,doi.org/10.1016/S0378-3812(97)00157-X +109,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.042437227,0.0563,1.6,-2.2,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +43,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.193308488,0.212,2.82,90.1,negative,doi.org/10.1021/ma00107a011 +615,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.099796013,0.13,0.1,26.5,positive,doi.org/10.1002/macp.1965.020880115 +616,26,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.1207,,0.1,24.98,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +170,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0727,0.0727,3.67,22.6,positive,doi.org/10.1006/jcht.1999.0607 +318,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.187363134,0.2435,1.644,172.329,negative,doi.org/10.1016/j.supflu.2005.08.004 +78,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.075015907,0.0703,4.82,13.85,positive,doi.org/10.1006/jcht.1999.0607 +84,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.085973967,0.111,0.47,56.1,positive,doi.org/10.1021/ma00107a011 +319,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.043722494,0.06,6.3,175,negative,doi.org/10.1021/ie034302w +320,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.187363134,0.2435,7.499,216.737,negative,doi.org/10.1016/j.supflu.2005.08.004 +617,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.096622152,0.126,0.1,26.85,positive,doi.org/10.1002/macp.1965.020880115 +591,98,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.060790274,0.1594,,0.1,35.814,positive,doi.org/10.1063/1.439127 +618,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.016715303,0.0224,0.1,26.73,positive,See 1986KRU in ISBN: 9781420067989 +592,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.139090989,0.18131,0.1,24.472,positive,doi.org/10.1002/macp.1994.021950233 +619,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.09251415,0.12081,0.1,24.65,positive,See 1986KRU in ISBN: 9781420067989 +620,121,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,101400,1.090322581,0.087141082,0.114,2.06,223.2,negative,See 1999BUN in ISBN: 9781420067989 +593,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,14.315,50.67,positive,doi.org/10.1016/S0378-3812(97)00157-X +32,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.141583369,0.188,1.45,29.75,positive,doi.org/10.1021/ma00107a011 +621,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.169712667,0.216,0.1,25,positive,doi.org/10.1002/macp.1965.020880115 +11,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,31200,1.2,0.106612808,0.1469,0.1,163.1,negative,doi.org/10.1016/0032-3861(95)91454-F +221,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.176799578,0.2199,3.859,172.332,negative,doi.org/10.1021/ma9517308 +622,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0412,,0.1,30.485,positive,doi.org/10.1103/PhysRevA.18.2683 +594,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,200000,1.058201058,0.076121452,0.10148,0.1,227.088,negative,doi.org/10.1021/ma60032a020 +8,1,poly(vinyl chloride),9002-86-2,*CC(*)Cl,phenetole,103-73-1,CCOc1ccccc1,75000,1.159196291,0.057433034,0.08,0.1,44.5,positive,doi.org/10.1002/macp.1985.021860409 +321,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.036109458,0.0497,5.23,182.01,negative,See 2000BEH in ISBN: 9781420067989 +19,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,233000,1.059090909,0.060732561,0.07,0.1,152.7,negative,doi.org/10.1021/ma00015a024 +623,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.076156027,0.1,0.1,26.9,positive,doi.org/10.1002/macp.1965.020880115 +85,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.212733185,0.264,0.46,11.24,positive,doi.org/10.1021/ma00107a011 +171,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0535,0.0535,2.21,49.39,positive,doi.org/10.1006/jcht.1999.0607 +31,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.184397996,0.1741,2.6,37.11,positive,doi.org/10.1006/jcht.1999.0607 +55,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.085339266,0.101,0.81,63.26,positive,doi.org/10.1021/ma00107a011 +624,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.086070377,0.11264,0.1,24.59,positive,See 1984GIL in ISBN: 9781420067989 +110,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.053184277,0.0703,0.8,31.16,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +24,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.073739536,0.089,0.1,-22.1,positive,doi.org/10.1016/0032-3861(95)91454-F +625,42,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0118,,0.1,26.29,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +35,115,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,98900,1.019587629,0.145628589,0.1937,0.1,174.3,negative,doi.org/10.1002/pen.760330806 +14,67,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,4215,1.069796954,0.114322531,0.1252,0.1,46.24,positive,doi.org/10.1021/je0504865 +7,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,anisole,100-66-3,COc1ccccc1,44500,1.508474576,0.225403712,0.22,0.1,80.1,positive,See 1998SCH in ISBN: 9781420067989 +595,33,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,2700000,1.099796334,0.026000438,0.0353,0.1,214.99,negative,doi.org/10.1021/ma60032a020 +29,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.042,,80,12.55,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +97,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.058540707,0.06402,0.1,33.1,negative,doi.org/10.1016/S0378-3812(01)00469-1 +153,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0157,,0.1,144.75,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +626,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.101671773,0.13236,0.1,24.33,positive,See 1986KRU in ISBN: 9781420067989 +596,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,61.78,19.66,positive,doi.org/10.1063/1.464440 +597,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.210919413,0.26815,50,20.406,positive,doi.org/10.1002/macp.1994.021950233 +627,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0515,,0.1,23.82,positive,doi.org/10.1063/1.430349 +598,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,1.964,56.9,positive,doi.org/10.1016/S0378-3812(97)00157-X +2,1,poly(vinyl acetate),9003-20-7,*CC(*)OC(C)=O,cyclopentene,142-29-0,C1CC=CC1,124800,2.368121442,0.039861292,0.06,9.72,196.4,positive,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +222,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.224203822,0.275,2.033,72.45,positive,doi.org/10.1021/ma9517308 +98,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.137314533,0.149,0.1,28.25,negative,doi.org/10.1016/S0022-2860(00)00559-7 +25,5,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,600000,1.099908341,0.008266828,0.01,0.1,121.4,negative,doi.org/10.1021/ma00015a024 +79,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.127803169,0.1202,0.39,-3.58,positive,doi.org/10.1006/jcht.1999.0607 +599,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.05402428,0.0726,4.05,28.67,positive,doi.org/10.1016/S0378-3812(97)00302-6 +26,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,100000,1.060445387,0.084846672,0.101,0.1,-18.5,positive,doi.org/10.1021/ma00015a024 +600,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,9.267,52.35,positive,doi.org/10.1016/S0378-3812(97)00157-X +322,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.051604672,0.0706,8.469,212.21,negative,doi.org/10.1016/j.supflu.2005.08.004 +628,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.062538772,0.0825,0.1,25.41,positive,See 1986KRU in ISBN: 9781420067989 +601,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,6.42,54.24,positive,doi.org/10.1016/S0378-3812(97)00157-X +30,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.128,,10,12.35,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +323,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.025687508,0.0355,6.7,234,negative,doi.org/10.1021/ie034302w +3,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,"2,3-dimethylbutane",79-29-8,CC(C)C(C)C,1240,1.068965517,0.166039629,0.24,0.1,10.65,positive,doi.org/10.1016/S0378-3812(01)00548-9 +629,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0451,,0.1,23.787,positive,doi.org/10.1063/1.430349 +85,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.0209,,0.1,48.134,positive,doi.org/10.1063/1.472437 +30,7,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,75600,1.05,0.00750451,0.0105,0.1,47.85,positive,doi.org/10.1021/je990141k +6,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-pentane,109-66-0,CCCCC,1240,1.068965517,0.202997275,0.298,0.1,12.35,positive,doi.org/10.1016/S0378-3812(01)00548-9 +602,95,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17300,1.061349693,0.0453,,0.1,19.715,positive,doi.org/10.1063/1.439127 +223,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.193939394,0.24,3.623,-3.122,positive,doi.org/10.1021/ma9517308 +630,129,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,51000,1.040816327,0.112559554,0.146,0.1,15.7,positive,"doi.org/10.1002/pol.1971.160090902, doi.org/10.1002/polc.5070390106" +631,20,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0164,,0.1,25.19,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +632,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.036484155,0.04856,0.1,20.6,positive,See 1986KRU in ISBN: 9781420067989 +12,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,61400,1.04957265,0.060485219,0.085,0.1,15.8,positive,doi.org/10.1016/0032-3861(95)91454-F +633,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.2083,,0.1,23.74,positive,doi.org/10.1103/PhysRevA.18.2683 +634,90,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.004830485,0.0065,0.1,20.3,positive,doi.org/10.1016/S0378-3812(99)00128-4 +324,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.003514777,0.0049,6.867,206.93,negative,doi.org/10.1016/j.supflu.2005.08.004 +86,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.123853657,0.158,0.98,58.99,positive,doi.org/10.1021/ma00107a011 +325,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.050411811,0.069,7.6,200,negative,doi.org/10.1021/ie034302w +603,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.096806139,0.1281,1.05,31.29,positive,doi.org/10.1016/S0378-3812(97)00302-6 +635,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.148353928,0.19015,0.1,22.52,positive,See 1984GIL in ISBN: 9781420067989 +326,9,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,15500,1.076388889,0.045354449,0.0622,4.7,199.95,negative,doi.org/10.1016/j.fluid.2003.07.004 +636,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1515,,0.1,22.743,positive,doi.org/10.1063/1.430349 +637,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1118,,0.1,23.613,positive,doi.org/10.1063/1.430349 +86,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.2159,,0.1,20.035,positive,doi.org/10.1063/1.472437 +111,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.075072918,0.0985,3.18,55.5,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +224,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.176799578,0.2199,1.424,146.542,negative,doi.org/10.1021/ma9517308 +112,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.134578869,0.1731,4.19,31.98,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +13,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,31200,1.2,0.046685403,0.066,0.1,164.1,negative,doi.org/10.1016/0032-3861(95)91454-F +7,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,2-propanone,67-64-1,CC(=O)C,44500,1.508474576,0.08347404,0.1,0.1,54.9,positive,See 1998SCH in ISBN: 9781420067989 +56,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.125199984,0.147,0.84,72.29,positive,doi.org/10.1021/ma00107a011 +87,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,11500,1.069767442,0.085177825,0.11,0.1,-26.41,positive,doi.org/10.1063/1.1143329 +604,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,2.392,56.32,positive,doi.org/10.1016/S0378-3812(97)00157-X +154,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.044692737,0.05,0.1,120.2,negative,doi.org/10.1021/ma00015a024 +638,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.102180862,0.133,0.1,25.77,positive,See 1986KRU in ISBN: 9781420067989 +327,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.114880564,0.1534,8.028,211.968,negative,doi.org/10.1016/j.supflu.2005.08.004 +328,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.048847856,0.0669,9.014,216.85,negative,doi.org/10.1016/j.supflu.2005.08.004 +44,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.197978407,0.217,2.79,90.39,negative,doi.org/10.1021/ma00107a011 +18,7,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,992000,1.05982906,0.124710115,0.1475,0.1,77.03,positive,doi.org/10.1021/je0504865 +605,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.141965772,0.18487,70,20.895,positive,doi.org/10.1002/macp.1994.021950233 +80,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.075015907,0.0703,1.45,14.41,positive,doi.org/10.1006/jcht.1999.0607 +172,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1126,0.1126,5.25,23.33,positive,doi.org/10.1006/jcht.1999.0607 +639,76,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.113922121,0.1477,0.1,23.6,positive,See 1996RON in ISBN: 9781420067989 +225,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.224203822,0.275,1.765,154.962,negative,doi.org/10.1021/ma9517308 +606,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.097275917,0.1287,10.98,21.43,positive,doi.org/10.1063/1.464440 +27,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.1844,0.1844,3.56,65.6,positive,doi.org/10.1006/jcht.1999.0607 +226,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.246153846,0.3,4.417,-3.684,positive,doi.org/10.1021/ma9517308 +19,3,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,11570,1.150099404,0.03309262,0.049,0.1,173,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +607,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,97200,1.05997819,0.129018865,0.16878,0.1,47.936,positive,doi.org/10.1021/ma60032a020 +87,2,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,596000,1.040139616,0.0667,,0.1,60.214,positive,doi.org/10.1063/1.472437 +640,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0197,,0.1,22.967,positive,doi.org/10.1063/1.430349 +173,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1611,0.1611,2.72,6.24,positive,doi.org/10.1006/jcht.1999.0607 +641,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.029273916,0.03906,0.1,27.28,positive,See 1984GIL in ISBN: 9781420067989 +3,1,polyisobutylene,9003-27-4,*CC(*)(C)C,n-heptane,142-82-5,CCCCCCC,1000000,1.666666667,0.018867925,0.025,8.3,220,negative,doi.org/10.1021/je010171z +642,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0972,,0.1,29.15,positive,doi.org/10.1103/PhysRevA.18.2683 +174,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1393,0.1393,2.41,23.83,positive,doi.org/10.1006/jcht.1999.0607 +15,67,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,4215,1.069796954,0.030313425,0.0335,0.1,37.27,positive,doi.org/10.1021/je0504865 +643,20,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0325,,0.1,223.6,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +644,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.072252515,0.095,0.1,26.94,positive,See 1986KRU in ISBN: 9781420067989 +645,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.081214703,0.10646,0.1,20.37,positive,See 1986KRU in ISBN: 9781420067989 +88,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.114095631,0.146,1.55,52.72,positive,doi.org/10.1021/ma00107a011 +646,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.137440335,0.1768,0.1,19.91,positive,See 1986KRU in ISBN: 9781420067989 +329,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.032797521,0.0452,5.92,192.41,negative,doi.org/10.1016/j.supflu.2005.08.004 +155,1,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,11615,1.110739218,0.3635,,0.1,134.5,negative,See 2001FIS in ISBN: 9781420067989 +647,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.035449757,0.0472,0.1,20.49,positive,See 1984GIL in ISBN: 9781420067989 +648,29,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,111000,1.050141911,0.030743419,0.041,0.1,20.63,positive,See 1986KRU in ISBN: 9781420067989 +99,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.038025867,0.04167,20,34.97,negative,doi.org/10.1016/S0378-3812(01)00469-1 +100,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.091928292,0.1002,0.1,30.88,negative,doi.org/10.1016/S0022-2860(00)00559-7 +608,102,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.151967736,0.1972,45.11,10.58,positive,doi.org/10.1063/1.464440 +227,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.151620948,0.19,1.979,-2.597,positive,doi.org/10.1021/ma9517308 +101,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.038025867,0.04167,2.5,32.55,negative,doi.org/10.1016/S0378-3812(01)00469-1 +609,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.092600847,0.12272,0.1,24.14,positive,doi.org/10.1002/macp.1994.021950233 +89,100,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,7800,1.18993135,0.244060475,0.3,0.1,-20.88,positive,doi.org/10.1063/1.1143329 +228,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.224203822,0.275,0.985,77.73,positive,doi.org/10.1021/ma9517308 +6,46,polystyrene,9003-53-6,*C(C*)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,233000,1.060054595,0.067567568,0.08,0.1,224.7,negative,doi.org/10.1016/0032-3861(95)91454-F +11,2,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,76500,1.100719424,0.00816395,0.01,0.1,253.1,negative,doi.org/10.1016/0032-3861(95)91454-F +175,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2867,0.2867,6.04,4.32,positive,doi.org/10.1006/jcht.1999.0607 +649,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0035,,0.1,26.35,positive,doi.org/10.1103/PhysRevE.55.3159 +90,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.085973967,0.111,0.74,53.58,positive,doi.org/10.1021/ma00107a011 +25,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.012257291,0.015,0.1,248.1,negative,doi.org/10.1016/0032-3861(95)91454-F +71,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.169547249,0.1999,3.104,28.065,positive,doi.org/10.1021/ma9517308 +330,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.005455676,0.0076,5.3,179.99,negative,doi.org/10.1016/j.fluid.2003.07.004 +176,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1126,0.1126,4.17,23.5,positive,doi.org/10.1006/jcht.1999.0607 +650,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.051812016,0.0686,0.1,20,positive,See 1986KRU in ISBN: 9781420067989 +651,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0271,,0.1,25.081,positive,doi.org/10.1103/PhysRevE.55.3159 +36,103,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,354000,1.020172911,0.023351605,0.0326,0.1,163.9,negative,doi.org/10.1002/pen.760330806 +652,20,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0939,,0.1,225.06,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +7,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-pentane,109-66-0,CCCCC,1240,1.068965517,0.140419948,0.214,0.1,10.65,positive,doi.org/10.1016/S0378-3812(01)00548-9 +102,2,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,144000,2.057142857,0.027987201,0.0307,2.05,37.05,negative,doi.org/10.1021/ma011533a +653,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.103,,0.1,23.717,positive,doi.org/10.1063/1.430349 +610,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.090479565,0.12,3.43,55.41,positive,doi.org/10.1016/S0378-3812(97)00157-X +4,1,polyisobutylene,9003-27-4,*CC(*)(C)C,n-heptane,142-82-5,CCCCCCC,1000000,1.666666667,0.018867925,0.025,6.7,210,negative,doi.org/10.1021/je010171z +654,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,37000,1.06017192,0.10265829,0.1336,0.1,237.6,negative,doi.org/10.1021/ma60032a020 +177,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1977,0.1977,2.57,23.5,positive,doi.org/10.1006/jcht.1999.0607 +103,2,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,144000,2.057142857,0.027987201,0.0307,53.85,40.25,negative,doi.org/10.1021/ma011533a +57,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.104323873,0.123,1.11,71.38,positive,doi.org/10.1021/ma00107a011 +113,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.085273484,0.1115,4.27,140.08,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +331,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.01259787,0.0175,12.5,223.5,negative,doi.org/10.1021/ie034302w +332,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.012959657,0.018,5.4,225,negative,doi.org/10.1021/ie034302w +229,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.228571429,0.28,0.742,-0.366,positive,doi.org/10.1021/ma9517308 +611,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,11.574,52.73,positive,doi.org/10.1016/S0378-3812(97)00157-X +32,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.161141072,0.1519,2.28,37.88,positive,doi.org/10.1006/jcht.1999.0607 +178,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.3145,0.3145,2.46,4.22,positive,doi.org/10.1006/jcht.1999.0607 +28,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.1326,0.1326,1.63,67.1,positive,doi.org/10.1006/jcht.1999.0607 +655,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.033929918,0.0452,0.1,19.52,positive,See 1986KRU in ISBN: 9781420067989 +156,3,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,4490,1.130982368,0.425585695,0.4546,0.1,158.7,negative,doi.org/10.1016/0378-3812(93)85105-U +27,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,100000,1.060445387,0.004129799,0.005,0.1,165.5,negative,doi.org/10.1021/ma00015a024 +656,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,100000,1.060445387,0.110958124,0.144,0.1,20.5,positive,doi.org/10.1021/ma00015a024 +230,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.168421053,0.21,1.532,-2.19,positive,doi.org/10.1021/ma9517308 +72,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,1.075,30.261,positive,doi.org/10.1021/ma9517308 +231,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.202445508,0.2499,2.699,70.638,positive,doi.org/10.1021/ma9517308 +612,107,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20200,1.057591623,0.2395,,0.1,25.303,positive,doi.org/10.1063/1.439127 +613,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.068146248,0.09111,50,19.955,positive,doi.org/10.1002/macp.1994.021950233 +58,57,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],7800,1.181818182,0.17192429,0.2,0.1,13.51,positive,doi.org/10.1063/1.1143329 +28,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,233000,1.059090909,0.127988446,0.151,0.1,133.3,negative,doi.org/10.1021/ma00015a024 +333,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.112846412,0.1508,9.69,230.19,negative,See 2000BEH in ISBN: 9781420067989 +104,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.002273244,0.0025,0.1,32.94,negative,doi.org/10.1016/S0022-2860(00)00559-7 +26,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.117977995,0.141,0.1,228.4,negative,doi.org/10.1016/0032-3861(95)91454-F +334,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.032797521,0.0452,3.9,177.47,negative,doi.org/10.1016/j.supflu.2005.08.004 +56,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],25000,1.059322034,0.07,,0.1,9.92,positive,doi.org/10.1039/B301190A +29,5,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,600000,1.099908341,0.004129799,0.005,0.1,-2.7,positive,doi.org/10.1021/ma00015a024 +614,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.090479565,0.12,1.48,56.61,positive,doi.org/10.1016/S0378-3812(97)00157-X +657,70,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.058201058,0.061919272,0.0817,0.1,27.09,positive,doi.org/10.1021/ma60032a020 +658,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.040667263,0.05405,0.1,23.52,positive,See 1984GIL in ISBN: 9781420067989 +88,2,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,596000,1.040139616,0.0121,,0.1,59.47,positive,doi.org/10.1063/1.472437 +615,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.234042447,0.2952,25.6,18.8,positive,doi.org/10.1063/1.464440 +31,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.042,,30,8.35,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +335,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.182001135,0.237,4.7,194.5,negative,doi.org/10.1021/ie034302w +659,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0515,,0.1,23.818,positive,doi.org/10.1063/1.430349 +19,3,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,280000,1.060606061,0.01139175,0.0138,0.1,75.87,positive,doi.org/10.1021/je0504865 +12,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,600000,1.099908341,0.0589146,0.0698,0.1,239.5,negative,doi.org/10.1016/0032-3861(95)91454-F +91,53,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,16600,1.050632911,0.141900377,0.18,25.5,-0.15,positive,doi.org/10.1039/B109405J +39,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.078031753,0.11,4.27,130,negative,doi.org/10.1021/je0103162 +616,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.13972843,0.1821,1.05,32.3,positive,doi.org/10.1016/S0378-3812(97)00302-6 +114,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.053184277,0.0703,0.4,32.32,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +16,2,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,78800,1.119318182,0.110810858,0.1214,0.1,78.8,positive,doi.org/10.1021/je0504865 +179,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.0999,0.0999,5.37,6.24,positive,doi.org/10.1006/jcht.1999.0607 +232,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.202445508,0.2499,1.281,77.656,positive,doi.org/10.1021/ma9517308 +660,110,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,45300,1.006666667,0.149,,0.1,14.14,positive,doi.org/10.1002/pol.1981.180190913 +661,30,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,600000,1.099908341,0.010648539,0.0143,0.1,27.74,positive,doi.org/10.1007/BF01525017 +92,53,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,16600,1.050632911,0.141900377,0.18,3.25,24.85,positive,doi.org/10.1039/B109405J +105,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.058522312,0.064,0.1,33.05,negative,doi.org/10.1021/ma011533a +617,81,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,719000,1.060471976,0.1076,,0.1,59.825,positive,doi.org/10.1063/1.439127 +662,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.060626909,0.08003,0.1,25.41,positive,See 1986KRU in ISBN: 9781420067989 +157,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0583,,0.1,133.45,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +618,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,7.368,55.51,positive,doi.org/10.1016/S0378-3812(97)00157-X +158,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0706,,0.1,132.55,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +663,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0879,,0.1,26.167,positive,doi.org/10.1103/PhysRevE.55.3159 +115,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.13205856,0.17,4.48,117.05,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +664,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.064,,0.1,21.41,positive,doi.org/10.1039/B301190A +665,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.0309,,0.1,23.44,positive,doi.org/10.1103/PhysRevE.55.3159 +666,55,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,100000,1.063829787,0.003714317,0.005,0.1,238.8,negative,doi.org/10.1002/app.1993.070470707 +159,11,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,3350,1.595238095,0.043793989,0.049,0.1,157.6,negative,doi.org/10.1021/ma00015a024 +619,19,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,297000,5.449541284,0.112471825,0.148,0.1,54.19,positive,See 1988SC2 in ISBN: 9781420067989 +180,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0727,0.0727,2.33,22.8,positive,doi.org/10.1006/jcht.1999.0607 +620,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,69.261,43.69,positive,doi.org/10.1016/S0378-3812(97)00157-X +233,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.143200418,0.1799,4.924,92.846,positive,doi.org/10.1021/ma9517308 +336,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.048847856,0.0669,9.589,221.85,negative,doi.org/10.1016/j.supflu.2005.08.004 +31,4,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20100,1.020304569,0.193587208,0.252,0.1,32.29,positive,doi.org/10.1021/je990141k +621,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.1822,,0.1,23.4,positive,doi.org/10.1063/1.479914 +622,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,68.84,19.8,positive,doi.org/10.1063/1.464440 +37,92,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,184000,1.069767442,0.029710025,0.04137,0.1,5.4,positive,doi.org/10.1627/jpi1958.33.117 +9,90,polystyrene,9003-53-6,*C(C*)c1ccccc1,methyl acetate,79-20-9,COC(=O)C,190000,1.038251366,0.032629805,0.0368,0.1,26.93,positive,doi.org/10.1016/S0378-3812(99)00128-4 +623,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.34,,0.1,20.341,positive,doi.org/10.1063/1.446753 +89,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.1853,,0.1,20.401,positive,doi.org/10.1063/1.472437 +337,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.050411811,0.069,2.2,163,negative,doi.org/10.1021/ie034302w +338,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.044167367,0.0606,6.094,192.3,negative,doi.org/10.1016/j.supflu.2005.08.004 +57,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],2000000,1.299967501,0.049,,0.1,33.92,positive,doi.org/10.1039/B301190A +339,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.076532282,0.1037,4.21,180.48,negative,See 2000BEH in ISBN: 9781420067989 +667,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0226,,0.1,23.173,positive,doi.org/10.1063/1.430349 +624,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.074826302,0.0998,77.57,19.98,positive,doi.org/10.1063/1.464440 +73,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,0.672,158.551,negative,doi.org/10.1021/ma9517308 +59,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.085339266,0.101,0.92,106,negative,doi.org/10.1021/ma00107a011 +4,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],methylcyclopentane,96-37-7,CC1CCCC1,26900,1.059055118,0.142795134,0.179,2.52,29.33,positive,doi.org/10.1021/ma00107a011 +668,75,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,320000,2.5,0.020924548,0.028,0.1,26,positive,doi.org/10.1021/ma00040a033 +669,36,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,90000,1.040462428,0.004458333,0.006,0.1,14.43,positive,doi.org/10.1016/S0378-3812(99)00128-4 +160,7,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8420,1.24925816,0.021569108,0.0242,0.1,280.2,positive,doi.org/10.1016/0378-3812(93)85105-U +670,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0796,,0.1,29.75,positive,doi.org/10.1103/PhysRevA.18.2683 +81,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.239830986,0.2273,4.08,13.04,positive,doi.org/10.1006/jcht.1999.0607 +116,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.109403402,0.1419,0.22,14.04,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +181,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1503,0.1503,1.26,24.2,positive,doi.org/10.1006/jcht.1999.0607 +625,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.082475925,0.1097,9.05,29.1,positive,doi.org/10.1016/S0378-3812(97)00302-6 +161,6,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,2530,1.171296296,0.057116,0.0638,0.1,170.5,negative,doi.org/10.1016/0378-3812(93)85105-U +626,81,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,719000,1.060471976,0.0173,,0.1,61.363,positive,doi.org/10.1063/1.439127 +20,3,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,11570,1.150099404,0.058964783,0.0862,0.1,173,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +234,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.084136448,0.1076,3.838,172.692,negative,doi.org/10.1021/ma9517308 +90,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.1301,,0.1,49.506,positive,doi.org/10.1063/1.472437 +671,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.058201058,0.043225708,0.0574,0.1,23.75,positive,doi.org/10.1021/ma60032a020 +93,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.085973967,0.111,1.18,49.66,positive,doi.org/10.1021/ma00107a011 +40,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.031258614,0.045,10.96,130,negative,doi.org/10.1021/je0103162 +627,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.2172,,0.1,23.253,positive,doi.org/10.1063/1.479914 +7,1,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,20000,2.5,0.392927308,0.4,0.1,34,negative,doi.org/10.1021/jp0574854 +672,121,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,101400,1.090322581,0.087141082,0.114,5.1,242,negative,See 1999BUN in ISBN: 9781420067989 +117,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,1.15,103.98,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +32,6,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,32900,1.018575851,0.096997548,0.131,0.1,43.85,positive,doi.org/10.1021/je990141k +91,2,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,596000,1.040139616,0.0204,,0.1,59.996,positive,doi.org/10.1063/1.472437 +8,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,2-propanone,67-64-1,CC(=O)C,44500,1.508474576,0.223601809,0.26,0.1,50,positive,See 1998SCH in ISBN: 9781420067989 +74,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,2.894,25.374,positive,doi.org/10.1021/ma9517308 +60,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.104323873,0.123,1.31,85.2,negative,doi.org/10.1021/ma00107a011 +340,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.187363134,0.2435,3.849,187.31,negative,doi.org/10.1016/j.supflu.2005.08.004 +235,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.143283582,0.18,0.427,-2.628,positive,doi.org/10.1021/ma9517308 +75,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.091732599,0.11,3.881,25.267,positive,doi.org/10.1021/ma9517308 +628,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,8.37,55.14,positive,doi.org/10.1016/S0378-3812(97)00157-X +673,75,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,320000,2.5,0.088401728,0.1156,0.1,26,positive,doi.org/10.1021/ma00040a033 +76,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.143286669,0.1699,1.037,34.932,positive,doi.org/10.1021/ma9517308 +674,74,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,101400,1.090322581,0.08163835,0.107,4.4,237.95,negative,doi.org/10.1016/S0896-8446(01)00144-9 +162,10,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8000,1.6,0.275862069,0.3,0.1,128.6,negative,doi.org/10.1021/ma00015a024 +106,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.038053348,0.0417,4,32.75,negative,doi.org/10.1021/ma011533a +675,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.216219276,0.27105,0.1,19.99,positive,See 1984GIL in ISBN: 9781420067989 +107,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.786005648,0.8016,0.1,37.97,negative,doi.org/10.1016/S0022-2860(00)00559-7 +341,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.022402455,0.031,6.9,190.01,negative,doi.org/10.1016/j.fluid.2003.07.004 +629,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.2032,,0.1,23.56,positive,doi.org/10.1063/1.446753 +182,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2867,0.2867,3.71,4.52,positive,doi.org/10.1006/jcht.1999.0607 +94,100,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,7800,1.18993135,0.094758259,0.122,0.1,-19.65,positive,doi.org/10.1063/1.1143329 +163,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.270158511,0.294,0.1,291.8,positive,doi.org/10.1021/ma00015a024 +676,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,25000,1.059322034,0.098,,0.1,7,positive,doi.org/10.1039/B301190A +164,3,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,4490,1.130982368,0.022462896,0.0252,0.1,228.3,positive,doi.org/10.1016/0378-3812(93)85105-U +183,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1393,0.1393,4.49,23.51,positive,doi.org/10.1006/jcht.1999.0607 +630,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.0716,,0.1,21.485,positive,doi.org/10.1063/1.439127 +29,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.1844,0.1844,2.12,66.09,positive,doi.org/10.1006/jcht.1999.0607 +677,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.170128772,0.2165,0.1,19,positive,See 1986KRU in ISBN: 9781420067989 +30,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.1844,0.1844,2.96,65.79,positive,doi.org/10.1006/jcht.1999.0607 +77,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.143286669,0.1699,4.609,26.414,positive,doi.org/10.1021/ma9517308 +631,81,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,719000,1.060471976,0.1619,,0.1,56.226,positive,doi.org/10.1063/1.439127 +678,126,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,103000,1.009803922,0.0068,,0.1,17,positive,doi.org/10.1002/pol.1981.180190913 +32,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.084,,10,9.85,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +679,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.044319188,0.05883,0.1,25.64,positive,See 1986KRU in ISBN: 9781420067989 +236,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.246153846,0.3,2.562,-2.509,positive,doi.org/10.1021/ma9517308 +680,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.009677231,0.013,0.1,22,positive,doi.org/10.1002/macp.1965.020880115 +237,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.176799578,0.2199,2.026,154.951,negative,doi.org/10.1021/ma9517308 +10,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,methyl acetate,79-20-9,COC(=O)C,100000,1.060445387,0.002649503,0.003,0.1,28.1,positive,doi.org/10.1021/ma00015a024 +184,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0307,0.0307,0.36,48.08,positive,doi.org/10.1006/jcht.1999.0607 +632,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,20.913,50.42,positive,doi.org/10.1016/S0378-3812(97)00157-X +681,20,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0425,,0.1,223.61,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +342,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.045517759,0.06242,7.374,202.41,negative,doi.org/10.1016/j.supflu.2005.08.004 +633,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.2614,,0.1,22.921,positive,doi.org/10.1063/1.446753 +682,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,25000,1.059322034,0.209,,0.1,6.78,positive,doi.org/10.1039/B301190A +634,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.269,,0.1,22.096,positive,doi.org/10.1063/1.439127 +118,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,4.79,120,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +343,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.042610985,0.0585,5.449,187.1,negative,doi.org/10.1016/j.supflu.2005.08.004 +92,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.0164,,0.1,47.288,positive,doi.org/10.1063/1.472437 +119,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.109403402,0.1419,0.48,13.61,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +635,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,21.855,50.25,positive,doi.org/10.1016/S0378-3812(97)00157-X +58,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.052,,0.1,30.16,positive,doi.org/10.1039/B301190A +636,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.159149407,0.206,1.05,32.27,positive,doi.org/10.1016/S0378-3812(97)00302-6 +61,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],11500,1.069767442,0.119093144,0.14,0.1,10.99,positive,doi.org/10.1063/1.1143329 +344,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.053694841,0.0734,7.188,202.06,negative,doi.org/10.1016/j.supflu.2005.08.004 +59,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.045,,0.1,30.14,positive,doi.org/10.1039/B301190A +683,82,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.059,,0.1,25.51,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +684,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,100000,1.060445387,0.061377425,0.081,0.1,20.8,positive,doi.org/10.1021/ma00015a024 +93,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.0664,,0.1,43.632,positive,doi.org/10.1063/1.472437 +637,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.072747343,0.0971,9.8,52.32,positive,doi.org/10.1016/S0378-3812(97)00302-6 +638,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,0.1,23.06,positive,doi.org/10.1063/1.464440 +639,19,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,297000,5.449541284,0.013932552,0.019,0.1,58.81,positive,See 1988SC2 in ISBN: 9781420067989 +345,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.016075286,0.0223,8.738,217.09,negative,doi.org/10.1016/j.supflu.2005.08.004 +685,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.1477,,0.1,22.52,positive,doi.org/10.1103/PhysRevE.55.3159 +95,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,11500,1.069767442,0.173559542,0.218,0.1,-25.63,positive,doi.org/10.1063/1.1143329 +185,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.0337,0.0337,1.71,41.39,positive,doi.org/10.1006/jcht.1999.0607 +640,87,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,109000,1.058252427,0.2352,,0.1,44.39,positive,doi.org/10.1063/1.439127 +346,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.06088695,0.083,6.3,243,negative,doi.org/10.1021/ie034302w +120,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.075072918,0.0985,2.46,94.93,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +347,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.048847856,0.0669,8.454,212.1,negative,doi.org/10.1016/j.supflu.2005.08.004 +686,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.033155412,0.04418,0.1,20.58,positive,See 1986KRU in ISBN: 9781420067989 +96,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.085973967,0.111,1.78,105.33,negative,doi.org/10.1021/ma00107a011 +641,25,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.1133,,0.1,11.972,positive,doi.org/10.1063/1.439127 +348,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.027077076,0.0374,3,163.5,negative,doi.org/10.1021/ie034302w +642,87,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,109000,1.058252427,0.0694,,0.1,49.545,positive,doi.org/10.1063/1.439127 +643,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,33.165,46.39,positive,doi.org/10.1016/S0378-3812(97)00157-X +108,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.041352114,0.0453,0.1,33.15,negative,doi.org/10.1021/ma011533a +238,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.126732673,0.16,2.045,-3.169,positive,doi.org/10.1021/ma9517308 +239,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.070072993,0.09,2.075,70.903,positive,doi.org/10.1021/ma9517308 +25,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.151508193,0.181,1.53,3.64,positive,doi.org/10.1021/ma00107a011 +644,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.234042447,0.2952,21.28,19.08,positive,doi.org/10.1063/1.464440 +645,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,6.47,21.97,positive,doi.org/10.1063/1.464440 +646,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,66.69,19.77,positive,doi.org/10.1063/1.464440 +349,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.047765372,0.065445,4.069,177.46,negative,doi.org/10.1016/j.supflu.2005.08.004 +240,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.168421053,0.21,3.025,-5.073,positive,doi.org/10.1021/ma9517308 +21,5,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,22920,1.070028011,0.095389806,0.137,0.1,168,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +687,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,25000,1.059322034,0.223,,0.1,6.59,positive,doi.org/10.1039/B301190A +241,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,0.951,81.947,positive,doi.org/10.1021/ma9517308 +82,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.123163812,0.1158,0.53,15.1,positive,doi.org/10.1006/jcht.1999.0607 +688,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0372,,0.1,23.697,positive,doi.org/10.1063/1.430349 +78,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,1.047,31.495,positive,doi.org/10.1021/ma9517308 +242,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.102211302,0.13,2.668,70.951,positive,doi.org/10.1021/ma9517308 +62,57,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],7800,1.181818182,0.271727549,0.31,0.1,11.4,positive,doi.org/10.1063/1.1143329 +165,1,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,11615,1.110739218,0.2239,,0.1,121.2,negative,See 2001FIS in ISBN: 9781420067989 +26,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.180315051,0.214,2.57,2.21,positive,doi.org/10.1021/ma00107a011 +647,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,11.205,54.29,positive,doi.org/10.1016/S0378-3812(97)00157-X +4,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,"2,3-dimethylbutane",79-29-8,CC(C)C(C)C,1240,1.068965517,0.11436527,0.17,0.1,12.05,positive,doi.org/10.1016/S0378-3812(01)00548-9 +350,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.026345536,0.0364,2.6,170.34,negative,doi.org/10.1016/j.fluid.2003.07.004 +689,82,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0817,,0.1,25.09,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +648,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.074826302,0.0998,52.86,19.4,positive,doi.org/10.1063/1.464440 +649,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.206896594,0.2634,7.05,30.36,positive,doi.org/10.1016/S0378-3812(97)00302-6 +243,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.272868217,0.33,1.964,-3.202,positive,doi.org/10.1021/ma9517308 +244,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.22839651,0.2798,2.532,156.314,negative,doi.org/10.1021/ma9517308 +690,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.127940203,0.1651,0.1,20,positive,See 1986KRU in ISBN: 9781420067989 +650,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.024291101,0.033,3.15,57.22,positive,doi.org/10.1016/S0378-3812(97)00302-6 +33,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.098758936,0.0927,2.59,38.12,positive,doi.org/10.1006/jcht.1999.0607 +22,8,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,18970,1.04002193,0.128761457,0.182,0.1,170.2,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +8,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,anisole,100-66-3,COc1ccccc1,44500,1.508474576,0.12743096,0.124,0.1,83.8,positive,See 1998SCH in ISBN: 9781420067989 +651,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,14.42,32.36,positive,doi.org/10.1063/1.464440 +691,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.010947535,0.0147,0.1,26.21,positive,See 1986KRU in ISBN: 9781420067989 +652,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.133,,0.1,23.367,positive,doi.org/10.1063/1.479914 +186,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0977,0.0977,0.57,23.85,positive,doi.org/10.1006/jcht.1999.0607 +692,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.006692689,0.009,0.1,21,positive,doi.org/10.1002/macp.1965.020880115 +653,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,49.077,43.94,positive,doi.org/10.1016/S0378-3812(97)00157-X +27,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,61400,1.04957265,0.00816395,0.01,0.1,227.5,negative,doi.org/10.1016/0032-3861(95)91454-F +245,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,0.707,132.885,negative,doi.org/10.1021/ma9517308 +693,90,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.007289103,0.0098,0.1,21.4,positive,doi.org/10.1016/S0378-3812(99)00128-4 +187,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.0633,0.0633,5.22,42.19,positive,doi.org/10.1006/jcht.1999.0607 +83,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.161455849,0.1522,2.52,14.56,positive,doi.org/10.1006/jcht.1999.0607 +351,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.094370769,0.127,11.2,224,negative,doi.org/10.1021/ie034302w +694,39,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,670000,1.098360656,0.018217199,0.0244,0.1,218.49,negative,doi.org/10.1021/ma60032a020 +695,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.04,,0.1,29.67,positive,doi.org/10.1039/B301190A +654,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.114055986,0.15,63.882,20.803,positive,doi.org/10.1002/macp.1994.021950233 +121,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.042437227,0.0563,5.29,154.9,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +246,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.143200418,0.1799,3.521,107.828,positive,doi.org/10.1021/ma9517308 +696,30,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,600000,1.099908341,0.045367558,0.0602,0.1,28.28,positive,doi.org/10.1007/BF01525017 +247,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.168421053,0.21,0.84,-1.668,positive,doi.org/10.1021/ma9517308 +697,30,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,600000,1.099908341,0.031653135,0.0422,0.1,28.21,positive,doi.org/10.1007/BF01525017 +655,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.192338678,0.2461,27.07,19.53,positive,doi.org/10.1063/1.464440 +188,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0861,0.0861,4.62,23.02,positive,doi.org/10.1006/jcht.1999.0607 +109,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.038025867,0.04167,4,32.71,negative,doi.org/10.1016/S0378-3812(01)00469-1 +698,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1237,,0.1,23.446,positive,doi.org/10.1063/1.430349 +656,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,22.515,48.32,positive,doi.org/10.1016/S0378-3812(97)00157-X +122,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,0.16,45.08,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +189,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2867,0.2867,1.47,4.7,positive,doi.org/10.1006/jcht.1999.0607 +657,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,5.77,56.34,positive,doi.org/10.1016/S0378-3812(97)00157-X +190,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0929,0.0929,2.39,49.28,positive,doi.org/10.1006/jcht.1999.0607 +248,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,1.968,155.135,negative,doi.org/10.1021/ma9517308 +699,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.038646594,0.0514,0.1,27.29,positive,See 1986KRU in ISBN: 9781420067989 +123,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.126382966,0.163,4.58,115.97,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +124,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.085273484,0.1115,3.63,9.47,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +352,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.237537236,0.3031,4.547,197.679,negative,doi.org/10.1016/j.supflu.2005.08.004 +79,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.091732599,0.11,4.757,190.334,negative,doi.org/10.1021/ma9517308 +700,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0443,,0.1,30.468,positive,doi.org/10.1103/PhysRevA.18.2683 +2,2,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,728000,1.290780142,0.0769826,0.09,0.1,5.7,positive,doi.org/10.1016/0254-0584(83)90036-6 +28,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,61400,1.04957265,0.12572358,0.15,0.1,12.8,positive,doi.org/10.1016/0032-3861(95)91454-F +191,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0861,0.0861,3.98,23.1,positive,doi.org/10.1006/jcht.1999.0607 +94,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.282,,0.1,29.598,positive,doi.org/10.1063/1.472437 +4,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-methylpentane,107-83-5,CCCC(C)C,1240,1.068965517,0.0921886,0.14,0.1,11.85,positive,doi.org/10.1016/S0378-3812(01)00548-9 +353,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.042610985,0.0585,9.699,221.87,negative,doi.org/10.1016/j.supflu.2005.08.004 +658,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,38.656,45.39,positive,doi.org/10.1016/S0378-3812(97)00157-X +659,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.090479565,0.12,4.58,54.82,positive,doi.org/10.1016/S0378-3812(97)00157-X +354,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.007183423,0.01,6.648,202.37,negative,doi.org/10.1016/j.supflu.2005.08.004 +110,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.038053348,0.0417,30,34.85,negative,doi.org/10.1021/ma011533a +30,5,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,600000,1.099908341,0.017393835,0.021,0.1,118.8,negative,doi.org/10.1021/ma00015a024 +249,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.126732673,0.16,0.369,-1.928,positive,doi.org/10.1021/ma9517308 +660,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,1.255,58.01,positive,doi.org/10.1016/S0378-3812(97)00157-X +11,90,polystyrene,9003-53-6,*C(C*)c1ccccc1,methyl acetate,79-20-9,COC(=O)C,190000,1.038251366,0.065992548,0.0741,0.1,26.18,positive,doi.org/10.1016/S0378-3812(99)00128-4 +34,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.207685345,0.1964,6.28,34.94,positive,doi.org/10.1006/jcht.1999.0607 +701,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.09874789,0.12868,0.1,24.85,positive,See 1984GIL in ISBN: 9781420067989 +702,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0986,,0.1,29.118,positive,doi.org/10.1103/PhysRevA.18.2683 +38,54,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,43000,1.009389671,0.118745019,0.1596,0.1,-5.2,positive,doi.org/10.1627/jpi1958.33.117 +250,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.22839651,0.2798,1.932,147.785,negative,doi.org/10.1021/ma9517308 +661,81,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,719000,1.060471976,0.0644,,0.1,61.483,positive,doi.org/10.1063/1.439127 +251,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.176884422,0.22,4.63,92.417,positive,doi.org/10.1021/ma9517308 +125,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.134578869,0.1731,0.72,43.42,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +662,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,6.62,55.98,positive,doi.org/10.1016/S0378-3812(97)00157-X +252,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.159916002,0.1999,4.717,92.861,positive,doi.org/10.1021/ma9517308 +703,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.194070042,0.24504,0.1,21,positive,See 1984GIL in ISBN: 9781420067989 +80,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,2.626,172.675,negative,doi.org/10.1021/ma9517308 +166,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0771,,0.1,132.35,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +704,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.264080428,0.326,0.1,20,positive,doi.org/10.1002/macp.1965.020880115 +84,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.108699719,0.1021,3.32,-4.08,positive,doi.org/10.1006/jcht.1999.0607 +705,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1049,,0.1,23.696,positive,doi.org/10.1063/1.430349 +706,84,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0185,,0.1,26.49,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +663,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,5.16,54.81,positive,doi.org/10.1016/S0378-3812(97)00157-X +253,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.084136448,0.1076,4.926,181.628,negative,doi.org/10.1021/ma9517308 +707,113,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,610000,1.077738516,0.014915085,0.02,0.1,28.1,positive,doi.org/10.1021/ma00015a024 +4,117,polystyrene,9003-53-6,*C(C*)c1ccccc1,bisphenol-A diglycidyl ether,1675-54-3,CC(C)(c1ccc(OCC2CO2)cc1)c3ccc(OCC4CO4)cc3,228000,1.050691244,0.1643,,0.1,77.23,positive,doi.org/10.1002/macp.200300106 +355,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.112846412,0.1508,2.66,173.46,negative,See 2000BEH in ISBN: 9781420067989 +33,52,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,90000,1.040462428,0.110689611,0.1306,0.1,8.3,positive,doi.org/10.1016/0032-3861(95)91454-F +97,45,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,24700,1.037815126,0.013620475,0.018,4,139.85,negative,doi.org/10.1039/B109405J +192,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.0633,0.0633,0.47,43.5,positive,doi.org/10.1006/jcht.1999.0607 +5,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,"2,3-dimethylbutane",79-29-8,CC(C)C(C)C,1240,1.068965517,0.13615796,0.2,0.1,11.55,positive,doi.org/10.1016/S0378-3812(01)00548-9 +12,2,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,76500,1.100719424,0.16836408,0.199,0.1,11.6,positive,doi.org/10.1016/0032-3861(95)91454-F +17,94,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,849000,1.450042699,0.03240198,0.0358,0.1,80.19,positive,doi.org/10.1021/je0504865 +167,10,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8000,1.6,0.010680908,0.012,0.1,132.2,negative,doi.org/10.1021/ma00015a024 +664,102,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.151967736,0.1972,14.51,11.23,positive,doi.org/10.1063/1.464440 +254,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.224203822,0.275,0.978,77.728,positive,doi.org/10.1021/ma9517308 +356,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.147562055,0.19463,7.074,207.369,negative,doi.org/10.1016/j.supflu.2005.08.004 +665,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,1.32,230.65,negative,doi.org/10.1016/S0378-3812(97)00157-X +41,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.047585196,0.068,9.03,150,negative,doi.org/10.1021/je0103162 +708,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0848,,0.1,23.823,positive,doi.org/10.1063/1.430349 +111,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.081005461,0.08839,0.1,33.31,negative,doi.org/10.1016/S0378-3812(01)00469-1 +3,7,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,ethanol,64-17-5,CCO,74000,1.48,0.78088709,0.8132,0.1,60,positive,doi.org/10.1002/1521-3935(20020301)203:4<705::AID-MACP705>3.0.CO;2-7 +7,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-hexane,110-54-3,CCCCCC,1240,1.068965517,0.080902719,0.123,0.1,-1.95,positive,doi.org/10.1016/S0378-3812(01)00548-9 +126,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.13205856,0.17,4.7,31.87,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +98,53,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,16600,1.050632911,0.141900377,0.18,8.25,15.85,positive,doi.org/10.1039/B109405J +666,102,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.151967736,0.1972,76.59,11.5,positive,doi.org/10.1063/1.464440 +29,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.178929363,0.211,0.1,227.6,negative,doi.org/10.1016/0032-3861(95)91454-F +193,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.134,0.134,1.89,6.46,positive,doi.org/10.1006/jcht.1999.0607 +8,1,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,ethoxybenzene,103-73-1,CCOc1ccccc1,24500,2.289719626,0.010020518,0.01,0.1,44.9,positive,See 1998SCH in ISBN: 9781420067989 +709,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.058201058,0.119062952,0.1541,0.1,23.33,positive,doi.org/10.1021/ma60032a020 +255,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.176884422,0.22,2.461,-3.14,positive,doi.org/10.1021/ma9517308 +667,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.212489212,0.27,85.725,21.173,positive,doi.org/10.1002/macp.1994.021950233 +168,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.3738,,0.1,141.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +12,90,polystyrene,9003-53-6,*C(C*)c1ccccc1,methyl acetate,79-20-9,COC(=O)C,190000,1.038251366,0.018053428,0.0204,0.1,22.38,positive,doi.org/10.1016/S0378-3812(99)00128-4 +357,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.036109458,0.0497,10.24,223.02,negative,See 2000BEH in ISBN: 9781420067989 +34,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.216,,10,1.65,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +668,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.058586078,0.0786,5.79,21.6,positive,doi.org/10.1063/1.464440 +169,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.2387,,0.1,118.2,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +710,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1782,,0.1,21.855,positive,doi.org/10.1063/1.430349 +669,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.023771294,0.0323,1.05,26.23,positive,doi.org/10.1016/S0378-3812(97)00302-6 +711,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0203,,0.1,30.462,positive,doi.org/10.1103/PhysRevA.18.2683 +670,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.082475925,0.1097,3.05,30.33,positive,doi.org/10.1016/S0378-3812(97)00302-6 +45,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.154286487,0.17,3.23,90.52,negative,doi.org/10.1021/ma00107a011 +95,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.0929,,0.1,34.673,positive,doi.org/10.1063/1.472437 +671,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,9.11,54.62,positive,doi.org/10.1016/S0378-3812(97)00157-X +672,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.037801129,0.0511,3.95,56.31,positive,doi.org/10.1016/S0378-3812(97)00302-6 +712,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0466,,0.1,23.796,positive,doi.org/10.1063/1.430349 +713,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.003714317,0.005,0.1,19,positive,doi.org/10.1002/macp.1965.020880115 +673,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.096806139,0.1281,5.05,30.3,positive,doi.org/10.1016/S0378-3812(97)00302-6 +63,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.09653999,0.114,1.01,101.16,negative,doi.org/10.1021/ma00107a011 +99,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.123853657,0.158,0.48,67.22,positive,doi.org/10.1021/ma00107a011 +358,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.001720302,0.0024,1.198,167.77,negative,doi.org/10.1016/j.supflu.2005.08.004 +170,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.291,,0.1,134.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +674,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.2458,,0.1,23.2,positive,doi.org/10.1063/1.446753 +256,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,2.192,148.099,negative,doi.org/10.1021/ma9517308 +675,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.114055986,0.15,24.933,21.283,positive,doi.org/10.1002/macp.1994.021950233 +676,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,2.42,56.15,positive,doi.org/10.1016/S0378-3812(97)00157-X +359,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.012959657,0.018,4.8,215,negative,doi.org/10.1021/ie034302w +257,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.084136448,0.1076,1.956,155.293,negative,doi.org/10.1021/ma9517308 +714,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.007,,0.1,29.5,positive,doi.org/10.1039/B301190A +42,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.047585196,0.068,11.72,170,negative,doi.org/10.1021/je0103162 +258,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.143200418,0.1799,3.871,147.754,negative,doi.org/10.1021/ma9517308 +677,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,1.32,56.73,positive,doi.org/10.1016/S0378-3812(97)00157-X +678,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.090479565,0.12,9.9,52.63,positive,doi.org/10.1016/S0378-3812(97)00157-X +60,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],123000,1.060344828,0.093,,0.1,24.95,positive,doi.org/10.1039/B301190A +715,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.268509079,0.331,0.1,20,positive,doi.org/10.1002/macp.1965.020880115 +679,61,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,181000,1.058479532,0.0479,,0.1,53.778,positive,doi.org/10.1063/1.439127 +112,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.0619634,0.06774,0.1,33.25,negative,doi.org/10.1016/S0378-3812(01)00469-1 +360,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.114958864,0.1535,2.8,179.89,negative,doi.org/10.1016/j.fluid.2003.07.004 +680,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.090479565,0.12,7.8,53.42,positive,doi.org/10.1016/S0378-3812(97)00157-X +30,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,61400,1.04957265,0.100007611,0.12,0.1,13.9,positive,doi.org/10.1016/0032-3861(95)91454-F +716,126,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,103000,1.009803922,0.115,,0.1,20.64,positive,doi.org/10.1002/pol.1981.180190913 +194,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.0633,0.0633,3.68,42.59,positive,doi.org/10.1006/jcht.1999.0607 +681,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.212489212,0.27,20.13,21.453,positive,doi.org/10.1002/macp.1994.021950233 +127,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.13205856,0.17,0.34,46.78,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +682,81,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,719000,1.060471976,0.0608,,0.1,61.552,positive,doi.org/10.1063/1.439127 +717,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0464,,0.1,23.79,positive,doi.org/10.1063/1.430349 +259,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.176799578,0.2199,1.055,82.052,positive,doi.org/10.1021/ma9517308 +96,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.1,,0.1,52.979,positive,doi.org/10.1063/1.472437 +260,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,3.767,165.117,negative,doi.org/10.1021/ma9517308 +683,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.0855,,0.1,22.702,positive,doi.org/10.1063/1.479914 +261,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,0.569,84.681,positive,doi.org/10.1021/ma9517308 +5,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-octane,111-65-9,CCCCCCCC,1240,1.068965517,0.135231317,0.19,0.1,4.05,positive,doi.org/10.1016/S0378-3812(01)00548-9 +684,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,97200,1.05997819,0.039197056,0.05296,0.1,47.758,positive,doi.org/10.1021/ma60032a020 +361,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.032797521,0.0452,5.26,187.36,negative,doi.org/10.1016/j.supflu.2005.08.004 +18,67,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,4215,1.069796954,0.017801926,0.0197,0.1,31.57,positive,doi.org/10.1021/je0504865 +31,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.2291,0.2291,1.37,64.28,positive,doi.org/10.1006/jcht.1999.0607 +35,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.172,,70,14.75,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +685,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.037801129,0.0511,12.6,52.6,positive,doi.org/10.1016/S0378-3812(97)00302-6 +718,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.015372428,0.02061,0.1,19.57,positive,See 1986KRU in ISBN: 9781420067989 +719,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0167,,0.1,22.752,positive,doi.org/10.1063/1.430349 +19,8,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,18970,1.04002193,0.063447723,0.0996,0.1,154.2,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +720,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.068359318,0.09,0.1,27.1,positive,doi.org/10.1002/macp.1965.020880115 +686,61,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,181000,1.058479532,0.0579,,0.1,53.841,positive,doi.org/10.1063/1.439127 +362,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.044167367,0.0606,1.964,162.75,negative,doi.org/10.1016/j.supflu.2005.08.004 +687,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,44.206,44.59,positive,doi.org/10.1016/S0378-3812(97)00157-X +31,5,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,600000,1.099908341,0.055946027,0.067,0.1,3.5,positive,doi.org/10.1021/ma00015a024 +128,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,0.23,45.08,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +113,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.033749886,0.037,0.1,32.45,negative,doi.org/10.1021/ma011533a +363,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.01259787,0.0175,6.9,180,negative,doi.org/10.1021/ie034302w +364,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.053694841,0.0734,0.973,157.56,negative,doi.org/10.1016/j.supflu.2005.08.004 +97,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.1659,,0.1,48.134,positive,doi.org/10.1063/1.472437 +688,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,97200,1.05997819,0.08843932,0.11738,0.1,48.349,positive,doi.org/10.1021/ma60032a020 +721,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1323,,0.1,23.254,positive,doi.org/10.1063/1.430349 +689,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.065916504,0.0882,1.05,30.31,positive,doi.org/10.1016/S0378-3812(97)00302-6 +722,39,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,670000,1.098360656,0.041774098,0.0555,0.1,219.06,negative,doi.org/10.1021/ma60032a020 +365,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.007183423,0.01,4.103,182.53,negative,doi.org/10.1016/j.supflu.2005.08.004 +690,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.065916504,0.0882,6.05,29.22,positive,doi.org/10.1016/S0378-3812(97)00302-6 +366,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.060586478,0.0826,6.624,197.68,negative,doi.org/10.1016/j.supflu.2005.08.004 +20,9,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,7410,1.170616114,0.042708248,0.0679,0.1,160.4,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +723,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.048,,0.1,21.18,positive,doi.org/10.1039/B301190A +9,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,2-propanone,67-64-1,CC(=O)C,44500,1.508474576,0.50046014,0.55,0.1,36.4,positive,See 1998SCH in ISBN: 9781420067989 +21,4,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,31120,1.019993445,0.01633543,0.0264,0.1,151.1,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +691,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.090479565,0.12,4.23,55.01,positive,doi.org/10.1016/S0378-3812(97)00157-X +13,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,61400,1.04957265,0.04443423,0.0603,0.1,216.9,negative,doi.org/10.1016/0032-3861(95)91454-F +724,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0228,,0.1,24.576,positive,doi.org/10.1103/PhysRevE.55.3159 +725,20,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0939,,0.1,24.79,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +20,3,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,280000,1.060606061,0.092547605,0.1102,0.1,77.23,positive,doi.org/10.1021/je0504865 +13,2,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,76500,1.100719424,0.073402596,0.0886,0.1,11.3,positive,doi.org/10.1016/0032-3861(95)91454-F +7,6,polyethylene,9002-88-4,*CC*,1-octene,111-66-0,CCCCCCC=C,105000,2.441860465,0.034454976,0.0439,4.1,270.95,negative,See 2001TOR in ISBN: 9781420067989 +171,10,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8000,1.6,0.180888535,0.199,0.1,124.8,negative,doi.org/10.1021/ma00015a024 +32,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.0848,0.0848,4.87,66.01,positive,doi.org/10.1006/jcht.1999.0607 +33,6,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,32900,1.018575851,0.003567919,0.005,0.1,15.85,positive,doi.org/10.1021/je990141k +23,8,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,18970,1.04002193,0.052294572,0.0767,0.1,168.4,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +172,6,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,2530,1.171296296,0.04532198,0.0507,0.1,200.7,positive,doi.org/10.1016/0378-3812(93)85105-U +692,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.048116473,0.0648,8.6,53.7,positive,doi.org/10.1016/S0378-3812(97)00302-6 +98,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.0156,,0.1,38.726,positive,doi.org/10.1063/1.472437 +33,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.0738,0.0738,4.81,65.9,positive,doi.org/10.1006/jcht.1999.0607 +726,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,13200000,1.130136986,0.0195,,0.1,32.11,positive,doi.org/10.1039/B301190A +36,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.216,,20,2.75,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +85,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.075015907,0.0703,4.82,13.84,positive,doi.org/10.1006/jcht.1999.0607 +367,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.010646004,0.0148,4.1,180,negative,doi.org/10.1016/j.fluid.2003.07.004 +727,84,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0479,,0.1,26.87,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +368,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.043722494,0.06,8.5,191.7,negative,doi.org/10.1021/ie034302w +46,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.186779372,0.205,3.86,56.82,positive,doi.org/10.1021/ma00107a011 +369,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.067892668,0.0923,7.175,202.58,negative,doi.org/10.1016/j.supflu.2005.08.004 +43,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.00686948,0.01,16,170,negative,doi.org/10.1021/je0103162 +370,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.044167367,0.0606,3.369,172.53,negative,doi.org/10.1016/j.supflu.2005.08.004 +371,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.003026428,0.00422,12.95,230.6,negative,doi.org/10.1021/ie034302w +372,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.007183423,0.01,3.453,177.61,negative,doi.org/10.1016/j.supflu.2005.08.004 +693,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,97200,1.05997819,0.123056115,0.16132,0.1,233.787,negative,doi.org/10.1021/ma60032a020 +262,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.102211302,0.13,2.366,-5.202,positive,doi.org/10.1021/ma9517308 +173,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.3859,,0.1,143.3,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +263,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,2.818,163.745,negative,doi.org/10.1021/ma9517308 +174,11,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,3350,1.595238095,0.062709966,0.07,0.1,156.2,negative,doi.org/10.1021/ma00015a024 +728,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.071371752,0.09387,0.1,20.47,positive,See 1986KRU in ISBN: 9781420067989 +694,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.065916504,0.0882,12.05,28.09,positive,doi.org/10.1016/S0378-3812(97)00302-6 +175,3,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,4490,1.130982368,0.173087838,0.1906,0.1,144.6,negative,doi.org/10.1016/0378-3812(93)85105-U +39,115,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,98900,1.019587629,0.022339603,0.0312,0.1,173.9,negative,doi.org/10.1002/pen.760330806 +14,13,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,113000,1.140262361,0.0709,,0.1,20.6,positive,See 1991LEE in ISBN: 9781420067989 +81,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.221355036,0.2581,1.06,161.889,negative,doi.org/10.1021/ma9517308 +32,5,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,600000,1.099908341,0.017393835,0.021,0.1,3.9,positive,doi.org/10.1021/ma00015a024 +100,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.085973967,0.111,1.19,49.67,positive,doi.org/10.1021/ma00107a011 +101,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,11500,1.069767442,0.237047042,0.292,0.1,-27.06,positive,doi.org/10.1063/1.1143329 +99,2,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,596000,1.040139616,0.0086,,0.1,59.075,positive,doi.org/10.1063/1.472437 +82,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,5.03,21.513,positive,doi.org/10.1021/ma9517308 +114,9,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,88200,1.8,0.000181821,0.0002,0.1,36.3,negative,doi.org/10.1295/polymj.34.383 +195,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1245,0.1245,2.54,42.59,positive,doi.org/10.1006/jcht.1999.0607 +64,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.104323873,0.123,2.46,95.4,negative,doi.org/10.1021/ma00107a011 +13,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,methyl acetate,79-20-9,COC(=O)C,100000,1.060445387,0.060516342,0.068,0.1,125.35,negative,doi.org/10.1021/ma00015a024 +115,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.470406823,0.4942,0.1,27.4,negative,doi.org/10.1016/S0022-2860(00)00559-7 +695,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,5.53,54.65,positive,doi.org/10.1016/S0378-3812(97)00157-X +116,8,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,258000,2.15,0.003546712,0.0039,35.45,35.25,negative,doi.org/10.1021/ma011533a +176,9,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,151000,3.696450428,0.006,,0.1,107.7,negative,See 2001FIS in ISBN: 9781420067989 +696,89,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37900,1.010666667,0.122322505,0.1604,0.1,37.37,positive,See 1996RON in ISBN: 9781420067989 +729,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1017,,0.1,23.729,positive,doi.org/10.1063/1.430349 +373,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.094370769,0.127,3.2,169,negative,doi.org/10.1021/ie034302w +730,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,13200000,1.130136986,0.0037,,0.1,31.83,positive,doi.org/10.1039/B301190A +102,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.085973967,0.111,0.55,92.37,negative,doi.org/10.1021/ma00107a011 +86,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.21060407,0.1992,3.64,13.54,positive,doi.org/10.1006/jcht.1999.0607 +731,76,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.128911817,0.1663,0.1,23.32,positive,See 1996RON in ISBN: 9781420067989 +40,88,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,1300000,1.050080775,0.060710485,0.08349,0.1,13.5,positive,doi.org/10.1627/jpi1958.33.117 +196,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2242,0.2242,0.26,6.22,positive,doi.org/10.1006/jcht.1999.0607 +732,30,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,600000,1.099908341,0.045214464,0.06,3.7,27.96,positive,doi.org/10.1007/BF01525017 +21,5,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,68000,1.03030303,0.003708598,0.0045,0.1,71.74,positive,doi.org/10.1021/je0504865 +197,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.025,0.025,1.26,46.29,positive,doi.org/10.1006/jcht.1999.0607 +87,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.239830986,0.2273,1.5,13.5,positive,doi.org/10.1006/jcht.1999.0607 +374,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.014915089,0.0207,2.7,173,negative,doi.org/10.1021/ie034302w +100,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.1164,,0.1,20.375,positive,doi.org/10.1063/1.472437 +24,5,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,22920,1.070028011,0.028639236,0.0425,0.1,167.5,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +697,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,2.76,242.93,negative,doi.org/10.1016/S0378-3812(97)00157-X +375,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.050411811,0.069,4.9,181.5,negative,doi.org/10.1021/ie034302w +61,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],123000,1.060344828,0.077,,0.1,24.93,positive,doi.org/10.1039/B301190A +2,1,poly(vinyl acetate),9003-20-7,*CC(*)OC(C)=O,cyclopentane,287-92-3,C1CCCC1,124800,2.368121442,0.03842517,0.06,30.2,246.2,positive,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +733,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0155,,0.1,30.375,positive,doi.org/10.1103/PhysRevA.18.2683 +15,14,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,290000,1.319981793,0.0634,,0.1,24.6,positive,See 1991LEE in ISBN: 9781420067989 +117,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.622784908,0.6449,0.1,28.07,negative,doi.org/10.1016/S0022-2860(00)00559-7 +734,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,37000,1.06017192,0.124382992,0.1607,0.1,12.46,positive,doi.org/10.1021/ma60032a020 +65,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.104323873,0.123,1.64,64.44,positive,doi.org/10.1021/ma00107a011 +698,25,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.0812,,0.1,10.873,positive,doi.org/10.1063/1.439127 +264,49,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22000,1.030010768,0.08125,0.104,0.95,86.2,positive,doi.org/10.1002/polb.1994.090321315 +699,109,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,14000,1.059803179,0.182326137,0.2341,0.1,18.65,positive,doi.org/10.1016/j.eurpolymj.2003.09.027 +198,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0944,0.0944,2.43,23.52,positive,doi.org/10.1006/jcht.1999.0607 +376,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.026345536,0.0364,5.4,190.43,negative,doi.org/10.1016/j.fluid.2003.07.004 +66,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.139214446,0.163,0.59,94.93,negative,doi.org/10.1021/ma00107a011 +16,14,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,290000,1.319981793,0.0532,,0.1,24.8,positive,See 1991LEE in ISBN: 9781420067989 +700,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.240492932,0.30267,80,20.794,positive,doi.org/10.1002/macp.1994.021950233 +88,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.161455849,0.1522,4.8,14.15,positive,doi.org/10.1006/jcht.1999.0607 +199,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.1212,0.1212,1.15,49.79,positive,doi.org/10.1006/jcht.1999.0607 +20,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,100000,1.060445387,0.017229523,0.02,0.1,168,negative,doi.org/10.1021/ma00015a024 +129,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.134578869,0.1731,3.5,33.87,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +33,72,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,106300,1.059820538,0.115571327,0.155,1.16,53.23,positive,doi.org/10.1021/ma00107a011 +103,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.123853657,0.158,0.51,81.53,negative,doi.org/10.1021/ma00107a011 +200,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0929,0.0929,4.27,48.69,positive,doi.org/10.1006/jcht.1999.0607 +101,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.0871,,0.1,34.623,positive,doi.org/10.1063/1.472437 +701,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.058586078,0.0786,49.13,19.15,positive,doi.org/10.1063/1.464440 +735,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.052027321,0.06888,0.1,23.5,positive,See 1984GIL in ISBN: 9781420067989 +736,74,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,101400,1.090322581,0.08163835,0.107,3.4,230.41,negative,doi.org/10.1016/S0896-8446(01)00144-9 +702,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,71.994,43.64,positive,doi.org/10.1016/S0378-3812(97)00157-X +377,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.047765372,0.065445,6.724,197.1,negative,doi.org/10.1016/j.supflu.2005.08.004 +737,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.026,,0.1,29.77,positive,doi.org/10.1039/B301190A +738,93,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0168,,0.1,224.11,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +104,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.127937264,0.163,1.45,11.56,positive,doi.org/10.1021/ma00107a011 +265,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.246153846,0.3,1.653,-1.712,positive,doi.org/10.1021/ma9517308 +177,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0219,,0.1,140.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +44,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.024234764,0.035,13.72,150,negative,doi.org/10.1021/je0103162 +739,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0947,,0.1,26.101,positive,doi.org/10.1103/PhysRevE.55.3159 +62,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],25000,1.059322034,0.121,,0.1,10.32,positive,doi.org/10.1039/B301190A +703,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.036526526,0.0494,7.05,26.88,positive,doi.org/10.1016/S0378-3812(97)00302-6 +378,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.016075286,0.0223,7.588,207.37,negative,doi.org/10.1016/j.supflu.2005.08.004 +19,67,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,4215,1.069796954,0.079141127,0.087,0.1,47.89,positive,doi.org/10.1021/je0504865 +379,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.060586478,0.0826,1.814,163.06,negative,doi.org/10.1016/j.supflu.2005.08.004 +740,121,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,101400,1.090322581,0.087141082,0.114,3.39,232.3,negative,See 1999BUN in ISBN: 9781420067989 +704,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.072747343,0.0971,4.55,54.66,positive,doi.org/10.1016/S0378-3812(97)00302-6 +380,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.047765372,0.065445,7.899,206.99,negative,doi.org/10.1016/j.supflu.2005.08.004 +741,130,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,30200,1.285106383,0.15645712,0.2,0.1,9.55,positive,doi.org/10.1002/polc.5070390106 +381,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.003514777,0.0049,4.402,187.28,negative,doi.org/10.1016/j.supflu.2005.08.004 +705,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,200000,1.058201058,0.025167797,0.03418,0.1,227.658,negative,doi.org/10.1021/ma60032a020 +178,1,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,11615,1.110739218,0.0213,,0.1,134.5,negative,See 2001FIS in ISBN: 9781420067989 +742,70,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.058201058,0.041545029,0.0552,0.1,27.21,positive,doi.org/10.1021/ma60032a020 +706,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,7.85,21.81,positive,doi.org/10.1063/1.464440 +10,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,2-propanone,67-64-1,CC(=O)C,44500,1.508474576,0.450455581,0.5,0.1,39.5,positive,See 1998SCH in ISBN: 9781420067989 +743,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0267,,0.1,23.446,positive,doi.org/10.1063/1.430349 +707,102,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.151967736,0.1972,40.31,10.55,positive,doi.org/10.1063/1.464440 +382,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.147562055,0.19463,1.624,167.766,negative,doi.org/10.1016/j.supflu.2005.08.004 +266,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.084136448,0.1076,1.009,82.2,positive,doi.org/10.1021/ma9517308 +201,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1801,0.1801,2.09,6.25,positive,doi.org/10.1006/jcht.1999.0607 +22,7,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,992000,1.05982906,0.143447167,0.169,0.1,76.34,positive,doi.org/10.1021/je0504865 +105,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.168519092,0.212,0.44,12.27,positive,doi.org/10.1021/ma00107a011 +744,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.043,,0.1,29.63,positive,doi.org/10.1039/B301190A +708,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.23818408,0.3,62.016,20.294,positive,doi.org/10.1002/macp.1994.021950233 +709,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.117960635,0.15492,0.1,24.372,positive,doi.org/10.1002/macp.1994.021950233 +202,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1126,0.1126,1.59,23.9,positive,doi.org/10.1006/jcht.1999.0607 +33,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,100000,1.060445387,0.041625634,0.05,0.1,149.8,negative,doi.org/10.1021/ma00015a024 +106,100,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,7800,1.18993135,0.133671978,0.17,0.1,-18.62,positive,doi.org/10.1063/1.1143329 +710,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.058586078,0.0786,14.32,20.48,positive,doi.org/10.1063/1.464440 +745,73,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,41000,5.125,0.129478882,0.167,0.1,25.7,positive,doi.org/10.1002/pi.4980080407 +711,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,6.56,54.17,positive,doi.org/10.1016/S0378-3812(97)00157-X +102,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.0202,,0.1,40.122,positive,doi.org/10.1063/1.472437 +746,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.163294135,0.20827,0.1,24,positive,See 1984GIL in ISBN: 9781420067989 +712,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.13972843,0.1821,7.05,30.85,positive,doi.org/10.1016/S0378-3812(97)00302-6 +713,87,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,109000,1.058252427,0.1203,,0.1,49.398,positive,doi.org/10.1063/1.439127 +31,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.107691677,0.129,0.1,-21.6,positive,doi.org/10.1016/0032-3861(95)91454-F +714,70,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,400000,1.058201058,0.011024209,0.01505,0.1,58.221,positive,doi.org/10.1021/ma60032a020 +14,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,61400,1.04957265,0.060485219,0.085,0.1,151.6,negative,doi.org/10.1016/0032-3861(95)91454-F +179,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0282,,0.1,138.35,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +715,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.23818408,0.3,37.74,20.342,positive,doi.org/10.1002/macp.1994.021950233 +103,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.0742,,0.1,34.416,positive,doi.org/10.1063/1.472437 +747,84,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0357,,0.1,220.12,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +383,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.078282347,0.106,4.2,175.5,negative,doi.org/10.1021/ie034302w +716,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,4.08,55.34,positive,doi.org/10.1016/S0378-3812(97)00157-X +89,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.139704443,0.1315,0.41,15.12,positive,doi.org/10.1006/jcht.1999.0607 +717,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,7.33,55.63,positive,doi.org/10.1016/S0378-3812(97)00157-X +107,53,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,16600,1.050632911,0.141900377,0.18,12.55,9.85,positive,doi.org/10.1039/B109405J +63,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],13200000,1.130136986,0.0023,,0.1,36.26,positive,doi.org/10.1039/B301190A +180,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.008898776,0.01,0.1,125.8,negative,doi.org/10.1021/ma00015a024 +718,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,200000,1.058201058,0.040887583,0.05521,0.1,53.937,positive,doi.org/10.1021/ma60032a020 +748,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1504,,0.1,22.752,positive,doi.org/10.1063/1.430349 +719,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.188367066,0.24135,0.1,24.318,positive,doi.org/10.1002/macp.1994.021950233 +720,95,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17300,1.061349693,0.208,,0.1,22.903,positive,doi.org/10.1063/1.439127 +721,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,43.44,29.82,positive,doi.org/10.1063/1.464440 +203,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0535,0.0535,2.82,49.19,positive,doi.org/10.1006/jcht.1999.0607 +64,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],13200000,1.130136986,0.0168,,0.1,36.73,positive,doi.org/10.1039/B301190A +722,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.2209,,0.1,22.73,positive,doi.org/10.1063/1.439127 +41,54,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,43000,1.009389671,0.056254491,0.0775,0.1,-5.5,positive,doi.org/10.1627/jpi1958.33.117 +723,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,27.039,47.46,positive,doi.org/10.1016/S0378-3812(97)00157-X +5,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,3-methylpentane,96-14-0,CCC(C)CC,1240,1.068965517,0.051825677,0.08,0.1,1.65,positive,doi.org/10.1016/S0378-3812(01)00548-9 +749,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.014915085,0.02,0.1,27.9,positive,doi.org/10.1002/macp.1965.020880115 +724,71,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,90000,1.039981511,0.118103694,0.1551,0.1,46.75,positive,doi.org/10.1016/j.eurpolymj.2003.09.027 +384,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.042610985,0.0585,2.719,167.47,negative,doi.org/10.1016/j.supflu.2005.08.004 +267,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.133912138,0.1687,2.176,106.957,positive,doi.org/10.1021/ma9517308 +83,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,1.889,27.864,positive,doi.org/10.1021/ma9517308 +130,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.053184277,0.0703,4.8,22.06,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +5,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,"2,2-dimethylbutane",75-83-2,CCC(C)(C)C,1240,1.068965517,0.091421327,0.14,0.1,34.55,positive,doi.org/10.1016/S0378-3812(01)00548-9 +84,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.117493871,0.1401,2.487,172.305,negative,doi.org/10.1021/ma9517308 +181,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.063612947,0.071,0.1,119.8,negative,doi.org/10.1021/ma00015a024 +45,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.002056292,0.003,7.93,150,negative,doi.org/10.1021/je0103162 +67,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.111263273,0.131,1.18,70.26,positive,doi.org/10.1021/ma00107a011 +725,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.048116473,0.0648,2,56.96,positive,doi.org/10.1016/S0378-3812(97)00302-6 +9,1,poly(vinyl chloride),9002-86-2,*CC(*)Cl,phenetole,103-73-1,CCOc1ccccc1,75000,1.159196291,0.057433034,0.08,100,35.9,positive,doi.org/10.1002/macp.1985.021860409 +268,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.228571429,0.28,1.137,-0.685,positive,doi.org/10.1021/ma9517308 +46,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.029850253,0.043,15.51,170,negative,doi.org/10.1021/je0103162 +104,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.1908,,0.1,48.629,positive,doi.org/10.1063/1.472437 +22,5,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,22920,1.070028011,0.00695096,0.0113,0.1,154,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +726,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.103004224,0.136,1.5,55.21,positive,doi.org/10.1016/S0378-3812(97)00302-6 +47,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.175610347,0.193,3.32,96.85,negative,doi.org/10.1021/ma00107a011 +182,11,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,3350,1.595238095,0.414163842,0.443,0.1,223.2,positive,doi.org/10.1021/ma00015a024 +204,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1911,0.1911,5.27,39.28,positive,doi.org/10.1006/jcht.1999.0607 +205,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1179,0.1179,3.2,6.25,positive,doi.org/10.1006/jcht.1999.0607 +47,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.056199822,0.08,8.82,150,negative,doi.org/10.1021/je0103162 +85,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.143286669,0.1699,2.76,172.274,negative,doi.org/10.1021/ma9517308 +90,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.056732495,0.0531,0.34,13.9,positive,doi.org/10.1006/jcht.1999.0607 +750,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.120447568,0.15582,0.1,19.65,positive,See 1986KRU in ISBN: 9781420067989 +11,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,2-propanone,67-64-1,CC(=O)C,44500,1.508474576,0.178909161,0.21,0.1,48.4,positive,See 1998SCH in ISBN: 9781420067989 +68,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.197860168,0.229,0.69,99.8,negative,doi.org/10.1021/ma00107a011 +751,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.046516271,0.0617,0.1,23.97,positive,See 1984GIL in ISBN: 9781420067989 +727,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.212489212,0.27,42.88,20.453,positive,doi.org/10.1002/macp.1994.021950233 +752,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.076163844,0.10001,0.1,25.03,positive,See 1984GIL in ISBN: 9781420067989 +105,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.0079,,0.1,44.903,positive,doi.org/10.1063/1.472437 +753,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0481,,0.1,23.807,positive,doi.org/10.1063/1.430349 +754,82,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0118,,0.1,26.29,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +183,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.3986,,0.1,144.75,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +728,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,4.31,22.33,positive,doi.org/10.1063/1.464440 +206,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1388,0.1388,3.09,23.8,positive,doi.org/10.1006/jcht.1999.0607 +131,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.053184277,0.0703,1.59,29.06,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +9,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,anisole,100-66-3,COc1ccccc1,44500,1.508474576,0.235575152,0.23,0.1,79.6,positive,See 1998SCH in ISBN: 9781420067989 +729,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,43.98,45.78,positive,doi.org/10.1016/S0378-3812(97)00157-X +755,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.229787554,0.2868,0.1,20,positive,See 1984GIL in ISBN: 9781420067989 +756,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.046332416,0.06146,0.1,25.29,positive,See 1984GIL in ISBN: 9781420067989 +132,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.13205856,0.17,1.56,40.8,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +133,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.096178884,0.1253,3,140.39,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +269,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.070072993,0.09,2.451,70.903,positive,doi.org/10.1021/ma9517308 +69,57,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],7800,1.181818182,0.099131925,0.117,0.1,11.85,positive,doi.org/10.1063/1.1143329 +207,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1977,0.1977,1.03,23.73,positive,doi.org/10.1006/jcht.1999.0607 +134,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,4.08,31.99,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +757,90,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.049891051,0.0661,0.1,24.01,positive,doi.org/10.1016/S0378-3812(99)00128-4 +106,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.0391,,0.1,52.979,positive,doi.org/10.1063/1.472437 +758,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.041422873,0.05504,0.1,21.98,positive,See 1984GIL in ISBN: 9781420067989 +108,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.127937264,0.163,0.42,13.29,positive,doi.org/10.1021/ma00107a011 +730,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.115562594,0.1519,9.05,29.96,positive,doi.org/10.1016/S0378-3812(97)00302-6 +208,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0977,0.0977,4.79,23.18,positive,doi.org/10.1006/jcht.1999.0607 +135,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.13205856,0.17,1.23,102.94,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +209,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0457,0.0457,2.86,48.88,positive,doi.org/10.1006/jcht.1999.0607 +109,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.114095631,0.146,0.75,60.05,positive,doi.org/10.1021/ma00107a011 +184,8,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,100000,2,0.044692737,0.05,0.1,104.3,negative,doi.org/10.1021/ma00015a024 +270,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.133912138,0.1687,3.17,146.951,negative,doi.org/10.1021/ma9517308 +759,125,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,470000,1.068181818,0.063701039,0.084,0.1,27.6,positive,doi.org/10.1002/pol.1968.110060608 +760,93,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0624,,0.1,25.67,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +136,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.109403402,0.1419,1.59,11.92,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +761,55,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,100000,1.063829787,0.005202733,0.007,0.1,237.1,negative,doi.org/10.1002/app.1993.070470707 +21,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,100000,1.060445387,0.04238608,0.049,0.1,165.5,negative,doi.org/10.1021/ma00015a024 +731,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.0534,,0.1,20.308,positive,doi.org/10.1063/1.439127 +25,3,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,11570,1.150099404,0.009477517,0.0142,0.1,174.4,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +385,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.076000121,0.103,6.6,233,negative,doi.org/10.1021/ie034302w +107,2,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,596000,1.040139616,0.0062,,0.1,58.574,positive,doi.org/10.1063/1.472437 +386,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.044167367,0.0606,6.724,197.25,negative,doi.org/10.1016/j.supflu.2005.08.004 +108,2,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,596000,1.040139616,0.0913,,0.1,59.646,positive,doi.org/10.1063/1.472437 +762,35,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,335500,1.690176322,0.066028333,0.087,0.1,24.82,positive,See 1986KRU in ISBN: 9781420067989 +210,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.0625,0.0625,3.53,3.23,positive,doi.org/10.1006/jcht.1999.0607 +732,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.139090989,0.18131,80,21.243,positive,doi.org/10.1002/macp.1994.021950233 +185,1,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,11615,1.110739218,0.228,,0.1,121,negative,See 2001FIS in ISBN: 9781420067989 +110,45,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,24700,1.037815126,0.013620475,0.018,63,-20.15,positive,doi.org/10.1039/B109405J +186,11,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,3350,1.595238095,0.181818182,0.2,0.1,244.6,positive,doi.org/10.1021/ma00015a024 +211,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.0833,0.0833,2.75,6.34,positive,doi.org/10.1006/jcht.1999.0607 +14,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,methyl acetate,79-20-9,COC(=O)C,100000,1.060445387,0.060516342,0.068,0.1,27,positive,doi.org/10.1021/ma00015a024 +763,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0229,,0.1,23.254,positive,doi.org/10.1063/1.430349 +764,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.112799916,0.1463,0.1,24.73,positive,See 1986KRU in ISBN: 9781420067989 +271,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,2.98,156.581,negative,doi.org/10.1021/ma9517308 +86,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.143286669,0.1699,0.72,158.157,negative,doi.org/10.1021/ma9517308 +87,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.169547249,0.1999,1.548,31.449,positive,doi.org/10.1021/ma9517308 +91,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.21060407,0.1992,2.49,13.75,positive,doi.org/10.1006/jcht.1999.0607 +765,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.102,,0.1,21.46,positive,doi.org/10.1039/B301190A +766,35,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,335500,1.690176322,0.022204781,0.0297,0.1,25.16,positive,See 1986KRU in ISBN: 9781420067989 +733,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.05402428,0.0726,6.05,28.26,positive,doi.org/10.1016/S0378-3812(97)00302-6 +767,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.043760876,0.0581,0.1,27.29,positive,See 1986KRU in ISBN: 9781420067989 +387,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.012959657,0.018,4.1,206,negative,doi.org/10.1021/ie034302w +23,5,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,68000,1.03030303,0.10939397,0.1298,0.1,73.15,positive,doi.org/10.1021/je0504865 +768,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0444,,0.1,23.782,positive,doi.org/10.1063/1.430349 +26,6,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,16370,1.109830508,0.05615094,0.0822,0.1,170,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +37,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.084,,80,14.65,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +769,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.0081,,0.1,21.695,positive,doi.org/10.1103/PhysRevE.55.3159 +42,79,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,791000,1.010217114,0.006987455,0.00982,0.1,12.1,positive,doi.org/10.1627/jpi1958.33.117 +137,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.109403402,0.1419,0.63,13.46,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +388,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.036109458,0.0497,6.39,190.32,negative,See 2000BEH in ISBN: 9781420067989 +109,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.0587,,0.1,33.907,positive,doi.org/10.1063/1.472437 +734,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.114055986,0.15,30.956,21.05,positive,doi.org/10.1002/macp.1994.021950233 +118,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.687082232,0.7072,0.1,29.72,negative,doi.org/10.1016/S0022-2860(00)00559-7 +88,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.169547249,0.1999,4.4,25.548,positive,doi.org/10.1021/ma9517308 +735,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.090479565,0.12,2.1,56.2,positive,doi.org/10.1016/S0378-3812(97)00157-X +272,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.084136448,0.1076,1.93,155.289,negative,doi.org/10.1021/ma9517308 +736,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,38.853,46.79,positive,doi.org/10.1016/S0378-3812(97)00157-X +138,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.075072918,0.0985,2.08,90.46,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +389,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.094370769,0.127,8.6,206,negative,doi.org/10.1021/ie034302w +273,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.224203822,0.275,0.935,146.473,negative,doi.org/10.1021/ma9517308 +187,11,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,3350,1.595238095,0.414163842,0.443,0.1,172.3,negative,doi.org/10.1021/ma00015a024 +390,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.025687508,0.0355,4.9,215,negative,doi.org/10.1021/ie034302w +274,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.102211302,0.13,4.633,64.023,positive,doi.org/10.1021/ma9517308 +391,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.060286076,0.0822,4.5,179.95,negative,doi.org/10.1016/j.fluid.2003.07.004 +737,102,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.151967736,0.1972,24.61,10.77,positive,doi.org/10.1063/1.464440 +188,7,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8420,1.24925816,0.045681592,0.0511,0.1,283.4,positive,doi.org/10.1016/0378-3812(93)85105-U +770,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0389,,0.1,23.729,positive,doi.org/10.1063/1.430349 +738,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.048116473,0.0648,11.15,52.68,positive,doi.org/10.1016/S0378-3812(97)00302-6 +771,82,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0063,,0.1,25.48,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +212,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0622,0.0622,2.34,22.11,positive,doi.org/10.1006/jcht.1999.0607 +275,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.126732673,0.16,3.682,-4.294,positive,doi.org/10.1021/ma9517308 +772,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,100000,1.060445387,0.007438245,0.01,0.1,16.9,positive,doi.org/10.1021/ma00015a024 +739,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.058586078,0.0786,38.15,19.23,positive,doi.org/10.1063/1.464440 +740,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.192338678,0.2461,13.73,20.58,positive,doi.org/10.1063/1.464440 +189,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.2158,,0.1,117,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +276,104,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,13500,1.058823529,0.126732673,0.16,1.256,36.325,positive,doi.org/10.1021/ma9517308 +110,2,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,596000,1.040139616,0.0684,,0.1,60.195,positive,doi.org/10.1063/1.472437 +43,115,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,98900,1.019587629,0.006402452,0.009,0.1,177.9,negative,doi.org/10.1002/pen.760330806 +111,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.127937264,0.163,0.68,64.28,positive,doi.org/10.1021/ma00107a011 +773,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.0669,,0.1,23.68,positive,doi.org/10.1103/PhysRevE.55.3159 +9,1,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,ethoxybenzene,103-73-1,CCOc1ccccc1,24500,2.289719626,0.030060307,0.03,0.1,48.2,positive,See 1998SCH in ISBN: 9781420067989 +774,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.033,,0.1,29.76,positive,doi.org/10.1039/B301190A +70,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.175485948,0.204,2.24,59.98,positive,doi.org/10.1021/ma00107a011 +277,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.176799578,0.2199,2.821,163.567,negative,doi.org/10.1021/ma9517308 +392,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.053694841,0.0734,1.748,162.59,negative,doi.org/10.1016/j.supflu.2005.08.004 +741,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,12.242,51.36,positive,doi.org/10.1016/S0378-3812(97)00157-X +742,81,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,719000,1.060471976,0.0062,,0.1,59.825,positive,doi.org/10.1063/1.439127 +213,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2348,0.2348,1.76,5.73,positive,doi.org/10.1006/jcht.1999.0607 +775,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.073453696,0.09654,0.1,25.2,positive,See 1986KRU in ISBN: 9781420067989 +278,104,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,13500,1.058823529,0.181642512,0.2256,3.351,32.723,positive,doi.org/10.1021/ma9517308 +776,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.025901205,0.0346,0.1,27.03,positive,See 1986KRU in ISBN: 9781420067989 +743,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.2439,,0.1,22.917,positive,doi.org/10.1063/1.479914 +777,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0009,,0.1,19.46,positive,doi.org/10.1103/PhysRevA.18.2683 +744,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.096806139,0.1281,11.05,29.09,positive,doi.org/10.1016/S0378-3812(97)00302-6 +745,83,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,46400,1.059360731,0.0816,,0.1,39.355,positive,doi.org/10.1063/1.439127 +778,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.022581535,0.0302,0.1,27.33,positive,See 1986KRU in ISBN: 9781420067989 +393,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.041056487,0.0564,8.7,241,negative,doi.org/10.1021/ie034302w +394,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.162223041,0.2128,3.78,194.45,negative,See 2001TOR in ISBN: 9781420067989 +5,3,polyethylene,9002-88-4,*CC*,cyclopentene,142-29-0,C1CC=CC1,106000,5.273631841,0.050963522,0.06,4.1,210.8,negative,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +15,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,31200,1.2,0.11668788,0.1601,0.1,3.3,positive,doi.org/10.1016/0032-3861(95)91454-F +746,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.234042447,0.2952,75.9,18.77,positive,doi.org/10.1063/1.464440 +747,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.114055986,0.15,4.854,23.601,positive,doi.org/10.1002/macp.1994.021950233 +748,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.033831286,0.0458,6.125,56.2,positive,doi.org/10.1016/S0378-3812(97)00157-X +71,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.166591168,0.194,1.12,67.66,positive,doi.org/10.1021/ma00107a011 +111,2,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,596000,1.040139616,0.0149,,0.1,59.646,positive,doi.org/10.1063/1.472437 +119,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.000909174,0.001,0.1,34.02,negative,doi.org/10.1016/S0022-2860(00)00559-7 +749,102,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.151967736,0.1972,3.43,12.14,positive,doi.org/10.1063/1.464440 +279,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.159916002,0.1999,3.583,139.223,negative,doi.org/10.1021/ma9517308 +190,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.3488,,0.1,138.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +395,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.059610426,0.0813,1.48,168.05,negative,See 2001TOR in ISBN: 9781420067989 +44,99,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,43000,1.009389671,0.021978376,0.0307,0.1,183.5,negative,doi.org/10.1002/pen.760330806 +45,79,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,791000,1.010217114,0.068529961,0.09395,0.1,12.4,positive,doi.org/10.1627/jpi1958.33.117 +750,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,200000,1.058201058,0.025167797,0.03418,0.1,53.31,positive,doi.org/10.1021/ma60032a020 +751,25,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.2712,,0.1,12.244,positive,doi.org/10.1063/1.439127 +139,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.126382966,0.163,1.87,41.96,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +140,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.042437227,0.0563,4.34,-4.5,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +72,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.197860168,0.229,2.49,56.7,positive,doi.org/10.1021/ma00107a011 +779,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.018314877,0.02453,0.1,25.65,positive,See 1986KRU in ISBN: 9781420067989 +214,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1059,0.1059,5.03,42.19,positive,doi.org/10.1006/jcht.1999.0607 +752,107,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20200,1.057591623,0.1078,,0.1,25.623,positive,doi.org/10.1063/1.439127 +141,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.145931506,0.187,4.21,115.98,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +48,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.052602282,0.075,6.27,130,negative,doi.org/10.1021/je0103162 +38,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.216,,50,6.05,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +753,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.215463744,0.2735,10,22.473,positive,doi.org/10.1002/macp.1994.021950233 +112,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.123853657,0.158,1.81,52.02,positive,doi.org/10.1021/ma00107a011 +65,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],123000,1.060344828,0.052,,0.1,24.73,positive,doi.org/10.1039/B301190A +280,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.070072993,0.09,0.617,77.887,positive,doi.org/10.1021/ma9517308 +754,107,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20200,1.057591623,0.0442,,0.1,22.875,positive,doi.org/10.1063/1.439127 +281,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.143283582,0.18,1.255,-3.164,positive,doi.org/10.1021/ma9517308 +32,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,61400,1.04957265,0.077955569,0.094,0.1,212,negative,doi.org/10.1016/0032-3861(95)91454-F +780,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1301,,0.1,23.284,positive,doi.org/10.1063/1.430349 +46,50,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,791000,1.010217114,0.067892712,0.0931,0.1,161.6,negative,doi.org/10.1002/pen.760330806 +8,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-hexane,110-54-3,CCCCCC,1240,1.068965517,0.167685005,0.243,0.1,0.65,positive,doi.org/10.1016/S0378-3812(01)00548-9 +215,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1385,0.1385,5.76,6.34,positive,doi.org/10.1006/jcht.1999.0607 +755,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,35.79,19.7,positive,doi.org/10.1063/1.464440 +756,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,97200,1.05997819,0.123056115,0.16132,0.1,48.137,positive,doi.org/10.1021/ma60032a020 +120,8,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,258000,2.15,0.026890297,0.0295,50.75,34.75,negative,doi.org/10.1021/ma011533a +113,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,11500,1.069767442,0.274204095,0.334,0.1,-29.06,positive,doi.org/10.1063/1.1143329 +121,2,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,144000,2.057142857,0.003182831,0.0035,71.15,42.25,negative,doi.org/10.1021/ma011533a +781,20,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0238,,0.1,224.58,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +34,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.1205,0.1205,2.91,66.35,positive,doi.org/10.1006/jcht.1999.0607 +782,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,13200000,1.130136986,0.0147,,0.1,32.18,positive,doi.org/10.1039/B301190A +14,2,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,76500,1.100719424,0.073402596,0.0886,0.1,236.6,negative,doi.org/10.1016/0032-3861(95)91454-F +783,20,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0615,,0.1,25.5,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +282,104,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,13500,1.058823529,0.152122512,0.1906,1.194,36.346,positive,doi.org/10.1021/ma9517308 +757,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.048116473,0.0648,6.3,54.68,positive,doi.org/10.1016/S0378-3812(97)00302-6 +758,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.117960635,0.15492,80,21.203,positive,doi.org/10.1002/macp.1994.021950233 +49,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.03478741,0.05,10.89,130,negative,doi.org/10.1021/je0103162 +759,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.070164545,0.09374,20,20.864,positive,doi.org/10.1002/macp.1994.021950233 +760,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,5.87,56.36,positive,doi.org/10.1016/S0378-3812(97)00157-X +784,76,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.083679833,0.1096,0.1,23.92,positive,See 1996RON in ISBN: 9781420067989 +50,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.02563595,0.037,13.51,150,negative,doi.org/10.1021/je0103162 +761,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.05402428,0.0726,2.05,29.14,positive,doi.org/10.1016/S0378-3812(97)00302-6 +73,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.197860168,0.229,0.55,97.36,negative,doi.org/10.1021/ma00107a011 +27,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.257207891,0.3,1.11,-2.33,positive,doi.org/10.1021/ma00107a011 +785,82,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.1046,,0.1,24.55,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +786,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.080681394,0.10578,0.1,20.43,positive,See 1986KRU in ISBN: 9781420067989 +122,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.0810147,0.0884,0.1,33.35,negative,doi.org/10.1021/ma011533a +762,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.212489212,0.27,30.613,20.794,positive,doi.org/10.1002/macp.1994.021950233 +16,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,31200,1.2,0.074303432,0.1038,0.1,163.1,negative,doi.org/10.1016/0032-3861(95)91454-F +112,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.0305,,0.1,49.131,positive,doi.org/10.1063/1.472437 +283,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.199003566,0.2459,4.05,155.486,negative,doi.org/10.1021/ma9517308 +763,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,97200,1.05997819,0.08843932,0.11738,0.1,232.839,negative,doi.org/10.1021/ma60032a020 +764,87,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,109000,1.058252427,0.0518,,0.1,49.398,positive,doi.org/10.1063/1.439127 +284,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.159916002,0.1999,3.999,100.178,positive,doi.org/10.1021/ma9517308 +787,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.002524692,0.0034,0.1,19,positive,doi.org/10.1002/macp.1965.020880115 +34,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,100000,1.060445387,0.059328053,0.071,0.1,-19.6,positive,doi.org/10.1021/ma00015a024 +4,7,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,ethanol,64-17-5,CCO,74000,1.48,0.808627784,0.8377,0.1,50,positive,doi.org/10.1002/1521-3935(20020301)203:4<705::AID-MACP705>3.0.CO;2-7 +48,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.108305043,0.12,3.18,96.96,negative,doi.org/10.1021/ma00107a011 +216,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.0999,0.0999,1.65,6.55,positive,doi.org/10.1006/jcht.1999.0607 +396,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.053694841,0.0734,4.603,182.31,negative,doi.org/10.1016/j.supflu.2005.08.004 +217,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2867,0.2867,0.51,4.78,positive,doi.org/10.1006/jcht.1999.0607 +788,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.269,,0.1,19.72,positive,doi.org/10.1103/PhysRevA.18.2683 +789,26,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0705,,0.1,26.19,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +397,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.112846412,0.1508,2.7,173.71,negative,See 2000BEH in ISBN: 9781420067989 +765,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.4437,,0.1,13.5,positive,doi.org/10.1063/1.446753 +20,2,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,78800,1.119318182,0.017620849,0.0195,0.1,76.15,positive,doi.org/10.1021/je0504865 +398,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.148019545,0.1952,3.8,189.94,negative,doi.org/10.1016/j.fluid.2003.07.004 +89,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.221355036,0.2581,1.056,161.891,negative,doi.org/10.1021/ma9517308 +114,45,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,24700,1.037815126,0.013620475,0.018,59,-21.65,positive,doi.org/10.1039/B109405J +766,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.240492932,0.30267,10,22.256,positive,doi.org/10.1002/macp.1994.021950233 +35,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.0848,0.0848,3.53,66.51,positive,doi.org/10.1006/jcht.1999.0607 +285,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.224203822,0.275,2.042,72.431,positive,doi.org/10.1021/ma9517308 +218,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.1322,0.1322,4.03,48.79,positive,doi.org/10.1006/jcht.1999.0607 +115,53,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,16600,1.050632911,0.141900377,0.18,63.43,-15.05,positive,doi.org/10.1039/B109405J +767,19,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,297000,5.449541284,0.105365137,0.139,0.1,54.53,positive,See 1988SC2 in ISBN: 9781420067989 +219,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0535,0.0535,1.3,49.7,positive,doi.org/10.1006/jcht.1999.0607 +790,93,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0475,,0.1,223.76,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +768,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,72.96,19.92,positive,doi.org/10.1063/1.464440 +791,30,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,600000,1.099908341,0.045214464,0.06,15.2,27.81,positive,doi.org/10.1007/BF01525017 +769,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.234042447,0.2952,30.6,18.58,positive,doi.org/10.1063/1.464440 +15,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,methyl acetate,79-20-9,COC(=O)C,100000,1.060445387,0.002649503,0.003,0.1,129.35,negative,doi.org/10.1021/ma00015a024 +33,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.032838507,0.04,0.1,235.6,negative,doi.org/10.1016/0032-3861(95)91454-F +770,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,21.195,48.64,positive,doi.org/10.1016/S0378-3812(97)00157-X +792,73,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,41000,5.125,0.113360913,0.147,0.1,25.7,positive,doi.org/10.1002/pi.4980080407 +771,19,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,297000,5.449541284,0.039227092,0.053,0.1,58.38,positive,See 1988SC2 in ISBN: 9781420067989 +220,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2634,0.2634,4.36,5.03,positive,doi.org/10.1006/jcht.1999.0607 +286,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.133912138,0.1687,3.237,92.859,positive,doi.org/10.1021/ma9517308 +5,17,polystyrene,9003-53-6,*C(C*)c1ccccc1,bisphenol-A diglycidyl ether,1675-54-3,CC(C)(c1ccc(OCC2CO2)cc1)c3ccc(OCC4CO4)cc3,86700,1.044578313,0.0277,,0.1,58.59,positive,doi.org/10.1002/macp.200300106 +34,6,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,32900,1.018575851,0.124290021,0.1661,0.1,43.85,positive,doi.org/10.1021/je990141k +772,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.097275917,0.1287,8.83,21.75,positive,doi.org/10.1063/1.464440 +773,95,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17300,1.061349693,0.2439,,0.1,22.526,positive,doi.org/10.1063/1.439127 +774,89,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37900,1.010666667,0.251289625,0.3151,0.1,35.54,positive,See 1996RON in ISBN: 9781420067989 +793,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.01,,0.1,25.1,positive,doi.org/10.1039/B301190A +90,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.143286669,0.1699,2.294,32.488,positive,doi.org/10.1021/ma9517308 +113,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.0504,,0.1,17.018,positive,doi.org/10.1063/1.472437 +34,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.204664927,0.24,0.1,-26.5,positive,doi.org/10.1016/0032-3861(95)91454-F +775,83,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,46400,1.059360731,0.1812,,0.1,39.008,positive,doi.org/10.1063/1.439127 +34,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.105465507,0.142,1.36,29.78,positive,doi.org/10.1021/ma00107a011 +3,1,poly(vinyl acetate),9003-20-7,*CC(*)OC(C)=O,cyclopentane,287-92-3,C1CCCC1,124800,2.368121442,0.03842517,0.06,31.6,243.4,positive,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +399,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.050411811,0.069,5.8,191,negative,doi.org/10.1021/ie034302w +7,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,600000,1.099908341,0.098832367,0.1163,0.1,216.1,negative,doi.org/10.1016/0032-3861(95)91454-F +92,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.105951487,0.0995,4.62,14.25,positive,doi.org/10.1006/jcht.1999.0607 +794,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.084,,0.1,25.74,positive,doi.org/10.1039/B301190A +221,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1385,0.1385,2.26,6.65,positive,doi.org/10.1006/jcht.1999.0607 +191,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0547,,0.1,115.1,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +776,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.181960329,0.23366,10,22.765,positive,doi.org/10.1002/macp.1994.021950233 +777,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,1.409,58.96,positive,doi.org/10.1016/S0378-3812(97)00157-X +93,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.239830986,0.2273,0.46,13.7,positive,doi.org/10.1006/jcht.1999.0607 +778,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,7.13,53.88,positive,doi.org/10.1016/S0378-3812(97)00157-X +287,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.151620948,0.19,3.412,-3.701,positive,doi.org/10.1021/ma9517308 +795,111,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,20400,1.0625,0.113360913,0.147,0.1,6.6,positive,doi.org/10.1021/ma00015a024 +796,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.021,,0.1,30.471,positive,doi.org/10.1103/PhysRevA.18.2683 +797,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.052888859,0.07,0.1,27.5,positive,doi.org/10.1002/macp.1965.020880115 +192,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.2275,,0.1,117.6,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +400,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.060586478,0.0826,4.664,182.7,negative,doi.org/10.1016/j.supflu.2005.08.004 +798,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.0537894,0.07117,0.1,25.6,positive,See 1984GIL in ISBN: 9781420067989 +35,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.123399022,0.165,1.6,29.78,positive,doi.org/10.1021/ma00107a011 +116,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.082791819,0.107,1.24,8.76,positive,doi.org/10.1021/ma00107a011 +35,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.12580017,0.1183,2.43,38.12,positive,doi.org/10.1006/jcht.1999.0607 +123,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.092391254,0.1007,0.1,28.98,negative,doi.org/10.1016/S0022-2860(00)00559-7 +401,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.112846412,0.1508,4.67,188.21,negative,See 2000BEH in ISBN: 9781420067989 +35,5,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,600000,1.099908341,0.042465633,0.051,0.1,4.2,positive,doi.org/10.1021/ma00015a024 +799,33,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2700000,1.099796334,0.081010768,0.1062,0.1,29.59,positive,doi.org/10.1021/ma60032a020 +222,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1651,0.1651,0.56,42.24,positive,doi.org/10.1006/jcht.1999.0607 +47,118,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,98900,1.019587629,0.124453068,0.1669,0.1,2,positive,doi.org/10.1627/jpi1958.33.117 +74,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.09653999,0.114,1.04,66.98,positive,doi.org/10.1021/ma00107a011 +8,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,600000,1.099908341,0.033810427,0.0403,0.1,217.6,negative,doi.org/10.1016/0032-3861(95)91454-F +22,5,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,600000,1.099908341,0.006019272,0.007,0.1,150.5,negative,doi.org/10.1021/ma00015a024 +800,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.015,,0.1,29.69,positive,doi.org/10.1039/B301190A +288,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.176799578,0.2199,4.729,181.266,negative,doi.org/10.1021/ma9517308 +779,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.033831286,0.0458,2.739,58.07,positive,doi.org/10.1016/S0378-3812(97)00157-X +49,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.168180942,0.185,3.23,63.83,positive,doi.org/10.1021/ma00107a011 +780,25,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.0594,,0.1,9.112,positive,doi.org/10.1063/1.439127 +223,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.0922,0.0922,3.86,42.6,positive,doi.org/10.1006/jcht.1999.0607 +801,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0904,,0.1,23.807,positive,doi.org/10.1063/1.430349 +24,7,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,992000,1.05982906,0.08109845,0.0968,0.1,77.09,positive,doi.org/10.1021/je0504865 +802,76,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.131262481,0.1692,0.1,23.3,positive,See 1996RON in ISBN: 9781420067989 +193,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0315,,0.1,116.6,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +402,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.001720302,0.0024,7.068,212.06,negative,doi.org/10.1016/j.supflu.2005.08.004 +75,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.166591168,0.194,1.05,68.58,positive,doi.org/10.1021/ma00107a011 +76,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.111263273,0.131,1.08,93.56,negative,doi.org/10.1021/ma00107a011 +114,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.0237,,0.1,29.598,positive,doi.org/10.1063/1.472437 +289,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.102211302,0.13,1.375,77.93,positive,doi.org/10.1021/ma9517308 +781,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.024291101,0.033,7.6,54.94,positive,doi.org/10.1016/S0378-3812(97)00302-6 +142,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.13205856,0.17,3.98,115.03,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +403,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.162223041,0.2128,7.65,225.25,negative,See 2001TOR in ISBN: 9781420067989 +224,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1393,0.1393,1.36,24,positive,doi.org/10.1006/jcht.1999.0607 +9,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,600000,1.099908341,0.020752443,0.0248,0.1,219.1,negative,doi.org/10.1016/0032-3861(95)91454-F +782,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,41.741,44.9,positive,doi.org/10.1016/S0378-3812(97)00157-X +404,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.062390359,0.085,5.7,219,negative,doi.org/10.1021/ie034302w +783,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,17.708,51.64,positive,doi.org/10.1016/S0378-3812(97)00157-X +23,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,233000,1.059090909,0.026747349,0.031,0.1,153.5,negative,doi.org/10.1021/ma00015a024 +784,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,50.035,44.81,positive,doi.org/10.1016/S0378-3812(97)00157-X +405,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.010646004,0.0148,6.6,199.9,negative,doi.org/10.1016/j.fluid.2003.07.004 +406,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.112846412,0.1508,6.23,202.69,negative,See 2000BEH in ISBN: 9781420067989 +66,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.015,,0.1,29.52,positive,doi.org/10.1039/B301190A +194,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0969,,0.1,131.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +35,6,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,32900,1.018575851,0.096151473,0.1299,0.1,43.85,positive,doi.org/10.1021/je990141k +117,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.082791819,0.107,1.27,8.45,positive,doi.org/10.1021/ma00107a011 +803,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.141,,0.1,24.46,positive,doi.org/10.1103/PhysRevE.55.3159 +804,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0088,,0.1,21.855,positive,doi.org/10.1063/1.430349 +785,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.23818408,0.3,31.19,20.54,positive,doi.org/10.1002/macp.1994.021950233 +786,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.191618797,0.24524,40,20.654,positive,doi.org/10.1002/macp.1994.021950233 +290,104,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,13500,1.058823529,0.126732673,0.16,2.133,34.802,positive,doi.org/10.1021/ma9517308 +18,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.130772179,0.156,0.1,-11.4,positive,doi.org/10.1016/0032-3861(95)91454-F +50,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.154286487,0.17,3.67,64.3,positive,doi.org/10.1021/ma00107a011 +118,53,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,16600,1.050632911,0.141900377,0.18,60,-14.95,positive,doi.org/10.1039/B109405J +115,2,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,596000,1.040139616,0.086,,0.1,59.842,positive,doi.org/10.1063/1.472437 +787,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,27.16,20.01,positive,doi.org/10.1063/1.464440 +805,90,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.177889099,0.2258,0.1,19.58,positive,doi.org/10.1016/S0378-3812(99)00128-4 +788,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,39.385,45.26,positive,doi.org/10.1016/S0378-3812(97)00157-X +143,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.126382966,0.163,3.51,111.96,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +407,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.042610985,0.0585,7.334,201.88,negative,doi.org/10.1016/j.supflu.2005.08.004 +789,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,5.05,56.81,positive,doi.org/10.1016/S0378-3812(97)00157-X +291,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,3.817,172.596,negative,doi.org/10.1021/ma9517308 +790,19,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,297000,5.449541284,0.032485658,0.044,0.1,58.55,positive,See 1988SC2 in ISBN: 9781420067989 +5,1,polyisobutylene,9003-27-4,*CC(*)(C)C,n-heptane,142-82-5,CCCCCCC,1000000,1.666666667,0.018867925,0.025,2.5,180,negative,doi.org/10.1021/je010171z +806,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.008,,0.1,24.84,positive,doi.org/10.1039/B301190A +116,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.0218,,0.1,52.22,positive,doi.org/10.1063/1.472437 +791,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,19.663,49.83,positive,doi.org/10.1016/S0378-3812(97)00157-X +792,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,1.84,235.26,negative,doi.org/10.1016/S0378-3812(97)00157-X +292,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.168421053,0.21,2.048,-2.659,positive,doi.org/10.1021/ma9517308 +225,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2242,0.2242,5.11,5.81,positive,doi.org/10.1006/jcht.1999.0607 +67,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],2000000,1.299967501,0.045,,0.1,34.09,positive,doi.org/10.1039/B301190A +408,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.148019545,0.1952,2.4,179.83,negative,doi.org/10.1016/j.fluid.2003.07.004 +25,7,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,992000,1.05982906,0.003626121,0.0044,0.1,76.9,positive,doi.org/10.1021/je0504865 +226,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.0519,0.0519,5.23,41.88,positive,doi.org/10.1006/jcht.1999.0607 +21,2,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,78800,1.119318182,0.042494838,0.0469,0.1,78.65,positive,doi.org/10.1021/je0504865 +51,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.049016339,0.07,6.34,130,negative,doi.org/10.1021/je0103162 +793,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.212489212,0.27,75.894,20.794,positive,doi.org/10.1002/macp.1994.021950233 +794,70,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,400000,1.058201058,0.031544507,0.04274,0.1,59.409,positive,doi.org/10.1021/ma60032a020 +807,36,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,90000,1.040462428,0.156044744,0.1995,0.1,18.3,positive,doi.org/10.1016/S0378-3812(99)00128-4 +795,19,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,297000,5.449541284,0.020582545,0.028,0.1,59.07,positive,See 1988SC2 in ISBN: 9781420067989 +293,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.159916002,0.1999,4.183,147.555,negative,doi.org/10.1021/ma9517308 +409,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.147562055,0.19463,4.424,187.264,negative,doi.org/10.1016/j.supflu.2005.08.004 +195,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.270158511,0.294,0.1,124.2,negative,doi.org/10.1021/ma00015a024 +13,46,polystyrene,9003-53-6,*C(C*)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,233000,1.060054595,0.10884156,0.1277,0.1,246.3,negative,doi.org/10.1016/0032-3861(95)91454-F +12,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,2-propanone,67-64-1,CC(=O)C,44500,1.508474576,0.024724416,0.03,0.1,55.7,positive,See 1998SCH in ISBN: 9781420067989 +48,92,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,184000,1.069767442,0.008608374,0.01209,0.1,2.8,positive,doi.org/10.1627/jpi1958.33.117 +808,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.26585039,0.328,0.1,20,positive,doi.org/10.1002/macp.1965.020880115 +124,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.038025867,0.04167,0.1,32.35,negative,doi.org/10.1016/S0378-3812(01)00469-1 +26,7,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,992000,1.05982906,0.008497276,0.0103,0.1,77.43,positive,doi.org/10.1021/je0504865 +796,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,20.159,51.11,positive,doi.org/10.1016/S0378-3812(97)00157-X +809,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.0135,,0.1,22.52,positive,doi.org/10.1103/PhysRevE.55.3159 +410,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.042610985,0.0585,6.084,192.05,negative,doi.org/10.1016/j.supflu.2005.08.004 +27,4,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,31120,1.019993445,0.042613328,0.0628,0.1,165.9,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +68,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],2000000,1.299967501,0.043,,0.1,34.14,positive,doi.org/10.1039/B301190A +227,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.0999,0.0999,4.21,6.34,positive,doi.org/10.1006/jcht.1999.0607 +27,3,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,280000,1.060606061,0.084254273,0.1005,0.1,77.1,positive,doi.org/10.1021/je0504865 +17,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,31200,1.2,0.063118568,0.0886,0.1,162.8,negative,doi.org/10.1016/0032-3861(95)91454-F +117,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.1807,,0.1,34.288,positive,doi.org/10.1063/1.472437 +411,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.059610426,0.0813,3,178.25,negative,See 2001TOR in ISBN: 9781420067989 +797,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.179543347,0.23075,0.1,24.495,positive,doi.org/10.1002/macp.1994.021950233 +412,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.001720302,0.0024,5.333,197.47,negative,doi.org/10.1016/j.supflu.2005.08.004 +94,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.224035975,0.2121,3.99,-4.37,positive,doi.org/10.1006/jcht.1999.0607 +798,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37000,1.06017192,0.165446698,0.21368,0.1,246.343,negative,doi.org/10.1021/ma60032a020 +91,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.091732599,0.11,2.622,27.762,positive,doi.org/10.1021/ma9517308 +22,2,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,78800,1.119318182,0.076297755,0.0839,0.1,78.58,positive,doi.org/10.1021/je0504865 +119,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.114095631,0.146,0.45,82.1,negative,doi.org/10.1021/ma00107a011 +799,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.2825,,0.1,21.785,positive,doi.org/10.1063/1.439127 +15,2,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,76500,1.100719424,0.125637372,0.1499,0.1,11.3,positive,doi.org/10.1016/0032-3861(95)91454-F +800,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.0658,,0.1,21.865,positive,doi.org/10.1063/1.479914 +69,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],13200000,1.130136986,0.0065,,0.1,36.65,positive,doi.org/10.1039/B301190A +801,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,46.265,44.09,positive,doi.org/10.1016/S0378-3812(97)00157-X +413,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.147562055,0.19463,8.244,217.398,negative,doi.org/10.1016/j.supflu.2005.08.004 +19,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.066100094,0.08,0.1,187.8,negative,doi.org/10.1016/0032-3861(95)91454-F +810,39,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,670000,1.098360656,0.00579853,0.0078,0.1,27.01,positive,doi.org/10.1021/ma60032a020 +802,95,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17300,1.061349693,0.3292,,0.1,19.715,positive,doi.org/10.1063/1.439127 +36,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,100000,1.060445387,0.059328053,0.071,0.1,150,negative,doi.org/10.1021/ma00015a024 +77,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.09653999,0.114,2.25,58.81,positive,doi.org/10.1021/ma00107a011 +811,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.01145597,0.01538,0.1,27.66,positive,See 1984GIL in ISBN: 9781420067989 +39,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.216,,30,3.85,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +812,29,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,111000,1.050141911,0.045214464,0.06,0.1,21.03,positive,See 1986KRU in ISBN: 9781420067989 +36,15,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,32900,1.018575851,0.128146153,0.171,0.1,44.57,positive,doi.org/10.1063/1.1415454 +803,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.192338678,0.2461,15.98,20.32,positive,doi.org/10.1063/1.464440 +804,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.192338678,0.2461,48.44,19.01,positive,doi.org/10.1063/1.464440 +813,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.026883473,0.0359,0.1,27.04,positive,See 1986KRU in ISBN: 9781420067989 +6,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-octane,111-65-9,CCCCCCCC,1240,1.068965517,0.158273381,0.22,0.1,4.85,positive,doi.org/10.1016/S0378-3812(01)00548-9 +78,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.166591168,0.194,0.88,69.72,positive,doi.org/10.1021/ma00107a011 +196,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.008898776,0.01,0.1,284.6,positive,doi.org/10.1021/ma00015a024 +294,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,1.75,77.789,positive,doi.org/10.1021/ma9517308 +814,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.234944403,0.29275,0.1,18.99,positive,See 1984GIL in ISBN: 9781420067989 +228,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.0633,0.0633,2.56,42.9,positive,doi.org/10.1006/jcht.1999.0607 +229,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.1322,0.1322,1.34,49.59,positive,doi.org/10.1006/jcht.1999.0607 +295,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.143200418,0.1799,4.23,156.18,negative,doi.org/10.1021/ma9517308 +414,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.027077076,0.0374,7.1,190,negative,doi.org/10.1021/ie034302w +805,98,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.060790274,0.101,,0.1,35.814,positive,doi.org/10.1063/1.439127 +415,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.080034768,0.1083,3.2,180.23,negative,doi.org/10.1016/j.fluid.2003.07.004 +416,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.237537236,0.3031,3.067,187.749,negative,doi.org/10.1016/j.supflu.2005.08.004 +806,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,55.188,44.67,positive,doi.org/10.1016/S0378-3812(97)00157-X +70,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],2000000,1.299967501,0.025,,0.1,34.23,positive,doi.org/10.1039/B301190A +23,8,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,18970,1.04002193,0.03135427,0.0502,0.1,154.1,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +807,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,2.914,56.98,positive,doi.org/10.1016/S0378-3812(97)00157-X +197,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.2209,,0.1,132.15,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +18,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,31200,1.2,0.026929536,0.0384,0.1,167.3,negative,doi.org/10.1016/0032-3861(95)91454-F +815,84,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0734,,0.1,222.28,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +417,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.059610426,0.0813,9.59,229.75,negative,See 2001TOR in ISBN: 9781420067989 +418,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.004305154,0.006,6.6,179,negative,doi.org/10.1021/ie034302w +198,9,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,151000,3.696450428,0.1655,,0.1,107.7,negative,See 2001FIS in ISBN: 9781420067989 +816,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.228230868,0.285,0.1,22,positive,doi.org/10.1002/macp.1965.020880115 +79,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.085339266,0.101,1.34,107.67,negative,doi.org/10.1021/ma00107a011 +817,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.2721,,0.1,19.46,positive,doi.org/10.1103/PhysRevA.18.2683 +28,5,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,22920,1.070028011,0.121253046,0.172,0.1,168.7,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +808,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.115562594,0.1519,11.05,29.47,positive,doi.org/10.1016/S0378-3812(97)00302-6 +818,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.042461523,0.0564,0.1,19.8,positive,See 1986KRU in ISBN: 9781420067989 +819,93,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0742,,0.1,25.49,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +24,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,100000,1.060445387,0.059856432,0.069,0.1,164.4,negative,doi.org/10.1021/ma00015a024 +23,2,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,78800,1.119318182,0.08768172,0.0963,0.1,78.67,positive,doi.org/10.1021/je0504865 +36,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.207685345,0.1964,5.38,35.13,positive,doi.org/10.1006/jcht.1999.0607 +230,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1388,0.1388,0.3,24.25,positive,doi.org/10.1006/jcht.1999.0607 +419,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.067892668,0.0923,5.255,187.8,negative,doi.org/10.1016/j.supflu.2005.08.004 +199,3,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,4490,1.130982368,0.09352518,0.104,0.1,142.3,negative,doi.org/10.1016/0378-3812(93)85105-U +10,1,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,ethoxybenzene,103-73-1,CCOc1ccccc1,24500,2.289719626,0.300434963,0.3,0.1,41.1,positive,See 1998SCH in ISBN: 9781420067989 +51,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.175610347,0.193,3.95,57.06,positive,doi.org/10.1021/ma00107a011 +420,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.003514777,0.0049,3.9,179.98,negative,doi.org/10.1016/j.fluid.2003.07.004 +809,61,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,181000,1.058479532,0.1002,,0.1,53.722,positive,doi.org/10.1063/1.439127 +120,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,11500,1.069767442,0.101177767,0.13,0.1,-25.4,positive,doi.org/10.1063/1.1143329 +40,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.172,,40,12.95,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +95,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.081489244,0.0764,2.42,-4.81,positive,doi.org/10.1006/jcht.1999.0607 +820,131,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,93000,1.021978022,0.089505673,0.117,0.1,20.5,positive,doi.org/10.1002/polc.5070390106 +296,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.159916002,0.1999,3.366,107.875,positive,doi.org/10.1021/ma9517308 +421,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.047765372,0.065445,8.469,211.73,negative,doi.org/10.1016/j.supflu.2005.08.004 +821,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.114587825,0.14853,0.1,23.83,positive,See 1986KRU in ISBN: 9781420067989 +822,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.187708463,0.2375,0.1,22.22,positive,See 1986KRU in ISBN: 9781420067989 +37,4,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20100,1.020304569,0.150402216,0.199,0.1,33.56,positive,doi.org/10.1021/je990141k +118,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.2162,,0.1,33.226,positive,doi.org/10.1063/1.472437 +231,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0944,0.0944,3.75,23.31,positive,doi.org/10.1006/jcht.1999.0607 +92,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.091732599,0.11,4.673,190.337,negative,doi.org/10.1021/ma9517308 +297,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,0.576,84.686,positive,doi.org/10.1021/ma9517308 +810,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,2.787,58.11,positive,doi.org/10.1016/S0378-3812(97)00157-X +71,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.097,,0.1,29.56,positive,doi.org/10.1039/B301190A +298,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,4.915,63.844,positive,doi.org/10.1021/ma9517308 +232,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.134,0.134,4.28,6.25,positive,doi.org/10.1006/jcht.1999.0607 +5,46,polystyrene,9003-53-6,*C(C*)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,233000,1.060054595,0.064899104,0.0768,0.1,271.6,negative,doi.org/10.1016/0032-3861(95)91454-F +80,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.104323873,0.123,2.67,58.99,positive,doi.org/10.1021/ma00107a011 +6,117,polystyrene,9003-53-6,*C(C*)c1ccccc1,bisphenol-A diglycidyl ether,1675-54-3,CC(C)(c1ccc(OCC2CO2)cc1)c3ccc(OCC4CO4)cc3,228000,1.050691244,0.0277,,0.1,72.18,positive,doi.org/10.1002/macp.200300106 +811,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.234042447,0.2952,66.78,18.5,positive,doi.org/10.1063/1.464440 +823,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0062,,0.1,29.776,positive,doi.org/10.1103/PhysRevA.18.2683 +200,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.3048,,0.1,135.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +812,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,29.772,47.18,positive,doi.org/10.1016/S0378-3812(97)00157-X +813,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,9.81,21.55,positive,doi.org/10.1063/1.464440 +72,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],13200000,1.130136986,0.0159,,0.1,36.75,positive,doi.org/10.1039/B301190A +121,45,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,24700,1.037815126,0.013620475,0.018,2,127.85,negative,doi.org/10.1039/B109405J +814,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,97200,1.05997819,0.039197056,0.05296,0.1,232.648,negative,doi.org/10.1021/ma60032a020 +8,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-pentane,109-66-0,CCCCC,1240,1.068965517,0.165186501,0.248,0.1,12.35,positive,doi.org/10.1016/S0378-3812(01)00548-9 +35,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.067010363,0.081,0.1,-23.5,positive,doi.org/10.1016/0032-3861(95)91454-F +824,39,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,670000,1.098360656,0.004532755,0.0061,0.1,218.71,negative,doi.org/10.1021/ma60032a020 +119,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.0738,,0.1,43.685,positive,doi.org/10.1063/1.472437 +122,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.212733185,0.264,1.16,10.08,positive,doi.org/10.1021/ma00107a011 +815,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.024291101,0.033,2.4,57.61,positive,doi.org/10.1016/S0378-3812(97)00302-6 +19,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,31200,1.2,0.063118568,0.0886,0.1,2.8,positive,doi.org/10.1016/0032-3861(95)91454-F +233,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1503,0.1503,5.05,23.59,positive,doi.org/10.1006/jcht.1999.0607 +422,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.047765372,0.065445,2.749,167.66,negative,doi.org/10.1016/j.supflu.2005.08.004 +299,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.176799578,0.2199,2.883,163.544,negative,doi.org/10.1021/ma9517308 +300,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.070072993,0.09,0.676,77.889,positive,doi.org/10.1021/ma9517308 +120,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.0929,,0.1,53.079,positive,doi.org/10.1063/1.472437 +423,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.037067837,0.051,4.5,216,negative,doi.org/10.1021/ie034302w +52,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.186779372,0.205,2.89,90.52,negative,doi.org/10.1021/ma00107a011 +6,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,600000,1.099908341,0.041723515,0.0496,0.1,267.7,negative,doi.org/10.1016/0032-3861(95)91454-F +816,102,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.151967736,0.1972,80.41,11.68,positive,doi.org/10.1063/1.464440 +825,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.142825952,0.1834,0.1,23.97,positive,See 1984GIL in ISBN: 9781420067989 +826,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.014165656,0.019,0.1,25,positive,doi.org/10.1002/macp.1965.020880115 +52,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.013782542,0.02,13.37,150,negative,doi.org/10.1021/je0103162 +144,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.096178884,0.1253,5.64,5.53,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +14,77,polystyrene,9003-53-6,*C(C*)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,1971000,1.260230179,0.046987631,0.0558,0.1,236,negative,doi.org/10.1016/0032-3861(95)91454-F +827,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.1474,,0.1,24.576,positive,doi.org/10.1103/PhysRevE.55.3159 +37,5,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,600000,1.099908341,0.042465633,0.051,0.1,117.9,negative,doi.org/10.1021/ma00015a024 +301,49,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22000,1.030010768,0.048730964,0.063,1.81,64.2,positive,doi.org/10.1002/polb.1994.090321315 +93,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,1.239,30.246,positive,doi.org/10.1021/ma9517308 +817,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.097275917,0.1287,41.48,19.68,positive,doi.org/10.1063/1.464440 +828,20,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0746,,0.1,25.19,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +829,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.002,,0.1,25.63,positive,doi.org/10.1103/PhysRevE.55.3159 +424,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.003026428,0.00422,6.2,174.2,negative,doi.org/10.1021/ie034302w +16,2,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,76500,1.100719424,0.103334156,0.1239,0.1,236,negative,doi.org/10.1016/0032-3861(95)91454-F +234,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.0714,0.0714,5.3,4.12,positive,doi.org/10.1006/jcht.1999.0607 +20,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.159443695,0.189,0.1,-12.6,positive,doi.org/10.1016/0032-3861(95)91454-F +123,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.212733185,0.264,0.33,11.45,positive,doi.org/10.1021/ma00107a011 +830,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.0418,,0.1,23.61,positive,doi.org/10.1103/PhysRevE.55.3159 +96,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.197460596,0.1866,4.94,-4.27,positive,doi.org/10.1006/jcht.1999.0607 +818,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.137663839,0.17954,50,20.694,positive,doi.org/10.1002/macp.1994.021950233 +831,74,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,101400,1.090322581,0.08163835,0.107,3.2,228.07,negative,doi.org/10.1016/S0896-8446(01)00144-9 +38,7,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,75600,1.05,0.149440594,0.1978,0.1,53.45,positive,doi.org/10.1021/je990141k +38,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,100000,1.060445387,0.008266828,0.01,0.1,160,negative,doi.org/10.1021/ma00015a024 +819,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.033831286,0.0458,11.762,53.7,positive,doi.org/10.1016/S0378-3812(97)00157-X +73,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],123000,1.060344828,0.026,,0.1,23.87,positive,doi.org/10.1039/B301190A +121,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.0771,,0.1,34.513,positive,doi.org/10.1063/1.472437 +425,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.080034768,0.1083,4.7,190.27,negative,doi.org/10.1016/j.fluid.2003.07.004 +832,121,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,101400,1.090322581,0.087141082,0.114,2.35,225.2,negative,See 1999BUN in ISBN: 9781420067989 +49,99,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,43000,1.009389671,0.156347898,0.2071,0.1,181.5,negative,doi.org/10.1002/pen.760330806 +235,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1911,0.1911,2.74,39.99,positive,doi.org/10.1006/jcht.1999.0607 +833,93,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0742,,0.1,224.29,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +820,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,15.352,52.72,positive,doi.org/10.1016/S0378-3812(97)00157-X +302,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,0.241,87.668,positive,doi.org/10.1021/ma9517308 +94,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.221355036,0.2581,5.193,21.52,positive,doi.org/10.1021/ma9517308 +95,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.091732599,0.11,0.97,31.401,positive,doi.org/10.1021/ma9517308 +821,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.0447,,0.1,20.341,positive,doi.org/10.1063/1.446753 +41,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.084,,70,13.95,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +426,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.051604672,0.0706,6.029,192.62,negative,doi.org/10.1016/j.supflu.2005.08.004 +36,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,61400,1.04957265,0.04112483,0.05,0.1,215.8,negative,doi.org/10.1016/0032-3861(95)91454-F +427,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.076532282,0.1037,9.46,221.94,negative,See 2000BEH in ISBN: 9781420067989 +303,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.199003566,0.2459,5.406,85.302,positive,doi.org/10.1021/ma9517308 +236,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.2265,0.2265,3.9,36.58,positive,doi.org/10.1006/jcht.1999.0607 +822,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,0.7,57.02,positive,doi.org/10.1016/S0378-3812(97)00157-X +823,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,7.812,55.07,positive,doi.org/10.1016/S0378-3812(97)00157-X +10,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,600000,1.099908341,0.110558414,0.1298,0.1,216.6,negative,doi.org/10.1016/0032-3861(95)91454-F +834,84,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0312,,0.1,220.1,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +835,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0132,,0.1,22.47,positive,doi.org/10.1063/1.430349 +836,93,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0325,,0.1,25.86,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +824,87,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,109000,1.058252427,0.1118,,0.1,49.484,positive,doi.org/10.1063/1.439127 +837,73,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,41000,5.125,0.10616412,0.138,0.1,25.4,positive,doi.org/10.1002/pi.4980080407 +201,7,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8420,1.24925816,0.090614887,0.1008,0.1,120.9,negative,doi.org/10.1016/0378-3812(93)85105-U +304,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.159916002,0.1999,5.477,164.36,negative,doi.org/10.1021/ma9517308 +838,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.02,,0.1,29.73,positive,doi.org/10.1039/B301190A +428,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.187363134,0.2435,8.099,221.735,negative,doi.org/10.1016/j.supflu.2005.08.004 +839,90,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.0954337,0.1245,0.1,23.98,positive,doi.org/10.1016/S0378-3812(99)00128-4 +825,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,2.3,58.51,positive,doi.org/10.1016/S0378-3812(97)00157-X +826,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.191618797,0.24524,80,21.073,positive,doi.org/10.1002/macp.1994.021950233 +429,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.016075286,0.0223,3.048,172.73,negative,doi.org/10.1016/j.supflu.2005.08.004 +840,20,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0238,,0.1,25.64,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +430,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.062390359,0.085,5.2,210,negative,doi.org/10.1021/ie034302w +431,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.016075286,0.0223,5.763,192.49,negative,doi.org/10.1016/j.supflu.2005.08.004 +53,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.045441935,0.065,6.69,130,negative,doi.org/10.1021/je0103162 +841,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.037443151,0.04982,0.1,22,positive,See 1984GIL in ISBN: 9781420067989 +432,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.001720302,0.0024,6.498,207.31,negative,doi.org/10.1016/j.supflu.2005.08.004 +122,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.047,,0.1,33.226,positive,doi.org/10.1063/1.472437 +827,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,72.37,29.66,positive,doi.org/10.1063/1.464440 +42,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.172,,50,13.55,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +842,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.123333611,0.1594,0.1,25.51,positive,See 1986KRU in ISBN: 9781420067989 +843,30,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,600000,1.099908341,0.022656898,0.0303,0.1,28.14,positive,doi.org/10.1007/BF01525017 +123,2,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,596000,1.040139616,0.1489,,0.1,56.594,positive,doi.org/10.1063/1.472437 +844,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.007393501,0.00994,0.1,27.63,positive,See 1984GIL in ISBN: 9781420067989 +145,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.13205856,0.17,0.5,45.95,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +828,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,84.53,29.9,positive,doi.org/10.1063/1.464440 +5,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],methylcyclopentane,96-37-7,CC1CCCC1,26900,1.059055118,0.142795134,0.179,0.95,29.96,positive,doi.org/10.1021/ma00107a011 +829,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.090479565,0.12,1.77,56.4,positive,doi.org/10.1016/S0378-3812(97)00157-X +845,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.035,,0.1,29.75,positive,doi.org/10.1039/B301190A +24,8,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,18970,1.04002193,0.042320748,0.0673,0.1,154,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +36,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.2291,0.2291,4.32,63.26,positive,doi.org/10.1006/jcht.1999.0607 +97,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.075015907,0.0703,2.42,14.25,positive,doi.org/10.1006/jcht.1999.0607 +830,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.093514303,0.12389,70,20.74,positive,doi.org/10.1002/macp.1994.021950233 +433,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.045517759,0.06242,9.134,217.31,negative,doi.org/10.1016/j.supflu.2005.08.004 +846,84,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0628,,0.1,26.58,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +8,6,polyethylene,9002-88-4,*CC*,1-octene,111-66-0,CCCCCCC=C,105000,2.441860465,0.015456236,0.0198,4.16,271.35,negative,See 2001TOR in ISBN: 9781420067989 +202,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.183678109,0.202,0.1,295.7,positive,doi.org/10.1021/ma00015a024 +831,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.074826302,0.0998,13.53,20.93,positive,doi.org/10.1063/1.464440 +305,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,0.241,87.56,positive,doi.org/10.1021/ma9517308 +847,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0101,,0.1,27.25,positive,doi.org/10.1103/PhysRevE.55.3159 +96,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.221355036,0.2581,4.984,190.46,negative,doi.org/10.1021/ma9517308 +237,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.025,0.025,3.43,45.59,positive,doi.org/10.1006/jcht.1999.0607 +203,3,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,4490,1.130982368,0.271773721,0.2957,0.1,142.3,negative,doi.org/10.1016/0378-3812(93)85105-U +832,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,7.88,53.56,positive,doi.org/10.1016/S0378-3812(97)00157-X +848,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.0932,,0.1,23.61,positive,doi.org/10.1103/PhysRevE.55.3159 +833,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.103004224,0.136,1.6,55.14,positive,doi.org/10.1016/S0378-3812(97)00302-6 +124,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.127937264,0.163,1.56,54.67,positive,doi.org/10.1021/ma00107a011 +146,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.085273484,0.1115,2.81,10.58,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +849,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.134266951,0.1729,0.1,24.96,positive,See 1984GIL in ISBN: 9781420067989 +37,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.184397996,0.1741,3.61,36.8,positive,doi.org/10.1006/jcht.1999.0607 +834,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.093514303,0.12389,20,21.525,positive,doi.org/10.1002/macp.1994.021950233 +28,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.109425436,0.132,0.29,4.32,positive,doi.org/10.1021/ma00107a011 +125,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.386765372,0.4096,0.1,27.08,negative,doi.org/10.1016/S0022-2860(00)00559-7 +850,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.037,,0.1,29.73,positive,doi.org/10.1039/B301190A +6,32,polystyrene,9003-53-6,*C(C*)c1ccccc1,diisodecyl phthalate,26761-40-0,CC(C)CCCCCCCOC(=O)c1ccccc1C(=O)OCCCCCCCC(C)C,235000,2.100089366,0.046230339,0.05,0.1,59.35,positive,See 2001HE1 in ISBN: 9036516463 +38,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.131491471,0.1237,1.43,38.44,positive,doi.org/10.1006/jcht.1999.0607 +851,73,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,41000,5.125,0.108559196,0.141,0.1,25.4,positive,doi.org/10.1002/pi.4980080407 +852,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,97200,1.05997819,0.096463637,0.1258,0.1,20.33,positive,doi.org/10.1021/ma60032a020 +13,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,2-propanone,67-64-1,CC(=O)C,44500,1.508474576,0.614072645,0.66,0.1,26.1,positive,See 1998SCH in ISBN: 9781420067989 +853,36,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,90000,1.040462428,0.07155098,0.0941,0.1,19.63,positive,doi.org/10.1016/S0378-3812(99)00128-4 +97,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.143286669,0.1699,4.914,26.268,positive,doi.org/10.1021/ma9517308 +29,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.151508193,0.181,1.89,2.98,positive,doi.org/10.1021/ma00107a011 +835,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,17.426,51.74,positive,doi.org/10.1016/S0378-3812(97)00157-X +836,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,27.926,47.86,positive,doi.org/10.1016/S0378-3812(97)00157-X +837,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,1.7,53.97,positive,doi.org/10.1016/S0378-3812(97)00157-X +50,54,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,43000,1.009389671,0.15177736,0.2014,0.1,-5.4,positive,doi.org/10.1627/jpi1958.33.117 +838,95,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17300,1.061349693,0.2916,,0.1,21.325,positive,doi.org/10.1063/1.439127 +839,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.191618797,0.24524,10,22.672,positive,doi.org/10.1002/macp.1994.021950233 +54,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.041879016,0.06,12,170,negative,doi.org/10.1021/je0103162 +7,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,600000,1.099908341,0.025237887,0.0301,0.1,269.7,negative,doi.org/10.1016/0032-3861(95)91454-F +124,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.2214,,0.1,40.122,positive,doi.org/10.1063/1.472437 +434,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.047434485,0.065,3.5,214,negative,doi.org/10.1021/ie034302w +854,58,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,286000,2.2,0.014465381,0.0194,0.1,25.87,positive,doi.org/10.1021/je0504865 +39,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,233000,1.059090909,0.004129799,0.005,0.1,139.9,negative,doi.org/10.1021/ma00015a024 +30,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.214854268,0.253,0.35,5.46,positive,doi.org/10.1021/ma00107a011 +126,9,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,88200,1.8,9.09E-06,1.00E-05,0.1,37,negative,doi.org/10.1295/polymj.34.383 +855,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0054,,0.1,26.84,positive,doi.org/10.1103/PhysRevE.55.3159 +238,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0457,0.0457,1.65,49.28,positive,doi.org/10.1006/jcht.1999.0607 +840,98,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.060790274,0.0379,,0.1,33.698,positive,doi.org/10.1063/1.439127 +841,83,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,46400,1.059360731,0.1707,,0.1,39.184,positive,doi.org/10.1063/1.439127 +842,107,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20200,1.057591623,0.2633,,0.1,24.799,positive,doi.org/10.1063/1.439127 +856,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.002896344,0.0039,0.1,21,positive,doi.org/10.1002/macp.1965.020880115 +435,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.114880564,0.1534,2.798,172.424,negative,doi.org/10.1016/j.supflu.2005.08.004 +857,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1489,,0.1,22.868,positive,doi.org/10.1063/1.430349 +239,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0944,0.0944,1.22,23.71,positive,doi.org/10.1006/jcht.1999.0607 +127,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.185468115,0.2003,0.1,28.82,negative,doi.org/10.1016/S0022-2860(00)00559-7 +858,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.007438245,0.01,0.1,27.5,positive,doi.org/10.1002/macp.1965.020880115 +6,3,polyethylene,9002-88-4,*CC*,cyclopentene,142-29-0,C1CC=CC1,106000,5.273631841,0.050963522,0.06,6.23,224.9,negative,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +81,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.085339266,0.101,2.33,54.94,positive,doi.org/10.1021/ma00107a011 +843,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.091259073,0.121,50,20.465,positive,doi.org/10.1002/macp.1994.021950233 +8,1,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,20000,2.5,0.1953125,0.2,0.1,35.5,negative,doi.org/10.1021/jp0574854 +844,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,2.17,238.01,negative,doi.org/10.1016/S0378-3812(97)00157-X +128,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.038053348,0.0417,40,34.85,negative,doi.org/10.1021/ma011533a +204,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.1982,,0.1,115.8,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +147,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.126382966,0.163,1.37,43.99,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +859,84,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0881,,0.1,25.83,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +205,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0252,,0.1,139.7,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +37,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.04112483,0.05,0.1,233.6,negative,doi.org/10.1016/0032-3861(95)91454-F +148,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.145931506,0.187,2.1,106.94,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +206,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0312,,0.1,137.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +98,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.249063489,0.2362,0.32,-4.14,positive,doi.org/10.1006/jcht.1999.0607 +20,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,31200,1.2,0.106612808,0.1469,0.1,3.1,positive,doi.org/10.1016/0032-3861(95)91454-F +860,111,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,20400,1.0625,0.021677489,0.029,0.1,4.5,positive,doi.org/10.1021/ma00015a024 +845,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,1.92,56.42,positive,doi.org/10.1016/S0378-3812(97)00157-X +51,103,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,354000,1.020172911,0.007972604,0.0112,0.1,165.8,negative,doi.org/10.1002/pen.760330806 +207,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.2264,,0.1,131.95,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +846,98,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.060790274,0.0713,,0.1,35.438,positive,doi.org/10.1063/1.439127 +36,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,22100,1.03030303,0.114011441,0.153,2.24,26.97,positive,doi.org/10.1021/ma00107a011 +99,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.187744248,0.1773,1.35,14.46,positive,doi.org/10.1006/jcht.1999.0607 +436,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.031034654,0.0428,2.9,157,negative,doi.org/10.1021/ie034302w +847,39,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,670000,1.098360656,0.051347472,0.06907,0.1,61.593,positive,doi.org/10.1021/ma60032a020 +306,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.202445508,0.2499,0.62,82.082,positive,doi.org/10.1021/ma9517308 +848,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,1.2,56.78,positive,doi.org/10.1016/S0378-3812(97)00157-X +861,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.005947518,0.008,0.1,22.22,positive,See 1986KRU in ISBN: 9781420067989 +40,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,233000,1.059090909,0.042465633,0.051,0.1,-3.7,positive,doi.org/10.1021/ma00015a024 +125,100,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,7800,1.18993135,0.266171408,0.325,0.1,-21.5,positive,doi.org/10.1063/1.1143329 +208,11,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,3350,1.595238095,0.13559322,0.15,0.1,155.5,negative,doi.org/10.1021/ma00015a024 +43,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.042,,70,11.65,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +307,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,5.109,63.988,positive,doi.org/10.1021/ma9517308 +53,5,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],10500,1.019417476,0.199847839,0.219,0.47,-4.37,positive,doi.org/10.1021/ma00107a011 +849,83,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,46400,1.059360731,0.1429,,0.1,39.426,positive,doi.org/10.1063/1.439127 +862,73,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,41000,5.125,0.139233403,0.179,0.1,25.7,positive,doi.org/10.1002/pi.4980080407 +7,17,polystyrene,9003-53-6,*C(C*)c1ccccc1,bisphenol-A diglycidyl ether,1675-54-3,CC(C)(c1ccc(OCC2CO2)cc1)c3ccc(OCC4CO4)cc3,86700,1.044578313,0.1643,,0.1,65.9,positive,doi.org/10.1002/macp.200300106 +308,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.159916002,0.1999,4.726,155.715,negative,doi.org/10.1021/ma9517308 +100,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.161455849,0.1522,0.61,14.91,positive,doi.org/10.1006/jcht.1999.0607 +863,113,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,610000,1.077738516,0.003714317,0.005,0.1,27.3,positive,doi.org/10.1021/ma00015a024 +864,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,100000,1.060445387,0.078503102,0.103,0.1,20.6,positive,doi.org/10.1021/ma00015a024 +74,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],123000,1.060344828,0.084,,0.1,24.94,positive,doi.org/10.1039/B301190A +16,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,methyl acetate,79-20-9,COC(=O)C,100000,1.060445387,0.015925008,0.018,0.1,32.7,positive,doi.org/10.1021/ma00015a024 +25,9,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,7410,1.170616114,0.018275789,0.0295,0.1,160,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +850,81,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,719000,1.060471976,0.0095,,0.1,60.681,positive,doi.org/10.1063/1.439127 +865,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.020924548,0.028,0.1,24.4,positive,doi.org/10.1002/macp.1965.020880115 +8,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,600000,1.099908341,0.058573052,0.0694,0.1,266.3,negative,doi.org/10.1016/0032-3861(95)91454-F +866,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.05799154,0.07662,0.1,25.73,positive,See 1984GIL in ISBN: 9781420067989 +867,126,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,103000,1.009803922,0.2364,,0.1,17,positive,doi.org/10.1002/pol.1981.180190913 +129,8,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,258000,2.15,0.026890297,0.0295,2.055,33.45,negative,doi.org/10.1021/ma011533a +75,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],25000,1.059322034,0.172,,0.1,10.19,positive,doi.org/10.1039/B301190A +309,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.126732673,0.16,1.43,-2.696,positive,doi.org/10.1021/ma9517308 +868,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.021903448,0.0293,0.1,26.94,positive,See 1986KRU in ISBN: 9781420067989 +310,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.176799578,0.2199,1.659,77.651,positive,doi.org/10.1021/ma9517308 +240,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1385,0.1385,4.65,6.45,positive,doi.org/10.1006/jcht.1999.0607 +851,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37000,1.06017192,0.138784474,0.18093,0.1,247.113,negative,doi.org/10.1021/ma60032a020 +241,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.044,0.044,1.95,42.29,positive,doi.org/10.1006/jcht.1999.0607 +869,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.210184209,0.264,0.1,23,positive,doi.org/10.1002/macp.1965.020880115 +41,5,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,600000,1.099908341,0.024887625,0.03,0.1,5.5,positive,doi.org/10.1021/ma00015a024 +149,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.13205856,0.17,2.61,109,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +870,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,13200000,1.130136986,0.0112,,0.1,32.17,positive,doi.org/10.1039/B301190A +150,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.126382966,0.163,2.97,109.95,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +242,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.1212,0.1212,0.53,49.96,positive,doi.org/10.1006/jcht.1999.0607 +871,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.052988891,0.07013,0.1,24.5,positive,See 1984GIL in ISBN: 9781420067989 +872,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.039904417,0.05305,0.1,24.51,positive,See 1984GIL in ISBN: 9781420067989 +873,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0318,,0.1,23.581,positive,doi.org/10.1063/1.430349 +852,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37000,1.06017192,0.138784474,0.18093,0.1,35.403,positive,doi.org/10.1021/ma60032a020 +209,3,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,4490,1.130982368,0.425585695,0.4546,0.1,236.2,positive,doi.org/10.1016/0378-3812(93)85105-U +76,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.011,,0.1,29.2,positive,doi.org/10.1039/B301190A +77,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],13200000,1.130136986,0.0132,,0.1,36.78,positive,doi.org/10.1039/B301190A +311,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.159916002,0.1999,3.971,100.184,positive,doi.org/10.1021/ma9517308 +853,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,24.305,47.89,positive,doi.org/10.1016/S0378-3812(97)00157-X +854,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,36.275,45.86,positive,doi.org/10.1016/S0378-3812(97)00157-X +101,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.108699719,0.1021,1.23,-3.88,positive,doi.org/10.1006/jcht.1999.0607 +125,2,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,596000,1.040139616,0.1285,,0.1,57.791,positive,doi.org/10.1063/1.472437 +37,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.105465507,0.142,2.2,29.43,positive,doi.org/10.1021/ma00107a011 +130,8,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,258000,2.15,0.026890297,0.0295,5,33.85,negative,doi.org/10.1021/ma011533a +855,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.1256,,0.1,22.73,positive,doi.org/10.1063/1.439127 +874,33,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2700000,1.099796334,0.012218958,0.0164,0.1,30.88,positive,doi.org/10.1021/ma60032a020 +210,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0254,,0.1,116.4,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +52,9,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,354000,1.020172911,0.023170829,0.03235,0.1,9.4,positive,doi.org/10.1627/jpi1958.33.117 +437,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.005455676,0.0076,6.6,190.03,negative,doi.org/10.1016/j.fluid.2003.07.004 +856,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.115562594,0.1519,5.05,30.85,positive,doi.org/10.1016/S0378-3812(97)00302-6 +857,89,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37900,1.010666667,0.220491745,0.2794,0.1,35.6,positive,See 1996RON in ISBN: 9781420067989 +312,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,5.387,64.007,positive,doi.org/10.1021/ma9517308 +875,35,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,335500,1.690176322,0.098843143,0.1288,0.1,24.15,positive,See 1986KRU in ISBN: 9781420067989 +5,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-methylpentane,107-83-5,CCCC(C)C,1240,1.068965517,0.113292975,0.17,0.1,12.45,positive,doi.org/10.1016/S0378-3812(01)00548-9 +102,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.105951487,0.0995,1.37,14.81,positive,doi.org/10.1006/jcht.1999.0607 +438,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.065100905,0.0886,6.6,190.01,negative,doi.org/10.1016/j.fluid.2003.07.004 +876,26,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.1507,,0.1,24.34,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +131,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.045386884,0.0497,0.1,29.25,negative,doi.org/10.1016/S0022-2860(00)00559-7 +132,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.038025867,0.04167,30,35.12,negative,doi.org/10.1016/S0378-3812(01)00469-1 +55,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.049016339,0.07,8.96,150,negative,doi.org/10.1021/je0103162 +56,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.013782542,0.02,10.89,150,negative,doi.org/10.1021/je0103162 +313,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.199003566,0.2459,4.232,92.516,positive,doi.org/10.1021/ma9517308 +53,86,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,171900,1.029958059,0.007044544,0.0099,0.1,172.5,negative,doi.org/10.1002/pen.760330806 +858,25,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.1442,,0.1,12.397,positive,doi.org/10.1063/1.439127 +877,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0906,,0.1,26.143,positive,doi.org/10.1103/PhysRevE.55.3159 +44,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.084,,0.1,8.85,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +859,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,3.641,56.1,positive,doi.org/10.1016/S0378-3812(97)00157-X +878,26,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.0368,,0.1,27.54,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +860,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.074826302,0.0998,9.32,21.4,positive,doi.org/10.1063/1.464440 +861,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.023771294,0.0323,3.05,25.84,positive,doi.org/10.1016/S0378-3812(97)00302-6 +211,6,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,2530,1.171296296,0.398362319,0.4269,0.1,170.9,negative,doi.org/10.1016/0378-3812(93)85105-U +879,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0942,,0.1,23.782,positive,doi.org/10.1063/1.430349 +45,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.042,,60,10.85,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +439,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.053694841,0.0734,5.263,187.2,negative,doi.org/10.1016/j.supflu.2005.08.004 +38,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.123399022,0.165,0.9,30.1,positive,doi.org/10.1021/ma00107a011 +54,50,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,791000,1.010217114,0.030095337,0.0419,0.1,161,negative,doi.org/10.1002/pen.760330806 +243,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.139,0.139,1.69,42.5,positive,doi.org/10.1006/jcht.1999.0607 +880,90,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.021978775,0.0294,0.1,23.07,positive,doi.org/10.1016/S0378-3812(99)00128-4 +54,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.237413105,0.259,2.05,89.92,negative,doi.org/10.1021/ma00107a011 +440,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.078282347,0.106,6,193,negative,doi.org/10.1021/ie034302w +881,55,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,100000,1.063829787,0.117374168,0.152,0.1,228.8,negative,doi.org/10.1002/app.1993.070470707 +26,3,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,11570,1.150099404,0.002822234,0.0046,0.1,159.3,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +882,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.1211,,0.1,25.09,positive,doi.org/10.1103/PhysRevE.55.3159 +212,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.3111,,0.1,135.7,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +441,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.048847856,0.0669,4.034,177.51,negative,doi.org/10.1016/j.supflu.2005.08.004 +442,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.061488104,0.0838,11.4,222,negative,doi.org/10.1021/ie034302w +883,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0121,,0.1,30.244,positive,doi.org/10.1103/PhysRevA.18.2683 +151,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.126382966,0.163,0.7,47.48,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +133,14,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,17741,1.13,0.009099181,0.01,0.1,34.6,negative,doi.org/10.1021/ma050261z +82,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.166591168,0.194,2.24,60.02,positive,doi.org/10.1021/ma00107a011 +126,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.0464,,0.1,53.118,positive,doi.org/10.1063/1.472437 +884,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.073664393,0.09681,0.1,25.12,positive,See 1984GIL in ISBN: 9781420067989 +152,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.042437227,0.0563,2.33,-2.96,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +213,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.3527,,0.1,139.7,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +885,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,25000,1.059322034,0.197,,0.1,6.88,positive,doi.org/10.1039/B301190A +98,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,1.377,163.691,negative,doi.org/10.1021/ma9517308 +78,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],13200000,1.130136986,0.0033,,0.1,36.41,positive,doi.org/10.1039/B301190A +42,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,100000,1.060445387,0.024887625,0.03,0.1,152.5,negative,doi.org/10.1021/ma00015a024 +443,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.114880564,0.1534,8.598,216.816,negative,doi.org/10.1016/j.supflu.2005.08.004 +886,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0325,,0.1,23.598,positive,doi.org/10.1063/1.430349 +887,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0987,,0.1,23.754,positive,doi.org/10.1063/1.430349 +3,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,61400,1.04957265,0.089580139,0.1084,0.1,-12.5,positive,doi.org/10.1016/0032-3861(95)91454-F +444,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.013393937,0.0186,3.9,170,negative,doi.org/10.1016/j.fluid.2003.07.004 +862,102,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.151967736,0.1972,63.84,11.01,positive,doi.org/10.1063/1.464440 +134,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.018306178,0.0201,0.1,33.55,negative,doi.org/10.1021/ma011533a +314,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.070072993,0.09,0.955,148.423,negative,doi.org/10.1021/ma9517308 +79,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],13200000,1.130136986,0.014,,0.1,36.77,positive,doi.org/10.1039/B301190A +863,95,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17300,1.061349693,0.1272,,0.1,22.903,positive,doi.org/10.1063/1.439127 +888,39,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,670000,1.098360656,0.022581535,0.0302,0.1,218.64,negative,doi.org/10.1021/ma60032a020 +315,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.159916002,0.1999,4.599,92.861,positive,doi.org/10.1021/ma9517308 +83,57,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],7800,1.181818182,0.084479752,0.1,0.1,9.73,positive,doi.org/10.1063/1.1143329 +864,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.048116473,0.0648,3.9,55.89,positive,doi.org/10.1016/S0378-3812(97)00302-6 +445,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.025687508,0.0355,5.8,224,negative,doi.org/10.1021/ie034302w +865,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.068890296,0.09208,80,20.594,positive,doi.org/10.1002/macp.1994.021950233 +866,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,19.782,50.97,positive,doi.org/10.1016/S0378-3812(97)00157-X +7,3,polyethylene,9002-88-4,*CC*,cyclopentene,142-29-0,C1CC=CC1,106000,5.273631841,0.050963522,0.06,7.96,237.2,negative,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +446,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.103032843,0.1382,7.44,214.95,negative,See 2001TOR in ISBN: 9781420067989 +889,73,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,41000,5.125,0.02680789,0.0358,0.1,25.7,positive,doi.org/10.1002/pi.4980080407 +244,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.044,0.044,3.08,42,positive,doi.org/10.1006/jcht.1999.0607 +17,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,31200,1.2,0.123913904,0.1479,0.1,259.4,negative,doi.org/10.1016/0032-3861(95)91454-F +103,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.056732495,0.0531,2.43,13.55,positive,doi.org/10.1006/jcht.1999.0607 +890,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.024512054,0.03276,0.1,27.4,positive,See 1984GIL in ISBN: 9781420067989 +127,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.1517,,0.1,43.2,positive,doi.org/10.1063/1.472437 +867,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.234042447,0.2952,0.1,21.64,positive,doi.org/10.1063/1.464440 +18,2,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,76500,1.100719424,0.089039336,0.1071,0.1,235.7,negative,doi.org/10.1016/0032-3861(95)91454-F +153,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,3.91,116.04,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +868,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,22.36,20.28,positive,doi.org/10.1063/1.464440 +57,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.027038924,0.039,11.17,130,negative,doi.org/10.1021/je0103162 +55,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.205461162,0.225,3.59,56.83,positive,doi.org/10.1021/ma00107a011 +154,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.053184277,0.0703,5.58,20.46,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +10,41,polystyrene,9003-53-6,*C(C*)c1ccccc1,1-dodecanol,112-53-8,CCCCCCCCCCCCO,235000,2.100089366,0.217569935,0.26,0.1,167.4,positive,"See 2001HE1 ISBN: 9036516463, doi.org/10.1016/S0040-6031(01)00587-1" +869,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,29.395,48.28,positive,doi.org/10.1016/S0378-3812(97)00157-X +870,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.103004224,0.136,4.85,53.48,positive,doi.org/10.1016/S0378-3812(97)00302-6 +871,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.048116473,0.0648,4,55.83,positive,doi.org/10.1016/S0378-3812(97)00302-6 +155,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.126382966,0.163,4.78,32.93,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +872,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,2.84,58.13,positive,doi.org/10.1016/S0378-3812(97)00157-X +135,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.827411068,0.8406,0.1,43.67,negative,doi.org/10.1016/S0022-2860(00)00559-7 +99,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.091732599,0.11,0.722,160.532,negative,doi.org/10.1021/ma9517308 +891,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.234310792,0.29202,0.1,19.99,positive,See 1984GIL in ISBN: 9781420067989 +873,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,10.33,52.48,positive,doi.org/10.1016/S0378-3812(97)00157-X +874,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,8.1,53.47,positive,doi.org/10.1016/S0378-3812(97)00157-X +28,5,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,68000,1.03030303,0.042462764,0.0511,0.1,73,positive,doi.org/10.1021/je0504865 +136,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.033759038,0.03701,0.1,32.44,negative,doi.org/10.1016/S0378-3812(01)00469-1 +17,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,61400,1.04957265,0.066723501,0.0898,0.1,8.1,positive,doi.org/10.1016/0032-3861(95)91454-F +156,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.042437227,0.0563,4.37,153.9,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +214,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.006227065,0.007,0.1,128.4,negative,doi.org/10.1021/ma00015a024 +875,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,40.94,46.2,positive,doi.org/10.1016/S0378-3812(97)00157-X +892,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1229,,0.1,23.44,positive,doi.org/10.1063/1.430349 +876,87,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,109000,1.058252427,0.0992,,0.1,49.545,positive,doi.org/10.1063/1.439127 +104,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.161455849,0.1522,1.33,14.77,positive,doi.org/10.1006/jcht.1999.0607 +893,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.1306,,0.1,24.81,positive,doi.org/10.1103/PhysRevE.55.3159 +877,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.141965772,0.18487,0.1,24.494,positive,doi.org/10.1002/macp.1994.021950233 +157,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.085273484,0.1115,1.5,12.32,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +126,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,11500,1.069767442,0.114095631,0.146,0.1,-25.23,positive,doi.org/10.1063/1.1143329 +105,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.148118448,0.1395,4.59,-3.87,positive,doi.org/10.1006/jcht.1999.0607 +100,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.169547249,0.1999,1.46,163.499,negative,doi.org/10.1021/ma9517308 +447,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.182001135,0.237,6.6,209.7,negative,doi.org/10.1021/ie034302w +316,104,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,13500,1.058823529,0.181642512,0.2256,3.035,33.057,positive,doi.org/10.1021/ma9517308 +215,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.1929,,0.1,115.1,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +128,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.0119,,0.1,46.177,positive,doi.org/10.1063/1.472437 +894,55,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,100000,1.063829787,0.037580202,0.05,0.1,230.7,negative,doi.org/10.1002/app.1993.070470707 +137,15,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,57800,2,0.009099181,0.01,0.1,31.2,negative,doi.org/10.1021/ma050261z +216,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.3591,,0.1,140.25,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +58,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.020739603,0.03,10.89,130,negative,doi.org/10.1021/je0103162 +59,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.010320537,0.015,11.24,130,negative,doi.org/10.1021/je0103162 +878,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.097275917,0.1287,17.85,20.74,positive,doi.org/10.1063/1.464440 +879,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,8.095,53.84,positive,doi.org/10.1016/S0378-3812(97)00157-X +895,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0825,,0.1,26.202,positive,doi.org/10.1103/PhysRevE.55.3159 +448,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.004305154,0.006,4.1,161,negative,doi.org/10.1021/ie034302w +245,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.1119,0.1119,0.29,50.09,positive,doi.org/10.1006/jcht.1999.0607 +37,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.1543,0.1543,2.77,66.4,positive,doi.org/10.1006/jcht.1999.0607 +138,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.041352114,0.0453,0.1,29.55,negative,doi.org/10.1016/S0022-2860(00)00559-7 +9,6,polyethylene,9002-88-4,*CC*,1-octene,111-66-0,CCCCCCC=C,105000,2.441860465,0.071134297,0.0897,3.95,271.15,negative,See 2001TOR in ISBN: 9781420067989 +449,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.038986749,0.0536,5.4,180,negative,doi.org/10.1016/j.fluid.2003.07.004 +880,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.074826302,0.0998,42.66,19.45,positive,doi.org/10.1063/1.464440 +317,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.159916002,0.1999,5.261,164.351,negative,doi.org/10.1021/ma9517308 +10,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,anisole,100-66-3,COc1ccccc1,44500,1.508474576,0.059729319,0.058,0.1,86.5,positive,See 1998SCH in ISBN: 9781420067989 +60,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.027741083,0.04,10.06,150,negative,doi.org/10.1021/je0103162 +896,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,37000,1.06017192,0.14905148,0.191,0.1,239.9,negative,doi.org/10.1021/ma60032a020 +881,81,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,719000,1.060471976,0.1314,,0.1,58.436,positive,doi.org/10.1063/1.439127 +882,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.097275917,0.1287,78.26,20.19,positive,doi.org/10.1063/1.464440 +883,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.0874,,0.1,22.921,positive,doi.org/10.1063/1.446753 +27,5,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,22920,1.070028011,0.08356915,0.1296,0.1,153.1,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +38,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.0669,0.0669,0.47,67.48,positive,doi.org/10.1006/jcht.1999.0607 +897,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.1023,,0.1,25.966,positive,doi.org/10.1103/PhysRevE.55.3159 +898,35,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,335500,1.690176322,0.07576521,0.0995,0.1,24.64,positive,See 1986KRU in ISBN: 9781420067989 +246,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0535,0.0535,0.41,49.99,positive,doi.org/10.1006/jcht.1999.0607 +217,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0185,,0.1,117.8,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +84,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.125199984,0.147,1.81,63.2,positive,doi.org/10.1021/ma00107a011 +55,79,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,791000,1.010217114,0.092184927,0.1252,0.1,11.7,positive,doi.org/10.1627/jpi1958.33.117 +899,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.1095,,0.1,23.44,positive,doi.org/10.1103/PhysRevE.55.3159 +900,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.055260705,0.07308,0.1,22.96,positive,See 1984GIL in ISBN: 9781420067989 +901,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,100000,1.060445387,0.241251161,0.3,0.1,18.3,positive,doi.org/10.1021/ma00015a024 +6,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,"2,3-dimethylbutane",79-29-8,CC(C)C(C)C,1240,1.068965517,0.223148631,0.313,0.1,8.75,positive,doi.org/10.1016/S0378-3812(01)00548-9 +902,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.051074067,0.06764,0.1,26.13,positive,See 1984GIL in ISBN: 9781420067989 +15,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,600000,1.099908341,0.046647681,0.0554,0.1,240.4,negative,doi.org/10.1016/0032-3861(95)91454-F +85,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.104323873,0.123,1.27,68.21,positive,doi.org/10.1021/ma00107a011 +129,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.2676,,0.1,18.568,positive,doi.org/10.1063/1.472437 +450,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.025687508,0.0355,1.9,191,negative,doi.org/10.1021/ie034302w +884,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.036526526,0.0494,9.05,26.53,positive,doi.org/10.1016/S0378-3812(97)00302-6 +451,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.009923852,0.0138,8.76,220.65,negative,See 2001TOR in ISBN: 9781420067989 +247,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1911,0.1911,1.63,40.29,positive,doi.org/10.1006/jcht.1999.0607 +38,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.04112483,0.05,0.1,-27.2,positive,doi.org/10.1016/0032-3861(95)91454-F +46,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.216,,40,4.95,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +885,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,12.619,53.3,positive,doi.org/10.1016/S0378-3812(97)00157-X +886,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,41.495,45.01,positive,doi.org/10.1016/S0378-3812(97)00157-X +903,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0426,,0.1,30.478,positive,doi.org/10.1103/PhysRevA.18.2683 +29,3,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,280000,1.060606061,0.09777785,0.1163,0.1,77.58,positive,doi.org/10.1021/je0504865 +106,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.154212561,0.1453,3.21,-3.97,positive,doi.org/10.1006/jcht.1999.0607 +218,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0418,,0.1,135.35,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +3,1,poly(vinyl acetate),9003-20-7,*CC(*)OC(C)=O,cyclopentene,142-29-0,C1CC=CC1,124800,2.368121442,0.039861292,0.06,16.82,178.6,positive,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +219,8,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,100000,2,0.004446915,0.005,0.1,103.7,negative,doi.org/10.1021/ma00015a024 +80,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],2000000,1.299967501,0.033,,0.1,34.23,positive,doi.org/10.1039/B301190A +56,118,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,98900,1.019587629,0.028148202,0.03922,0.1,1.6,positive,doi.org/10.1627/jpi1958.33.117 +904,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0146,,0.1,30.358,positive,doi.org/10.1103/PhysRevA.18.2683 +61,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.070707071,0.1,4.75,130,negative,doi.org/10.1021/je0103162 +318,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,0.182,87.665,positive,doi.org/10.1021/ma9517308 +319,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.143200418,0.1799,3.995,100.195,positive,doi.org/10.1021/ma9517308 +887,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.240492932,0.30267,70,20.428,positive,doi.org/10.1002/macp.1994.021950233 +888,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.0624,,0.1,21.011,positive,doi.org/10.1063/1.439127 +452,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.051604672,0.0706,5.434,187.66,negative,doi.org/10.1016/j.supflu.2005.08.004 +139,8,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,258000,2.15,0.003546712,0.0039,5,34.35,negative,doi.org/10.1021/ma011533a +6,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,3-methylpentane,96-14-0,CCC(C)CC,1240,1.068965517,0.194082614,0.277,0.1,3.05,positive,doi.org/10.1016/S0378-3812(01)00548-9 +220,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0136,,0.1,124.6,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +130,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.0323,,0.1,41.952,positive,doi.org/10.1063/1.472437 +24,67,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,4215,1.069796954,0.011468478,0.0127,0.1,27.72,positive,doi.org/10.1021/je0504865 +127,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.168519092,0.212,0.99,11.35,positive,doi.org/10.1021/ma00107a011 +320,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.272868217,0.33,2.672,-3.753,positive,doi.org/10.1021/ma9517308 +131,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.151,,0.1,48.804,positive,doi.org/10.1063/1.472437 +889,107,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20200,1.057591623,0.0873,,0.1,25.303,positive,doi.org/10.1063/1.439127 +86,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.085339266,0.101,0.45,66.19,positive,doi.org/10.1021/ma00107a011 +62,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.041879016,0.06,15.03,170,negative,doi.org/10.1021/je0103162 +890,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,22.85,20.29,positive,doi.org/10.1063/1.464440 +248,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.0833,0.0833,4.99,6.15,positive,doi.org/10.1006/jcht.1999.0607 +321,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.202445508,0.2499,0.498,140.984,negative,doi.org/10.1021/ma9517308 +140,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.73914614,0.7571,0.1,31.67,negative,doi.org/10.1016/S0022-2860(00)00559-7 +132,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.1884,,0.1,34.104,positive,doi.org/10.1063/1.472437 +128,3,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,22100,1.03030303,0.114095631,0.146,1.82,100.95,negative,doi.org/10.1021/ma00107a011 +133,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.0982,,0.1,49.948,positive,doi.org/10.1063/1.472437 +905,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.066,,0.1,26.14,positive,doi.org/10.1039/B301190A +891,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,14.509,51.79,positive,doi.org/10.1016/S0378-3812(97)00157-X +158,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,3.3,33.96,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +56,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.154286487,0.17,3.57,96.95,negative,doi.org/10.1021/ma00107a011 +249,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0622,0.0622,0.03,22.45,positive,doi.org/10.1006/jcht.1999.0607 +906,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.006916315,0.0093,0.1,20,positive,doi.org/10.1002/macp.1965.020880115 +250,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2048,0.2048,0.4,6.27,positive,doi.org/10.1006/jcht.1999.0607 +453,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.11613391,0.155,4.3,229,negative,doi.org/10.1021/ie034302w +907,74,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,101400,1.090322581,0.08163835,0.107,2.4,222.94,negative,doi.org/10.1016/S0896-8446(01)00144-9 +454,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.005599565,0.0078,8.809,221.93,negative,doi.org/10.1016/j.supflu.2005.08.004 +39,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.086048994,0.0807,3.05,37.93,positive,doi.org/10.1006/jcht.1999.0607 +221,1,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,11615,1.110739218,0.4023,,0.1,137.5,negative,See 2001FIS in ISBN: 9781420067989 +908,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0874,,0.1,29.51,positive,doi.org/10.1103/PhysRevA.18.2683 +455,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.003026428,0.00422,5,164.5,negative,doi.org/10.1021/ie034302w +141,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.051592081,0.05646,0.1,32.95,negative,doi.org/10.1016/S0378-3812(01)00469-1 +159,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.042437227,0.0563,0.93,-1.6,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +909,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,97200,1.05997819,0.117615307,0.1523,0.1,20.21,positive,doi.org/10.1021/ma60032a020 +19,2,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,76500,1.100719424,0.024665436,0.0301,0.1,242.3,negative,doi.org/10.1016/0032-3861(95)91454-F +222,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.2778,,0.1,134.25,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +892,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,8.53,21.7,positive,doi.org/10.1063/1.464440 +910,73,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,41000,5.125,0.005128276,0.0069,0.1,25.7,positive,doi.org/10.1002/pi.4980080407 +911,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.084623008,0.1108,0.1,26.77,positive,See 1986KRU in ISBN: 9781420067989 +39,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.0995,0.0995,1.58,67.5,positive,doi.org/10.1006/jcht.1999.0607 +893,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,1.964,57.39,positive,doi.org/10.1016/S0378-3812(97)00157-X +912,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.018,,0.1,29.72,positive,doi.org/10.1039/B301190A +129,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.212733185,0.264,1.1,10.17,positive,doi.org/10.1021/ma00107a011 +63,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.03478741,0.05,15.37,170,negative,doi.org/10.1021/je0103162 +456,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.112846412,0.1508,8.18,216.9,negative,See 2000BEH in ISBN: 9781420067989 +322,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.199003566,0.2459,3.228,99.764,positive,doi.org/10.1021/ma9517308 +142,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.006822834,0.0075,0.1,30.58,negative,doi.org/10.1016/S0022-2860(00)00559-7 +457,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.062390359,0.085,6.3,227,negative,doi.org/10.1021/ie034302w +894,70,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,400000,1.058201058,0.031544507,0.04274,0.1,221.209,negative,doi.org/10.1021/ma60032a020 +913,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.045,,0.1,29.58,positive,doi.org/10.1039/B301190A +47,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.172,,0.1,10.85,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +223,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.063612947,0.071,0.1,296.1,positive,doi.org/10.1021/ma00015a024 +143,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.575296108,0.5984,0.1,27.7,negative,doi.org/10.1016/S0022-2860(00)00559-7 +895,107,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20200,1.057591623,0.0712,,0.1,24.799,positive,doi.org/10.1063/1.439127 +896,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.191618797,0.24524,70,20.841,positive,doi.org/10.1002/macp.1994.021950233 +40,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.0669,0.0669,2.33,66.72,positive,doi.org/10.1006/jcht.1999.0607 +134,2,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,596000,1.040139616,0.029,,0.1,60.214,positive,doi.org/10.1063/1.472437 +135,2,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,596000,1.040139616,0.0028,,0.1,56.594,positive,doi.org/10.1063/1.472437 +130,100,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,7800,1.18993135,0.086770513,0.112,0.1,-20.55,positive,doi.org/10.1063/1.1143329 +40,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.12580017,0.1183,3.56,37.84,positive,doi.org/10.1006/jcht.1999.0607 +323,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.22839651,0.2798,0.714,71.676,positive,doi.org/10.1021/ma9517308 +897,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.015481305,0.0211,10.85,53.48,positive,doi.org/10.1016/S0378-3812(97)00302-6 +898,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,1.818,57.65,positive,doi.org/10.1016/S0378-3812(97)00157-X +160,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,0.45,44.16,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +899,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.206896594,0.2634,13.05,29.17,positive,doi.org/10.1016/S0378-3812(97)00302-6 +17,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,methyl acetate,79-20-9,COC(=O)C,100000,1.060445387,0.015925008,0.018,0.1,124.55,negative,doi.org/10.1021/ma00015a024 +458,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.042388798,0.0582,4.63,188.75,negative,See 2001TOR in ISBN: 9781420067989 +900,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,9.6,54.59,positive,doi.org/10.1016/S0378-3812(97)00157-X +901,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,3.18,57.94,positive,doi.org/10.1016/S0378-3812(97)00157-X +57,99,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,43000,1.009389671,0.059675041,0.0821,0.1,181.2,negative,doi.org/10.1002/pen.760330806 +161,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.085273484,0.1115,0.27,14.05,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +914,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.031,,0.1,29.77,positive,doi.org/10.1039/B301190A +251,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1059,0.1059,4.63,42.29,positive,doi.org/10.1006/jcht.1999.0607 +459,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.087451445,0.118,7.7,214,negative,doi.org/10.1021/ie034302w +902,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,12.738,51.81,positive,doi.org/10.1016/S0378-3812(97)00157-X +460,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.003026428,0.00422,11,211.6,negative,doi.org/10.1021/ie034302w +48,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.042,,20,7.55,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +915,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0137,,0.1,22.695,positive,doi.org/10.1063/1.430349 +461,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.076000121,0.103,4.5,216,negative,doi.org/10.1021/ie034302w +136,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.0596,,0.1,18.026,positive,doi.org/10.1063/1.472437 +903,109,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,14000,1.059803179,0.133849043,0.1748,0.1,19.75,positive,doi.org/10.1016/j.eurpolymj.2003.09.027 +916,82,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0719,,0.1,25.38,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +3,1,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,468000,1.2,0.101383941,0.118,0.1,5.25,positive,doi.org/10.1016/0254-0584(83)90036-6 +131,108,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,8000,1.089918256,0.176928611,0.222,0.07,-19.38,positive,doi.org/10.1021/ma00107a011 +224,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0393,,0.1,135.7,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +43,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,233000,1.059090909,0.004129799,0.005,0.1,-12.8,positive,doi.org/10.1021/ma00015a024 +225,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0405,,0.1,115.4,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +324,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.126732673,0.16,0.721,-2.216,positive,doi.org/10.1021/ma9517308 +462,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.016075286,0.0223,6.388,197.47,negative,doi.org/10.1016/j.supflu.2005.08.004 +252,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0929,0.0929,3.06,49.07,positive,doi.org/10.1006/jcht.1999.0607 +57,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.135832598,0.15,3.22,70.01,positive,doi.org/10.1021/ma00107a011 +144,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.10527863,0.1146,0.1,33.05,negative,doi.org/10.1016/S0378-3812(01)00469-1 +904,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,4.22,22.29,positive,doi.org/10.1063/1.464440 +58,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.145049278,0.16,3.33,69.09,positive,doi.org/10.1021/ma00107a011 +905,61,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,181000,1.058479532,0.0522,,0.1,53.812,positive,doi.org/10.1063/1.439127 +81,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],2000000,1.299967501,0.028,,0.1,34.24,positive,doi.org/10.1039/B301190A +463,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.005599565,0.0078,6.494,202,negative,doi.org/10.1016/j.supflu.2005.08.004 +917,70,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.058201058,0.016865423,0.0226,0.1,26.83,positive,doi.org/10.1021/ma60032a020 +918,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.009378499,0.0126,0.1,26,positive,doi.org/10.1002/macp.1965.020880115 +464,9,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,15500,1.076388889,0.045354449,0.0622,3.3,190.02,negative,doi.org/10.1016/j.fluid.2003.07.004 +325,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,0.963,131.597,negative,doi.org/10.1021/ma9517308 +64,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.002056292,0.003,15.37,170,negative,doi.org/10.1021/je0103162 +906,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37000,1.06017192,0.108969257,0.14357,0.1,35.403,positive,doi.org/10.1021/ma60032a020 +18,90,polystyrene,9003-53-6,*C(C*)c1ccccc1,methyl acetate,79-20-9,COC(=O)C,190000,1.038251366,0.023735086,0.0268,0.1,24.39,positive,doi.org/10.1016/S0378-3812(99)00128-4 +162,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.126382966,0.163,4.37,33.94,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +253,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.0519,0.0519,0.13,43.3,positive,doi.org/10.1006/jcht.1999.0607 +41,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.1326,0.1326,0.57,67.52,positive,doi.org/10.1006/jcht.1999.0607 +465,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.147562055,0.19463,2.449,172.912,negative,doi.org/10.1016/j.supflu.2005.08.004 +919,93,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0102,,0.1,25.43,positive,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +466,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.047765372,0.065445,1.924,162.74,negative,doi.org/10.1016/j.supflu.2005.08.004 +254,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1977,0.1977,0.48,23.83,positive,doi.org/10.1006/jcht.1999.0607 +467,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.009923852,0.0138,6.3,200.25,negative,See 2001TOR in ISBN: 9781420067989 +163,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.145931506,0.187,1.43,103.99,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +20,2,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,76500,1.100719424,0.04112483,0.05,0.1,9.5,positive,doi.org/10.1016/0032-3861(95)91454-F +137,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.0264,,0.1,52.466,positive,doi.org/10.1063/1.472437 +255,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1503,0.1503,3.08,23.9,positive,doi.org/10.1006/jcht.1999.0607 +87,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],11500,1.069767442,0.084479752,0.1,0.1,9,positive,doi.org/10.1063/1.1143329 +21,2,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,76500,1.100719424,0.16836408,0.199,0.1,235.7,negative,doi.org/10.1016/0032-3861(95)91454-F +326,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.102211302,0.13,4.889,64.03,positive,doi.org/10.1021/ma9517308 +145,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.184996574,0.1998,0.1,27.91,negative,doi.org/10.1016/S0022-2860(00)00559-7 +29,8,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,18970,1.04002193,0.09787426,0.1404,0.1,169.5,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +41,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.207685345,0.1964,6.28,34.93,positive,doi.org/10.1006/jcht.1999.0607 +327,104,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,13500,1.058823529,0.126732673,0.16,1.487,35.797,positive,doi.org/10.1021/ma9517308 +107,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.119576843,0.1124,0.36,14.97,positive,doi.org/10.1006/jcht.1999.0607 +9,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-pentane,109-66-0,CCCCC,1240,1.068965517,0.102564103,0.16,0.1,11.75,positive,doi.org/10.1016/S0378-3812(01)00548-9 +42,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.161141072,0.1519,0.47,38.36,positive,doi.org/10.1006/jcht.1999.0607 +907,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.2799,,0.1,22.045,positive,doi.org/10.1063/1.479914 +226,1,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,11615,1.110739218,0.0429,,0.1,122.4,negative,See 2001FIS in ISBN: 9781420067989 +58,118,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,98900,1.019587629,0.162305659,0.2145,0.1,1.2,positive,doi.org/10.1627/jpi1958.33.117 +59,86,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,171900,1.029958059,0.089513433,0.1217,0.1,169.2,negative,doi.org/10.1002/pen.760330806 +256,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0812,0.0812,4.9,48.69,positive,doi.org/10.1006/jcht.1999.0607 +328,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.202445508,0.2499,3.66,172.389,negative,doi.org/10.1021/ma9517308 +329,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.176884422,0.22,1.346,-2.162,positive,doi.org/10.1021/ma9517308 +21,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,31200,1.2,0.087165483,0.1211,0.1,162.8,negative,doi.org/10.1016/0032-3861(95)91454-F +146,16,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,7085,1.09,0.009099181,0.01,0.1,36.3,negative,doi.org/10.1021/ma050261z +43,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.131491471,0.1237,4.36,37.72,positive,doi.org/10.1006/jcht.1999.0607 +82,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.049,,0.1,30.15,positive,doi.org/10.1039/B301190A +908,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.093514303,0.12389,0.1,24.133,positive,doi.org/10.1002/macp.1994.021950233 +10,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-pentane,109-66-0,CCCCC,1240,1.068965517,0.151254954,0.229,0.1,12.25,positive,doi.org/10.1016/S0378-3812(01)00548-9 +909,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.072747343,0.0971,11.55,51.71,positive,doi.org/10.1016/S0378-3812(97)00302-6 +468,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.032797521,0.0452,8.905,216.98,negative,doi.org/10.1016/j.supflu.2005.08.004 +910,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.074826302,0.0998,57.86,19.48,positive,doi.org/10.1063/1.464440 +911,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.036526526,0.0494,12.05,26.04,positive,doi.org/10.1016/S0378-3812(97)00302-6 +28,4,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,31120,1.019993445,0.046853123,0.0743,0.1,150.9,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +469,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.044167367,0.0606,4.724,182.22,negative,doi.org/10.1016/j.supflu.2005.08.004 +10,6,polyethylene,9002-88-4,*CC*,1-octene,111-66-0,CCCCCCC=C,105000,2.441860465,0.015456236,0.0198,2.22,250.75,negative,See 2001TOR in ISBN: 9781420067989 +39,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,61400,1.04957265,0.077955569,0.094,0.1,12.9,positive,doi.org/10.1016/0032-3861(95)91454-F +22,2,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,76500,1.100719424,0.103334156,0.1239,0.1,11.3,positive,doi.org/10.1016/0032-3861(95)91454-F +920,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1222,,0.1,23.438,positive,doi.org/10.1063/1.430349 +83,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],2000000,1.299967501,0.039,,0.1,34.2,positive,doi.org/10.1039/B301190A +921,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.083664119,0.10958,0.1,20.33,positive,See 1986KRU in ISBN: 9781420067989 +470,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.037067837,0.051,5.5,226,negative,doi.org/10.1021/ie034302w +147,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.135819988,0.1474,0.1,32.65,negative,doi.org/10.1021/ma011533a +30,9,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,7410,1.170616114,0.044208882,0.0651,0.1,176,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +471,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.162223041,0.2128,5.16,204.85,negative,See 2001TOR in ISBN: 9781420067989 +25,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,100000,1.060445387,0.173157086,0.196,0.1,166.1,negative,doi.org/10.1021/ma00015a024 +912,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,1.97,53.77,positive,doi.org/10.1016/S0378-3812(97)00157-X +922,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.02703465,0.0361,0.1,19,positive,See 1986KRU in ISBN: 9781420067989 +148,2,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,144000,2.057142857,0.003182831,0.0035,10,39.85,negative,doi.org/10.1021/ma011533a +227,10,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8000,1.6,0.372093023,0.4,0.1,136.1,negative,doi.org/10.1021/ma00015a024 +472,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.080034768,0.1083,6.1,200.3,negative,doi.org/10.1016/j.fluid.2003.07.004 +42,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.0738,0.0738,3.51,66.39,positive,doi.org/10.1006/jcht.1999.0607 +923,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.145337649,0.18647,0.1,24.51,positive,See 1984GIL in ISBN: 9781420067989 +11,1,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,ethoxybenzene,103-73-1,CCOc1ccccc1,24500,2.289719626,0.490517402,0.49,0.1,30.4,positive,See 1998SCH in ISBN: 9781420067989 +65,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.027741083,0.04,15.86,170,negative,doi.org/10.1021/je0103162 +473,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.078282347,0.106,9.1,220,negative,doi.org/10.1021/ie034302w +39,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.141583369,0.188,2.13,29.45,positive,doi.org/10.1021/ma00107a011 +474,9,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,15500,1.076388889,0.102800076,0.1379,4.5,200.05,negative,doi.org/10.1016/j.fluid.2003.07.004 +475,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.087451445,0.118,3.4,178.2,negative,doi.org/10.1021/ie034302w +21,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.18671193,0.22,0.1,188.3,negative,doi.org/10.1016/0032-3861(95)91454-F +913,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,2.33,53.58,positive,doi.org/10.1016/S0378-3812(97)00157-X +330,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.084136448,0.1076,0.861,82.201,positive,doi.org/10.1021/ma9517308 +476,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.051604672,0.0706,3.374,172.71,negative,doi.org/10.1016/j.supflu.2005.08.004 +31,3,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,11570,1.150099404,0.116401208,0.1655,0.1,174.8,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +914,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.082475925,0.1097,1.05,30.9,positive,doi.org/10.1016/S0378-3812(97)00302-6 +149,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.426639115,0.4501,0.1,27.74,negative,doi.org/10.1016/S0022-2860(00)00559-7 +108,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.21060407,0.1992,0.46,14.14,positive,doi.org/10.1006/jcht.1999.0607 +924,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.058201058,0.097970215,0.1277,0.1,225.37,negative,doi.org/10.1021/ma60032a020 +477,9,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,15500,1.076388889,0.066609219,0.0906,3.4,190.02,negative,doi.org/10.1016/j.fluid.2003.07.004 +228,9,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,151000,3.696450428,0.2659,,0.1,114.8,negative,See 2001FIS in ISBN: 9781420067989 +915,70,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,400000,1.058201058,0.042324293,0.05712,0.1,221.271,negative,doi.org/10.1021/ma60032a020 +66,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.029850253,0.043,10.82,130,negative,doi.org/10.1021/je0103162 +164,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.109403402,0.1419,2.35,11.03,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +925,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.014,,0.1,25.4,positive,doi.org/10.1039/B301190A +88,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.197860168,0.229,1.23,106.71,negative,doi.org/10.1021/ma00107a011 +331,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.176799578,0.2199,1.745,77.665,positive,doi.org/10.1021/ma9517308 +332,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.159916002,0.1999,4.79,92.866,positive,doi.org/10.1021/ma9517308 +916,25,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.3757,,0.1,9.112,positive,doi.org/10.1063/1.439127 +101,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.143286669,0.1699,1.825,32.41,positive,doi.org/10.1021/ma9517308 +49,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.216,,80,9.45,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +926,20,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0164,,0.1,224.78,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +478,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.065251657,0.0888,2.1,170.19,negative,doi.org/10.1016/j.fluid.2003.07.004 +102,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.221355036,0.2581,3.258,25.254,positive,doi.org/10.1021/ma9517308 +927,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.157067642,0.20074,0.1,22.47,positive,See 1984GIL in ISBN: 9781420067989 +132,45,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,24700,1.037815126,0.013620475,0.018,1,20.25,positive,doi.org/10.1039/B109405J +44,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.076289801,0.0715,2.35,37.95,positive,doi.org/10.1006/jcht.1999.0607 +150,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.526315789,0.55,0.1,27.86,negative,doi.org/10.1016/S0022-2860(00)00559-7 +928,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0032,,0.1,29.15,positive,doi.org/10.1103/PhysRevA.18.2683 +5,1,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,ethanol,64-17-5,CCO,470000,1.690647482,0.056482364,0.075,105.4,37,positive,"See 1984SAN in ISBN: 9781420067989, doi.org/10.1002/apmc.1986.051390114" +929,111,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,20400,1.0625,0.330926083,0.4,0.1,4.5,positive,doi.org/10.1021/ma00015a024 +917,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.058586078,0.0786,72.86,19.58,positive,doi.org/10.1063/1.464440 +133,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.078823191,0.102,1.08,8.26,positive,doi.org/10.1021/ma00107a011 +930,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.066727241,0.0879,0.1,26.74,positive,See 1986KRU in ISBN: 9781420067989 +333,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.176884422,0.22,3.221,138.95,negative,doi.org/10.1021/ma9517308 +479,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.032797521,0.0452,7.765,207.24,negative,doi.org/10.1016/j.supflu.2005.08.004 +26,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,233000,1.059090909,0.085365854,0.098,0.1,153.3,negative,doi.org/10.1021/ma00015a024 +229,10,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8000,1.6,0.520710059,0.55,0.1,166.6,negative,doi.org/10.1021/ma00015a024 +931,36,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,90000,1.040462428,0.043225708,0.0574,0.1,19.25,positive,doi.org/10.1016/S0378-3812(99)00128-4 +918,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.191618797,0.24524,20,21.577,positive,doi.org/10.1002/macp.1994.021950233 +230,9,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,151000,3.696450428,0.1997,,0.1,107.8,negative,See 2001FIS in ISBN: 9781420067989 +165,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.096178884,0.1253,0.99,10.99,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +334,49,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22000,1.030010768,0.16084021,0.201,2.01,74,positive,doi.org/10.1002/polb.1994.090321315 +919,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.3069,,0.1,21.671,positive,doi.org/10.1063/1.446753 +109,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.187744248,0.1773,3.53,14.05,positive,doi.org/10.1006/jcht.1999.0607 +335,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.202445508,0.2499,0.584,82.076,positive,doi.org/10.1021/ma9517308 +480,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.031034654,0.0428,6.9,181,negative,doi.org/10.1021/ie034302w +481,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.025687508,0.0355,7.6,246,negative,doi.org/10.1021/ie034302w +40,116,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,4140,1.058823529,0.136022135,0.181,1.3,-13.53,positive,doi.org/10.1021/ma00107a011 +18,11,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,604000,1.730659026,0.04,,0.1,28.1,positive,See 1991LEE in ISBN: 9781420067989 +231,9,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,151000,3.696450428,0.2463,,0.1,112.8,negative,See 2001FIS in ISBN: 9781420067989 +7,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-octane,111-65-9,CCCCCCCC,1240,1.068965517,0.090592334,0.13,0.1,0.35,positive,doi.org/10.1016/S0378-3812(01)00548-9 +932,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0011,,0.1,26.007,positive,doi.org/10.1103/PhysRevA.18.2683 +336,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.046376812,0.06,0.987,160.235,negative,doi.org/10.1021/ma9517308 +45,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.086048994,0.0807,1.89,38.23,positive,doi.org/10.1006/jcht.1999.0607 +920,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.065916504,0.0882,2.05,30.24,positive,doi.org/10.1016/S0378-3812(97)00302-6 +933,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.05,,0.1,26.23,positive,doi.org/10.1039/B301190A +482,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.060586478,0.0826,3.989,177.8,negative,doi.org/10.1016/j.supflu.2005.08.004 +337,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.202445508,0.2499,3.65,172.39,negative,doi.org/10.1021/ma9517308 +921,83,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,46400,1.059360731,0.1969,,0.1,38.67,positive,doi.org/10.1063/1.439127 +138,2,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,596000,1.040139616,0.0783,,0.1,59.996,positive,doi.org/10.1063/1.472437 +934,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,97200,1.05997819,0.07991314,0.1048,0.1,229,negative,doi.org/10.1021/ma60032a020 +922,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.036526526,0.0494,4.05,27.45,positive,doi.org/10.1016/S0378-3812(97)00302-6 +110,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.081489244,0.0764,1.41,-4.72,positive,doi.org/10.1006/jcht.1999.0607 +935,42,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0527,,0.1,25.94,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +111,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.081489244,0.0764,4.88,-5.02,positive,doi.org/10.1006/jcht.1999.0607 +84,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],25000,1.059322034,0.218,,0.1,9.8,positive,doi.org/10.1039/B301190A +923,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.0319,,0.1,18.475,positive,doi.org/10.1063/1.446753 +936,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0217,,0.1,30.477,positive,doi.org/10.1103/PhysRevA.18.2683 +151,3,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.162319965,0.1757,0.1,32.57,negative,doi.org/10.1016/S0378-3812(01)00469-1 +166,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.134578869,0.1731,0.25,45.88,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +483,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.009923852,0.0138,4.92,189.75,negative,See 2001TOR in ISBN: 9781420067989 +257,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.2265,0.2265,2.42,36.99,positive,doi.org/10.1006/jcht.1999.0607 +924,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37000,1.06017192,0.038281287,0.05174,0.1,247.017,negative,doi.org/10.1021/ma60032a020 +11,6,polyethylene,9002-88-4,*CC*,1-octene,111-66-0,CCCCCCC=C,105000,2.441860465,0.144977637,0.1791,2.3,260.75,negative,See 2001TOR in ISBN: 9781420067989 +484,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.032797521,0.0452,3.2,172.51,negative,doi.org/10.1016/j.supflu.2005.08.004 +485,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.005455676,0.0076,7.9,199.97,negative,doi.org/10.1016/j.fluid.2003.07.004 +486,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.053694841,0.0734,6.538,197,negative,doi.org/10.1016/j.supflu.2005.08.004 +232,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.3792,,0.1,142.35,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +487,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.112846412,0.1508,0.95,160.85,negative,See 2000BEH in ISBN: 9781420067989 +937,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.21212484,0.26627,0.1,21,positive,See 1984GIL in ISBN: 9781420067989 +152,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.038053348,0.0417,1,32.45,negative,doi.org/10.1021/ma011533a +134,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.182841437,0.229,0.07,12.62,positive,doi.org/10.1021/ma00107a011 +938,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0047,,0.1,29.51,positive,doi.org/10.1103/PhysRevA.18.2683 +939,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.009,,0.1,29.56,positive,doi.org/10.1039/B301190A +940,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.0176,,0.1,22.827,positive,doi.org/10.1103/PhysRevE.55.3159 +16,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,600000,1.099908341,0.111367972,0.1306,0.1,241.1,negative,doi.org/10.1016/0032-3861(95)91454-F +233,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0306,,0.1,115.7,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +488,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.076000121,0.103,7.5,242,negative,doi.org/10.1021/ie034302w +489,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.051604672,0.0706,4.084,177.655,negative,doi.org/10.1016/j.supflu.2005.08.004 +490,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.047765372,0.065445,7.319,202.08,negative,doi.org/10.1016/j.supflu.2005.08.004 +19,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,methyl acetate,79-20-9,COC(=O)C,100000,1.060445387,0.069497869,0.078,0.1,125.8,negative,doi.org/10.1021/ma00015a024 +41,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.117133094,0.157,0.32,30.29,positive,doi.org/10.1021/ma00107a011 +941,20,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0746,,0.1,224.49,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +942,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.056926372,0.07524,0.1,25.79,positive,See 1984GIL in ISBN: 9781420067989 +42,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.105465507,0.142,0.23,30.23,positive,doi.org/10.1021/ma00107a011 +943,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.011844894,0.0159,0.1,26.32,positive,See 1986KRU in ISBN: 9781420067989 +6,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,"2,2,4-trimethylpentane",540-84-1,CC(C)CC(C)(C)C,1240,1.068965517,0.075320101,0.11,0.1,-14.15,positive,doi.org/10.1016/S0378-3812(01)00548-9 +40,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,61400,1.04957265,0.007346193,0.009,0.1,-14.4,positive,doi.org/10.1016/0032-3861(95)91454-F +491,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.01259787,0.0175,11.5,215,negative,doi.org/10.1021/ie034302w +925,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,36.68,30.1,positive,doi.org/10.1063/1.464440 +153,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.328638498,0.35,0.1,27.45,negative,doi.org/10.1016/S0022-2860(00)00559-7 +112,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.139704443,0.1315,4.8,14.34,positive,doi.org/10.1006/jcht.1999.0607 +944,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,13200000,1.130136986,0.0209,,0.1,32.11,positive,doi.org/10.1039/B301190A +926,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.23818408,0.3,18.503,21.299,positive,doi.org/10.1002/macp.1994.021950233 +60,9,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,354000,1.020172911,0.068889962,0.09443,0.1,9.7,positive,doi.org/10.1627/jpi1958.33.117 +19,13,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,113000,1.140262361,0.0865,,0.1,20.4,positive,See 1991LEE in ISBN: 9781420067989 +945,121,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,101400,1.090322581,0.087141082,0.114,4.36,237.9,negative,See 1999BUN in ISBN: 9781420067989 +927,109,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,14000,1.059803179,0.156452041,0.2027,0.1,18.65,positive,doi.org/10.1016/j.eurpolymj.2003.09.027 +946,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0616,,0.1,30.22,positive,doi.org/10.1103/PhysRevA.18.2683 +167,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.053184277,0.0703,0.71,31.44,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +89,57,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],7800,1.181818182,0.093088255,0.11,0.1,11.43,positive,doi.org/10.1063/1.1143329 +258,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0929,0.0929,0.11,50.05,positive,doi.org/10.1006/jcht.1999.0607 +259,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1503,0.1503,0.34,24.34,positive,doi.org/10.1006/jcht.1999.0607 +260,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1126,0.1126,2.18,23.81,positive,doi.org/10.1006/jcht.1999.0607 +11,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-pentane,109-66-0,CCCCC,1240,1.068965517,0.123376623,0.19,0.1,10.25,positive,doi.org/10.1016/S0378-3812(01)00548-9 +492,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.060586478,0.0826,3.279,172.91,negative,doi.org/10.1016/j.supflu.2005.08.004 +168,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.075072918,0.0985,4.04,111.97,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +928,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,16.936,51.02,positive,doi.org/10.1016/S0378-3812(97)00157-X +44,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,233000,1.059090909,0.008266828,0.01,0.1,-8.6,positive,doi.org/10.1021/ma00015a024 +338,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.046376812,0.06,3.527,181.25,negative,doi.org/10.1021/ma9517308 +929,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.23818408,0.3,72.66,20.544,positive,doi.org/10.1002/macp.1994.021950233 +930,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.05402428,0.0726,1.05,29.38,positive,doi.org/10.1016/S0378-3812(97)00302-6 +261,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2634,0.2634,3.16,5.14,positive,doi.org/10.1006/jcht.1999.0607 +8,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-octane,111-65-9,CCCCCCCC,1240,1.068965517,0.181818182,0.25,0.1,5.05,positive,doi.org/10.1016/S0378-3812(01)00548-9 +931,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.234042447,0.2952,18.24,19.29,positive,doi.org/10.1063/1.464440 +947,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0134,,0.1,30.318,positive,doi.org/10.1103/PhysRevA.18.2683 +932,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.204,,0.1,23.344,positive,doi.org/10.1063/1.479914 +90,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.139214446,0.163,1.45,65.22,positive,doi.org/10.1021/ma00107a011 +139,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.0464,,0.1,43.2,positive,doi.org/10.1063/1.472437 +339,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.272868217,0.33,3.23,-4.178,positive,doi.org/10.1021/ma9517308 +948,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.022,,0.1,25.86,positive,doi.org/10.1039/B301190A +933,19,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,297000,5.449541284,0.083483558,0.111,0.1,55.58,positive,See 1988SC2 in ISBN: 9781420067989 +949,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,97200,1.05997819,0.080461852,0.1055,0.1,20.49,positive,doi.org/10.1021/ma60032a020 +262,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0944,0.0944,1.98,23.58,positive,doi.org/10.1006/jcht.1999.0607 +493,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.237537236,0.3031,4.897,202.612,negative,doi.org/10.1016/j.supflu.2005.08.004 +45,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,100000,1.060445387,0.172798201,0.202,0.1,-20.1,positive,doi.org/10.1021/ma00015a024 +934,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,9.921,53.22,positive,doi.org/10.1016/S0378-3812(97)00157-X +17,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,600000,1.099908341,0.020691551,0.0247,0.1,242.7,negative,doi.org/10.1016/0032-3861(95)91454-F +67,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.047585196,0.068,6.41,130,negative,doi.org/10.1021/je0103162 +950,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.005724042,0.0077,0.1,25.02,positive,See 1986KRU in ISBN: 9781420067989 +32,3,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,11570,1.150099404,0.071367419,0.1037,0.1,173.2,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +935,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.044493494,0.06,7.01,55.79,positive,doi.org/10.1016/S0378-3812(97)00157-X +494,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.237537236,0.3031,6.847,217.39,negative,doi.org/10.1016/j.supflu.2005.08.004 +936,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,4.45,52.6,positive,doi.org/10.1016/S0378-3812(97)00157-X +263,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0977,0.0977,2.21,23.59,positive,doi.org/10.1006/jcht.1999.0607 +85,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],25000,1.059322034,0.229,,0.1,9.7,positive,doi.org/10.1039/B301190A +340,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,1.601,77.656,positive,doi.org/10.1021/ma9517308 +937,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.2826,,0.1,22.436,positive,doi.org/10.1063/1.446753 +938,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,25.99,20.08,positive,doi.org/10.1063/1.464440 +140,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.3008,,0.1,17.018,positive,doi.org/10.1063/1.472437 +43,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.1844,0.1844,4.17,65.38,positive,doi.org/10.1006/jcht.1999.0607 +939,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.058586078,0.0786,53.64,19.18,positive,doi.org/10.1063/1.464440 +46,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.207685345,0.1964,5.85,35.03,positive,doi.org/10.1006/jcht.1999.0607 +940,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.082475925,0.1097,11.05,28.73,positive,doi.org/10.1016/S0378-3812(97)00302-6 +941,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.215463744,0.2735,0.1,24.121,positive,doi.org/10.1002/macp.1994.021950233 +942,132,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,23000,1.059907834,0.151804936,0.197,0.1,29.118,positive,doi.org/10.1021/j100161a074 +341,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.151620948,0.19,1.267,-2.064,positive,doi.org/10.1021/ma9517308 +14,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,2-propanone,67-64-1,CC(=O)C,44500,1.508474576,0.401432277,0.45,0.1,44,positive,See 1998SCH in ISBN: 9781420067989 +39,7,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,75600,1.05,0.004211235,0.0059,0.1,41.85,positive,doi.org/10.1021/je990141k +342,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.084136448,0.1076,1.946,77.945,positive,doi.org/10.1021/ma9517308 +61,50,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,791000,1.010217114,0.019885341,0.0278,0.1,160.9,negative,doi.org/10.1002/pen.760330806 +264,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0977,0.0977,0.14,23.91,positive,doi.org/10.1006/jcht.1999.0607 +951,36,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,90000,1.040462428,0.189393313,0.2395,0.1,16.62,positive,doi.org/10.1016/S0378-3812(99)00128-4 +12,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-pentane,109-66-0,CCCCC,1240,1.068965517,0.225724804,0.327,0.1,11.65,positive,doi.org/10.1016/S0378-3812(01)00548-9 +265,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1245,0.1245,3.67,42.29,positive,doi.org/10.1006/jcht.1999.0607 +343,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.176799578,0.2199,0.599,138.33,negative,doi.org/10.1021/ma9517308 +266,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0457,0.0457,6.13,47.89,positive,doi.org/10.1006/jcht.1999.0607 +344,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.102211302,0.13,3.518,-5.999,positive,doi.org/10.1021/ma9517308 +943,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.192338678,0.2461,63.74,19.2,positive,doi.org/10.1063/1.464440 +944,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.074826302,0.0998,0.1,22.9,positive,doi.org/10.1063/1.464440 +952,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.007885764,0.0106,0.1,22,positive,doi.org/10.1002/macp.1965.020880115 +953,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.025916312,0.03462,0.1,22,positive,See 1984GIL in ISBN: 9781420067989 +954,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.096146657,0.1254,0.1,25.9,positive,See 1986KRU in ISBN: 9781420067989 +234,10,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8000,1.6,0.026755853,0.03,0.1,126.7,negative,doi.org/10.1021/ma00015a024 +169,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.096178884,0.1253,2.08,9.6,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +141,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.1065,,0.1,52.834,positive,doi.org/10.1063/1.472437 +345,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,1.618,139.878,negative,doi.org/10.1021/ma9517308 +235,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0152,,0.1,143.5,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +62,54,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,43000,1.009389671,0.08715195,0.1186,0.1,-5.2,positive,doi.org/10.1627/jpi1958.33.117 +142,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.1781,,0.1,49.473,positive,doi.org/10.1063/1.472437 +346,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.29917988,0.3591,1.981,-3.131,positive,doi.org/10.1021/ma9517308 +135,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.182841437,0.229,0.64,11.64,positive,doi.org/10.1021/ma00107a011 +347,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.159916002,0.1999,5.333,164.35,negative,doi.org/10.1021/ma9517308 +955,133,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,163000,1.058441558,0.075374498,0.099,0.1,23.45,positive,"doi.org/10.1002/pol.1971.160090902, doi.org/10.1002/polc.5070390106" +945,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,24.42,31.07,positive,doi.org/10.1063/1.464440 +7,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,"2,2,4-trimethylpentane",540-84-1,CC(C)CC(C)(C)C,1240,1.068965517,0.141455437,0.2,0.1,-11.15,positive,doi.org/10.1016/S0378-3812(01)00548-9 +143,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.0516,,0.1,43.379,positive,doi.org/10.1063/1.472437 +6,1,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,ethanol,64-17-5,CCO,470000,1.690647482,0.056482364,0.075,10.5,41,positive,"See 1984SAN in ISBN: 9781420067989, doi.org/10.1002/apmc.1986.051390114" +956,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.115197647,0.14929,0.1,23.64,positive,See 1984GIL in ISBN: 9781420067989 +946,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.015481305,0.0211,3.95,56.66,positive,doi.org/10.1016/S0378-3812(97)00302-6 +947,102,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.151967736,0.1972,55.31,10.78,positive,doi.org/10.1063/1.464440 +236,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.2046,,0.1,115.4,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +948,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,27.65,30.75,positive,doi.org/10.1063/1.464440 +237,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.090796719,0.101,0.1,119.5,negative,doi.org/10.1021/ma00015a024 +267,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0727,0.0727,4.85,22.42,positive,doi.org/10.1006/jcht.1999.0607 +348,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.29917988,0.3591,1.421,-2.725,positive,doi.org/10.1021/ma9517308 +949,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37000,1.06017192,0.08020755,0.10677,0.1,35.079,positive,doi.org/10.1021/ma60032a020 +238,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.365,,0.1,140.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +103,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,3.842,181.616,negative,doi.org/10.1021/ma9517308 +170,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,3.13,113,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +957,76,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.030061506,0.0401,0.1,23.7,positive,See 1996RON in ISBN: 9781420067989 +495,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.001720302,0.0024,4.703,192.87,negative,doi.org/10.1016/j.supflu.2005.08.004 +950,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.23818408,0.3,3.787,23.298,positive,doi.org/10.1002/macp.1994.021950233 +958,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.083994158,0.11,0.1,24.65,positive,See 1984GIL in ISBN: 9781420067989 +951,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.0942,,0.1,22.31,positive,doi.org/10.1063/1.439127 +47,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.161141072,0.1519,1.57,38.08,positive,doi.org/10.1006/jcht.1999.0607 +171,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.17331181,0.2201,4.98,120,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +91,57,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],7800,1.181818182,0.189782755,0.22,0.1,13.25,positive,doi.org/10.1063/1.1143329 +959,55,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,100000,1.063829787,0.007438245,0.01,0.1,235.1,negative,doi.org/10.1002/app.1993.070470707 +960,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0983,,0.1,23.753,positive,doi.org/10.1063/1.430349 +268,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1562,0.1562,3.31,6.34,positive,doi.org/10.1006/jcht.1999.0607 +269,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0727,0.0727,4.28,22.5,positive,doi.org/10.1006/jcht.1999.0607 +952,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,33.44,19.74,positive,doi.org/10.1063/1.464440 +961,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.088102227,0.11522,0.1,24.5,positive,See 1984GIL in ISBN: 9781420067989 +113,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.148118448,0.1395,4.55,-3.87,positive,doi.org/10.1006/jcht.1999.0607 +349,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.224203822,0.275,4.294,63.919,positive,doi.org/10.1021/ma9517308 +962,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.058201058,0.067037973,0.0883,0.1,224.03,negative,doi.org/10.1021/ma60032a020 +270,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.139,0.139,0.44,42.85,positive,doi.org/10.1006/jcht.1999.0607 +154,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.031828255,0.0349,0.1,29.81,negative,doi.org/10.1016/S0022-2860(00)00559-7 +963,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.1705,,0.1,21.695,positive,doi.org/10.1103/PhysRevE.55.3159 +953,89,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,37900,1.010666667,0.085190448,0.1132,0.1,37.02,positive,See 1996RON in ISBN: 9781420067989 +496,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.043722494,0.06,3.4,156.7,negative,doi.org/10.1021/ie034302w +350,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.176799578,0.2199,1.241,146.512,negative,doi.org/10.1021/ma9517308 +68,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.049016339,0.07,11.58,170,negative,doi.org/10.1021/je0103162 +271,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1388,0.1388,4.93,23.5,positive,doi.org/10.1006/jcht.1999.0607 +964,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.162242191,0.207,0.1,25,positive,doi.org/10.1002/macp.1965.020880115 +351,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,2.834,163.741,negative,doi.org/10.1021/ma9517308 +965,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0502,,0.1,26.6,positive,doi.org/10.1103/PhysRevE.55.3159 +22,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.005705104,0.007,0.1,206.5,negative,doi.org/10.1016/0032-3861(95)91454-F +92,57,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],7800,1.181818182,0.060533136,0.072,0.1,4.48,positive,doi.org/10.1063/1.1143329 +239,11,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,3350,1.595238095,0.273009307,0.297,0.1,239.8,positive,doi.org/10.1021/ma00015a024 +352,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.159916002,0.1999,3.367,107.88,positive,doi.org/10.1021/ma9517308 +954,25,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.3068,,0.1,11.651,positive,doi.org/10.1063/1.439127 +966,35,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,335500,1.690176322,0.043684411,0.058,0.1,25.06,positive,See 1986KRU in ISBN: 9781420067989 +69,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.002056292,0.003,4.62,130,negative,doi.org/10.1021/je0103162 +353,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,0.637,123.804,negative,doi.org/10.1021/ma9517308 +240,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.2345,,0.1,118,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +955,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,51.78,19.53,positive,doi.org/10.1063/1.464440 +967,126,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,103000,1.009803922,0.0023,,0.1,14,positive,doi.org/10.1002/pol.1981.180190913 +136,100,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,7800,1.18993135,0.059129737,0.077,0.1,-24.75,positive,doi.org/10.1063/1.1143329 +497,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.042388798,0.0582,7.29,209.35,negative,See 2001TOR in ISBN: 9781420067989 +968,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.021526869,0.0288,0.1,24.73,positive,See 1986KRU in ISBN: 9781420067989 +498,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.016075286,0.0223,5.098,187.53,negative,doi.org/10.1016/j.supflu.2005.08.004 +969,42,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.057,,0.1,25.71,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +7,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,3-methylpentane,96-14-0,CCC(C)CC,1240,1.068965517,0.158075601,0.23,0.1,4.05,positive,doi.org/10.1016/S0378-3812(01)00548-9 +354,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.143200418,0.1799,3.388,139.496,negative,doi.org/10.1021/ma9517308 +155,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.282007422,0.3017,0.1,28.21,negative,doi.org/10.1016/S0022-2860(00)00559-7 +137,53,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,16600,1.050632911,0.141900377,0.18,9.7,157.35,negative,doi.org/10.1039/B109405J +7,32,polystyrene,9003-53-6,*C(C*)c1ccccc1,diisodecyl phthalate,26761-40-0,CC(C)CCCCCCCOC(=O)c1ccccc1C(=O)OCCCCCCCC(C)C,235000,2.100089366,0.234879767,0.25,0.1,49.85,positive,See 2001HE1 in ISBN: 9036516463 +970,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.028388388,0.03789,0.1,20.99,positive,See 1984GIL in ISBN: 9781420067989 +971,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.119425083,0.15455,0.1,25.29,positive,See 1984GIL in ISBN: 9781420067989 +355,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.070072993,0.09,1.454,155.219,negative,doi.org/10.1021/ma9517308 +499,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.112846412,0.1508,3.73,181.17,negative,See 2000BEH in ISBN: 9781420067989 +44,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.2291,0.2291,2.21,63.96,positive,doi.org/10.1006/jcht.1999.0607 +956,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.072747343,0.0971,7.7,53.15,positive,doi.org/10.1016/S0378-3812(97)00302-6 +86,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.065,,0.1,30.08,positive,doi.org/10.1039/B301190A +972,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.049453424,0.06553,0.1,22.47,positive,See 1984GIL in ISBN: 9781420067989 +356,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.202445508,0.2499,0.577,141.242,negative,doi.org/10.1021/ma9517308 +957,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,200000,1.058201058,0.057193127,0.07677,0.1,226.73,negative,doi.org/10.1021/ma60032a020 +973,30,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,600000,1.099908341,0.037656347,0.0501,0.1,28.22,positive,doi.org/10.1007/BF01525017 +958,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.157840957,0.2044,86,20.36,positive,doi.org/10.1063/1.464440 +22,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,31200,1.2,0.006812121,0.0098,0.1,-4.7,positive,doi.org/10.1016/0032-3861(95)91454-F +959,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.234042447,0.2952,61.78,18.38,positive,doi.org/10.1063/1.464440 +357,49,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22000,1.030010768,0.16084021,0.201,1.39,79.95,positive,doi.org/10.1002/polb.1994.090321315 +960,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.141965772,0.18487,10,22.775,positive,doi.org/10.1002/macp.1994.021950233 +961,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,10.828,51.89,positive,doi.org/10.1016/S0378-3812(97)00157-X +962,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,7.1,51.63,positive,doi.org/10.1016/S0378-3812(97)00157-X +50,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.042,,0.1,5.85,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +358,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.102211302,0.13,2.905,70.952,positive,doi.org/10.1021/ma9517308 +241,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0241,,0.1,116.6,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +500,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.053694841,0.0734,8.443,212.14,negative,doi.org/10.1016/j.supflu.2005.08.004 +501,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.036109458,0.0497,8.38,206.68,negative,See 2000BEH in ISBN: 9781420067989 +502,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.016075286,0.0223,1.563,162.71,negative,doi.org/10.1016/j.supflu.2005.08.004 +963,40,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,250000,3.90625,0.048116473,0.0648,2,56.94,positive,doi.org/10.1016/S0378-3812(97)00302-6 +964,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.2199,,0.1,23.475,positive,doi.org/10.1063/1.446753 +51,52,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,90000,1.040462428,0.083959259,0.0996,0.1,8.1,positive,doi.org/10.1016/0032-3861(95)91454-F +503,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.097457804,0.131,5,179.99,negative,doi.org/10.1016/j.fluid.2003.07.004 +48,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.113770676,0.1069,1.81,38.44,positive,doi.org/10.1006/jcht.1999.0607 +504,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.075696126,0.1026,5.1,180,negative,doi.org/10.1016/j.fluid.2003.07.004 +965,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,47.85,45.25,positive,doi.org/10.1016/S0378-3812(97)00157-X +505,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.112846412,0.1508,7.36,209.71,negative,See 2000BEH in ISBN: 9781420067989 +974,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.011919699,0.016,0.1,23,positive,doi.org/10.1002/macp.1965.020880115 +966,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.090479565,0.12,3.83,55.2,positive,doi.org/10.1016/S0378-3812(97)00157-X +967,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.234042447,0.2952,6.57,20.55,positive,doi.org/10.1063/1.464440 +968,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,12.619,53.83,positive,doi.org/10.1016/S0378-3812(97)00157-X +29,6,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,16370,1.109830508,0.015523131,0.0251,0.1,156.1,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +242,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0194,,0.1,117.4,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +20,90,polystyrene,9003-53-6,*C(C*)c1ccccc1,methyl acetate,79-20-9,COC(=O)C,190000,1.038251366,0.046904971,0.0528,0.1,27.18,positive,doi.org/10.1016/S0378-3812(99)00128-4 +359,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.202445508,0.2499,2.68,70.663,positive,doi.org/10.1021/ma9517308 +975,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,25000,1.059322034,0.058,,0.1,6.45,positive,doi.org/10.1039/B301190A +243,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.208,,0.1,116.6,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +969,98,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.060790274,0.1772,,0.1,35.692,positive,doi.org/10.1063/1.439127 +20,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,61400,1.04957265,0.089619607,0.1196,0.1,217.7,negative,doi.org/10.1016/0032-3861(95)91454-F +970,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.234042447,0.2952,12.75,19.78,positive,doi.org/10.1063/1.464440 +104,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.117493871,0.1401,3.733,181.235,negative,doi.org/10.1021/ma9517308 +506,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.237537236,0.3031,3.847,192.713,negative,doi.org/10.1016/j.supflu.2005.08.004 +507,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.060286076,0.0822,7.2,199.99,negative,doi.org/10.1016/j.fluid.2003.07.004 +156,9,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,88200,1.8,4.55E-05,5.00E-05,0.1,36.4,negative,doi.org/10.1295/polymj.34.383 +52,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.216,,0.1,-0.15,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +144,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.0085,,0.1,49.473,positive,doi.org/10.1063/1.472437 +976,39,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,670000,1.098360656,0.055815717,0.0738,0.1,28.01,positive,doi.org/10.1021/ma60032a020 +508,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.042610985,0.0585,6.674,196.95,negative,doi.org/10.1016/j.supflu.2005.08.004 +971,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.212489212,0.27,9.849,22.537,positive,doi.org/10.1002/macp.1994.021950233 +244,4,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15000,1.2,0.001778173,0.002,0.1,270,positive,doi.org/10.1021/ma00015a024 +45,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.1326,0.1326,2.45,66.8,positive,doi.org/10.1006/jcht.1999.0607 +972,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.070164545,0.09374,70,20.259,positive,doi.org/10.1002/macp.1994.021950233 +63,103,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,354000,1.020172911,0.014273398,0.02,0.1,164.9,negative,doi.org/10.1002/pen.760330806 +360,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.29917988,0.3591,4.441,-4.925,positive,doi.org/10.1021/ma9517308 +30,3,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,cyclohexanol,108-93-0,OC1CCCCC1,280000,1.060606061,0.005606382,0.0068,0.1,75.57,positive,doi.org/10.1021/je0504865 +145,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.2057,,0.1,20.189,positive,doi.org/10.1063/1.472437 +973,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.2304,,0.1,22.657,positive,doi.org/10.1063/1.439127 +46,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,100000,1.060445387,0.084846672,0.101,0.1,148.9,negative,doi.org/10.1021/ma00015a024 +361,49,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22000,1.030010768,0.08125,0.104,2.6,73.5,positive,doi.org/10.1002/polb.1994.090321315 +974,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,6.02,51.99,positive,doi.org/10.1016/S0378-3812(97)00157-X +362,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.151620948,0.19,4.139,-4.211,positive,doi.org/10.1021/ma9517308 +146,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.121,,0.1,49.676,positive,doi.org/10.1063/1.472437 +977,35,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,335500,1.690176322,0.029077085,0.0388,0.1,25.15,positive,See 1986KRU in ISBN: 9781420067989 +138,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.078823191,0.102,0.65,9.27,positive,doi.org/10.1021/ma00107a011 +53,52,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,90000,1.040462428,0.033203687,0.0398,0.1,7.6,positive,doi.org/10.1016/0032-3861(95)91454-F +978,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.105,,0.1,21.45,positive,doi.org/10.1039/B301190A +93,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.139214446,0.163,1.09,67.95,positive,doi.org/10.1021/ma00107a011 +975,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.215463744,0.2735,40,20.481,positive,doi.org/10.1002/macp.1994.021950233 +11,46,polystyrene,9003-53-6,*C(C*)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,233000,1.060054595,0.089058524,0.105,0.1,221.8,negative,doi.org/10.1016/0032-3861(95)91454-F +976,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.143688584,0.187,1.32,54.18,positive,doi.org/10.1016/S0378-3812(97)00157-X +30,6,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,16370,1.109830508,0.012157799,0.0197,0.1,155.4,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +509,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.147562055,0.19463,5.144,192.363,negative,doi.org/10.1016/j.supflu.2005.08.004 +979,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.142499003,0.183,0.1,26,positive,doi.org/10.1002/macp.1965.020880115 +510,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.222104622,0.285,5.4,206,negative,doi.org/10.1021/ie034302w +980,134,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,527000,1.075510204,0.048279388,0.064,0.1,28.05,positive,doi.org/10.1002/polc.5070390106 +511,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.067892668,0.0923,2.475,167.96,negative,doi.org/10.1016/j.supflu.2005.08.004 +245,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.2443,,0.1,118.1,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +105,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,1.465,30.258,positive,doi.org/10.1021/ma9517308 +64,50,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,791000,1.010217114,0.041930989,0.0581,0.1,160.9,negative,doi.org/10.1002/pen.760330806 +272,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0929,0.0929,3.92,48.78,positive,doi.org/10.1006/jcht.1999.0607 +139,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.127937264,0.163,1.12,12.12,positive,doi.org/10.1021/ma00107a011 +49,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.076289801,0.0715,1.56,38.15,positive,doi.org/10.1006/jcht.1999.0607 +9,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,600000,1.099908341,0.092436897,0.1088,0.1,266.1,negative,doi.org/10.1016/0032-3861(95)91454-F +981,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0009,,0.1,23.74,positive,doi.org/10.1103/PhysRevA.18.2683 +18,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,600000,1.099908341,0.008356705,0.01,0.1,244.1,negative,doi.org/10.1016/0032-3861(95)91454-F +982,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0542,,0.1,26.187,positive,doi.org/10.1103/PhysRevE.55.3159 +273,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2867,0.2867,2.41,4.62,positive,doi.org/10.1006/jcht.1999.0607 +983,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0803,,0.1,23.832,positive,doi.org/10.1063/1.430349 +70,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.010320537,0.015,13.79,150,negative,doi.org/10.1021/je0103162 +94,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.139214446,0.163,0.59,74.54,positive,doi.org/10.1021/ma00107a011 +157,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.228942327,0.2462,0.1,29.08,negative,doi.org/10.1016/S0022-2860(00)00559-7 +114,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.239830986,0.2273,5.25,12.83,positive,doi.org/10.1006/jcht.1999.0607 +4,1,poly(vinyl acetate),9003-20-7,*CC(*)OC(C)=O,cyclopentane,287-92-3,C1CCCC1,124800,2.368121442,0.03842517,0.06,27.8,251.8,positive,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +50,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.207685345,0.1964,0.24,36.5,positive,doi.org/10.1006/jcht.1999.0607 +363,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.202445508,0.2499,1.857,154.991,negative,doi.org/10.1021/ma9517308 +59,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.145049278,0.16,3.86,63.09,positive,doi.org/10.1021/ma00107a011 +43,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.110119924,0.148,0.19,30.31,positive,doi.org/10.1021/ma00107a011 +512,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.097457804,0.131,7.7,200,negative,doi.org/10.1016/j.fluid.2003.07.004 +977,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,42.654,44.49,positive,doi.org/10.1016/S0378-3812(97)00157-X +364,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,4.956,63.848,positive,doi.org/10.1021/ma9517308 +71,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.031258614,0.045,15.65,170,negative,doi.org/10.1021/je0103162 +31,8,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,18970,1.04002193,0.015772981,0.0255,0.1,155,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +513,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.005599565,0.0078,4.719,187.18,negative,doi.org/10.1016/j.supflu.2005.08.004 +72,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.002056292,0.003,11.58,170,negative,doi.org/10.1021/je0103162 +365,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.211167513,0.26,3.874,-3.196,positive,doi.org/10.1021/ma9517308 +366,104,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,13500,1.058823529,0.181642512,0.2256,1.674,35.124,positive,doi.org/10.1021/ma9517308 +984,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0532,,0.1,30.375,positive,doi.org/10.1103/PhysRevA.18.2683 +978,33,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,2700000,1.099796334,0.042535037,0.0574,0.1,66.303,positive,doi.org/10.1021/ma60032a020 +19,77,polystyrene,9003-53-6,*C(C*)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,1971000,1.260230179,0.000834424,0.001,0.1,239.5,negative,doi.org/10.1016/0032-3861(95)91454-F +979,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,4.525,55.87,positive,doi.org/10.1016/S0378-3812(97)00157-X +65,88,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,1300000,1.050080775,0.046424408,0.06421,0.1,13.8,positive,doi.org/10.1627/jpi1958.33.117 +27,28,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,100000,1.060445387,0.006019272,0.007,0.1,173.2,negative,doi.org/10.1021/ma00015a024 +28,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,233000,1.059090909,0.006019272,0.007,0.1,158.5,negative,doi.org/10.1021/ma00015a024 +980,135,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,29000,1.058394161,0.141262689,0.184,0.1,32.947,positive,doi.org/10.1021/j100161a074 +985,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1412,,0.1,23.046,positive,doi.org/10.1063/1.430349 +172,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.075072918,0.0985,3.65,52.97,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +274,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0622,0.0622,4.47,21.8,positive,doi.org/10.1006/jcht.1999.0607 +87,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.083,,0.1,29.84,positive,doi.org/10.1039/B301190A +367,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,0.602,84.841,positive,doi.org/10.1021/ma9517308 +275,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1503,0.1503,0.05,24.39,positive,doi.org/10.1006/jcht.1999.0607 +88,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.073,,0.1,29.99,positive,doi.org/10.1039/B301190A +95,57,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],7800,1.181818182,0.154190734,0.18,0.1,13.69,positive,doi.org/10.1063/1.1143329 +981,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,3.53,55.62,positive,doi.org/10.1016/S0378-3812(97)00157-X +33,6,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,16370,1.109830508,0.010081266,0.0151,0.1,171,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +986,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0165,,0.1,22.82,positive,doi.org/10.1063/1.430349 +106,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.221355036,0.2581,1.704,166.679,negative,doi.org/10.1021/ma9517308 +982,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.097275917,0.1287,0.1,23.17,positive,doi.org/10.1063/1.464440 +987,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.1103,,0.1,28.617,positive,doi.org/10.1103/PhysRevA.18.2683 +147,2,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,596000,1.040139616,0.0245,,0.1,60.124,positive,doi.org/10.1063/1.472437 +148,2,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,596000,1.040139616,0.0273,,0.1,60.195,positive,doi.org/10.1063/1.472437 +158,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.038053348,0.0417,0.1,32.35,negative,doi.org/10.1021/ma011533a +276,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1611,0.1611,5.24,6.04,positive,doi.org/10.1006/jcht.1999.0607 +173,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.042437227,0.0563,3.41,153.08,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +277,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.139,0.139,2.47,42.29,positive,doi.org/10.1006/jcht.1999.0607 +174,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.134578869,0.1731,0.67,43.91,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +514,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.013393937,0.0186,8,200,negative,doi.org/10.1016/j.fluid.2003.07.004 +51,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.131491471,0.1237,2.3,38.22,positive,doi.org/10.1006/jcht.1999.0607 +89,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],123000,1.060344828,0.043,,0.1,24.48,positive,doi.org/10.1039/B301190A +515,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.007183423,0.01,7.788,212.13,negative,doi.org/10.1016/j.supflu.2005.08.004 +988,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.011,,0.1,29.61,positive,doi.org/10.1039/B301190A +149,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.0349,,0.1,49.341,positive,doi.org/10.1063/1.472437 +10,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,600000,1.099908341,0.008356705,0.01,0.1,270.9,negative,doi.org/10.1016/0032-3861(95)91454-F +989,39,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,670000,1.098360656,0.027866406,0.0372,0.1,28.09,positive,doi.org/10.1021/ma60032a020 +368,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.199003566,0.2459,4.651,164.025,negative,doi.org/10.1021/ma9517308 +246,10,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8000,1.6,0.043793989,0.049,0.1,124.8,negative,doi.org/10.1021/ma00015a024 +8,32,polystyrene,9003-53-6,*C(C*)c1ccccc1,diisodecyl phthalate,26761-40-0,CC(C)CCCCCCCOC(=O)c1ccccc1C(=O)OCCCCCCCC(C)C,235000,2.100089366,0.092829029,0.1,0.1,56.75,positive,See 2001HE1 in ISBN: 9036516463 +983,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.1293,,0.1,23.528,positive,doi.org/10.1063/1.446753 +990,80,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.018668073,0.025,0.1,27.9,positive,doi.org/10.1002/pol.1968.110060608 +984,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.192338678,0.2461,53.84,19.05,positive,doi.org/10.1063/1.464440 +369,104,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,13500,1.058823529,0.126732673,0.16,1.9,35.356,positive,doi.org/10.1021/ma9517308 +9,3,polyethylene,9002-88-4,*CC*,cyclopentane,287-92-3,C1CCCC1,106000,5.273631841,0.049147883,0.06,10.64,252.9,negative,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +991,36,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,90000,1.040462428,0.099160698,0.1292,0.1,19.76,positive,doi.org/10.1016/S0378-3812(99)00128-4 +992,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.038341831,0.051,0.1,26.8,positive,doi.org/10.1002/macp.1965.020880115 +985,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.165808321,0.21412,80,21.212,positive,doi.org/10.1002/macp.1994.021950233 +993,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.100137607,0.13043,0.1,24.18,positive,See 1984GIL in ISBN: 9781420067989 +986,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.036526526,0.0494,3.05,27.63,positive,doi.org/10.1016/S0378-3812(97)00302-6 +994,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0603,,0.1,23.837,positive,doi.org/10.1063/1.430349 +150,1,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,48600,1.049676026,0.1959,,0.1,33.907,positive,doi.org/10.1063/1.472437 +370,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.193939394,0.24,4.896,-4.273,positive,doi.org/10.1021/ma9517308 +516,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.001720302,0.0024,3.408,182.71,negative,doi.org/10.1016/j.supflu.2005.08.004 +987,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.206896594,0.2634,5.05,30.75,positive,doi.org/10.1016/S0378-3812(97)00302-6 +175,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.109403402,0.1419,3.87,9.02,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +371,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.046376812,0.06,3.433,181.257,negative,doi.org/10.1021/ma9517308 +995,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0172,,0.1,30.418,positive,doi.org/10.1103/PhysRevA.18.2683 +44,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.117133094,0.157,2.32,29.45,positive,doi.org/10.1021/ma00107a011 +73,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.013782542,0.02,7.86,130,negative,doi.org/10.1021/je0103162 +996,33,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2700000,1.099796334,0.017466056,0.0234,0.1,30.91,positive,doi.org/10.1021/ma60032a020 +90,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],25000,1.059322034,0.149,,0.1,10.31,positive,doi.org/10.1039/B301190A +988,25,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.1009,,0.1,11.651,positive,doi.org/10.1063/1.439127 +60,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.218588314,0.239,2.56,90.22,negative,doi.org/10.1021/ma00107a011 +989,60,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.057575758,0.097667519,0.1292,9.9,33.18,positive,doi.org/10.1063/1.464440 +990,83,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,46400,1.059360731,0.0167,,0.1,34.45,positive,doi.org/10.1063/1.439127 +517,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.003514777,0.0049,8.547,221.76,negative,doi.org/10.1016/j.supflu.2005.08.004 +176,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.134578869,0.1731,0.6,43.91,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +518,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.003514777,0.0049,6.6,200.07,negative,doi.org/10.1016/j.fluid.2003.07.004 +66,92,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,184000,1.069767442,0.167156365,0.2205,0.1,3.6,positive,doi.org/10.1627/jpi1958.33.117 +91,59,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],25000,1.059322034,0.036,,0.1,8.61,positive,doi.org/10.1039/B301190A +991,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.090479565,0.12,9.36,52.83,positive,doi.org/10.1016/S0378-3812(97)00157-X +247,10,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8000,1.6,0.08988764,0.1,0.1,124.6,negative,doi.org/10.1021/ma00015a024 +23,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,31200,1.2,0.087165483,0.1211,0.1,3.5,positive,doi.org/10.1016/0032-3861(95)91454-F +159,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.027255905,0.0299,0.1,30.01,negative,doi.org/10.1016/S0022-2860(00)00559-7 +278,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1977,0.1977,1.57,23.64,positive,doi.org/10.1006/jcht.1999.0607 +519,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.053694841,0.0734,2.503,167.47,negative,doi.org/10.1016/j.supflu.2005.08.004 +520,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.047434485,0.065,4.4,223,negative,doi.org/10.1021/ie034302w +151,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.1894,,0.1,41.952,positive,doi.org/10.1063/1.472437 +372,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.102211302,0.13,0.917,-4.214,positive,doi.org/10.1021/ma9517308 +177,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.126382966,0.163,4.88,116.47,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +178,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.126382966,0.163,0.87,46.47,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +997,111,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,20400,1.0625,0.007438245,0.01,0.1,4,positive,doi.org/10.1021/ma00015a024 +67,86,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,171900,1.029958059,0.064449674,0.0885,0.1,169.1,negative,doi.org/10.1002/pen.760330806 +160,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.73914614,0.7571,0.1,31.67,negative,doi.org/10.1016/S0022-2860(00)00559-7 +373,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.228571429,0.28,0.922,-0.685,positive,doi.org/10.1021/ma9517308 +998,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0528,,0.1,23.823,positive,doi.org/10.1063/1.430349 +999,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2000000,1.299967501,0.004,,0.1,29.18,positive,doi.org/10.1039/B301190A +179,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.134578869,0.1731,1.61,39.87,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +1000,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.008840936,0.01188,0.1,25.28,positive,See 1986KRU in ISBN: 9781420067989 +41,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,61400,1.04957265,0.169242658,0.2,0.1,212.5,negative,doi.org/10.1016/0032-3861(95)91454-F +992,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.090479565,0.12,2.43,55.99,positive,doi.org/10.1016/S0378-3812(97)00157-X +993,98,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,34900,1.060790274,0.1293,,0.1,35.85,positive,doi.org/10.1063/1.439127 +1001,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.044,,0.1,26.18,positive,doi.org/10.1039/B301190A +1002,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0181,,0.1,30.435,positive,doi.org/10.1103/PhysRevA.18.2683 +279,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2242,0.2242,4.05,5.9,positive,doi.org/10.1006/jcht.1999.0607 +21,90,polystyrene,9003-53-6,*C(C*)c1ccccc1,methyl acetate,79-20-9,COC(=O)C,190000,1.038251366,0.039760664,0.0448,0.1,27.27,positive,doi.org/10.1016/S0378-3812(99)00128-4 +521,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.051604672,0.0706,9.029,217.11,negative,doi.org/10.1016/j.supflu.2005.08.004 +280,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.3145,0.3145,3.71,4.12,positive,doi.org/10.1006/jcht.1999.0607 +1003,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.036636334,0.04876,0.1,26.87,positive,See 1984GIL in ISBN: 9781420067989 +522,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.061488104,0.0838,5.8,179.5,negative,doi.org/10.1021/ie034302w +4,1,poly(vinyl acetate),9003-20-7,*CC(*)OC(C)=O,cyclopentene,142-29-0,C1CC=CC1,124800,2.368121442,0.039861292,0.06,11.59,187.3,positive,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +1004,111,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,20400,1.0625,0.052119604,0.069,0.1,6,positive,doi.org/10.1021/ma00015a024 +523,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.060586478,0.0826,7.229,202.56,negative,doi.org/10.1016/j.supflu.2005.08.004 +1005,55,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,100000,1.063829787,0.077720329,0.102,0.1,229,negative,doi.org/10.1002/app.1993.070470707 +281,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.1801,0.1801,3.21,6.15,positive,doi.org/10.1006/jcht.1999.0607 +994,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.097275917,0.1287,15.3,20.95,positive,doi.org/10.1063/1.464440 +8,17,polystyrene,9003-53-6,*C(C*)c1ccccc1,bisphenol-A diglycidyl ether,1675-54-3,CC(C)(c1ccc(OCC2CO2)cc1)c3ccc(OCC4CO4)cc3,86700,1.044578313,0.2708,,0.1,63.88,positive,doi.org/10.1002/macp.200300106 +40,6,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,32900,1.018575851,0.175490323,0.23,0.1,44.35,positive,doi.org/10.1021/je990141k +23,3,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,31200,1.2,0.123913904,0.1479,0.1,-35,positive,doi.org/10.1016/0032-3861(95)91454-F +1006,76,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.045903511,0.0609,0.1,23.95,positive,See 1996RON in ISBN: 9781420067989 +524,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.042388798,0.0582,6.01,199.05,negative,See 2001TOR in ISBN: 9781420067989 +374,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,3.112,156.593,negative,doi.org/10.1021/ma9517308 +61,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.175610347,0.193,2.8,70.1,positive,doi.org/10.1021/ma00107a011 +41,4,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20100,1.020304569,0.222891829,0.287,0.1,28.85,positive,doi.org/10.1021/je990141k +995,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.0936,,0.1,22.917,positive,doi.org/10.1063/1.479914 +248,8,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,100000,2,0.08988764,0.1,0.1,106.4,negative,doi.org/10.1021/ma00015a024 +1007,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.016940488,0.0227,0.1,24.29,positive,See 1986KRU in ISBN: 9781420067989 +996,81,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,719000,1.060471976,0.0406,,0.1,61.67,positive,doi.org/10.1063/1.439127 +152,9,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,227000,1.039853413,0.0116,,0.1,50.53,positive,doi.org/10.1063/1.472437 +1008,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0749,,0.1,26.1,positive,doi.org/10.1103/PhysRevE.55.3159 +375,49,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22000,1.030010768,0.08125,0.104,1.37,78.5,positive,doi.org/10.1002/polb.1994.090321315 +997,81,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,719000,1.060471976,0.0026,,0.1,58.436,positive,doi.org/10.1063/1.439127 +1009,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,13200000,1.130136986,0.013,,0.1,32.2,positive,doi.org/10.1039/B301190A +180,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.13205856,0.17,4.29,33,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +115,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.17424529,0.1644,4.43,-4.08,positive,doi.org/10.1006/jcht.1999.0607 +998,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.192338678,0.2461,78.16,19.59,positive,doi.org/10.1063/1.464440 +62,5,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],10500,1.019417476,0.199847839,0.219,1.22,-5.1,positive,doi.org/10.1021/ma00107a011 +376,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.246153846,0.3,2.075,-2.132,positive,doi.org/10.1021/ma9517308 +282,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1393,0.1393,0.46,24.15,positive,doi.org/10.1006/jcht.1999.0607 +25,94,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexanol,108-93-0,OC1CCCCC1,849000,1.450042699,0.007582248,0.0084,0.1,80.14,positive,doi.org/10.1021/je0504865 +525,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.043722494,0.06,11.5,218.8,negative,doi.org/10.1021/ie034302w +9,117,polystyrene,9003-53-6,*C(C*)c1ccccc1,bisphenol-A diglycidyl ether,1675-54-3,CC(C)(c1ccc(OCC2CO2)cc1)c3ccc(OCC4CO4)cc3,228000,1.050691244,0.0554,,0.1,76.25,positive,doi.org/10.1002/macp.200300106 +1010,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.0863,,0.1,23.654,positive,doi.org/10.1103/PhysRevE.55.3159 +68,99,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,43000,1.009389671,0.127513012,0.1708,0.1,181,negative,doi.org/10.1002/pen.760330806 +1011,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.086377339,0.11303,0.1,20.27,positive,See 1986KRU in ISBN: 9781420067989 +283,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0355,0.0355,1.35,48.98,positive,doi.org/10.1006/jcht.1999.0607 +284,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1651,0.1651,2.9,41.6,positive,doi.org/10.1006/jcht.1999.0607 +999,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.18626445,0.23883,50,20.567,positive,doi.org/10.1002/macp.1994.021950233 +1000,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,24.792,48.5,positive,doi.org/10.1016/S0378-3812(97)00157-X +1012,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0539,,0.1,30.358,positive,doi.org/10.1103/PhysRevA.18.2683 +116,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.108699719,0.1021,2.33,-3.98,positive,doi.org/10.1006/jcht.1999.0607 +377,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.143200418,0.1799,4.905,92.843,positive,doi.org/10.1021/ma9517308 +1013,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0835,,0.1,23.829,positive,doi.org/10.1063/1.430349 +54,52,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,90000,1.040462428,0.004063413,0.0049,0.1,2.1,positive,doi.org/10.1016/0032-3861(95)91454-F +285,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1977,0.1977,5.29,23.1,positive,doi.org/10.1006/jcht.1999.0607 +286,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1388,0.1388,0.1,24.28,positive,doi.org/10.1006/jcht.1999.0607 +1014,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0615,,0.1,23.838,positive,doi.org/10.1063/1.430349 +52,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.086048994,0.0807,5.12,37.42,positive,doi.org/10.1006/jcht.1999.0607 +1001,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.114055986,0.15,21.013,21.589,positive,doi.org/10.1002/macp.1994.021950233 +181,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.134578869,0.1731,2.21,37.97,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +1002,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.004896683,0.0067,2.06,56.91,positive,doi.org/10.1016/S0378-3812(97)00157-X +1015,70,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.058201058,0.020397722,0.0273,0.1,26.85,positive,doi.org/10.1021/ma60032a020 +1016,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.170619921,0.21709,0.1,22.99,positive,See 1984GIL in ISBN: 9781420067989 +46,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.0669,0.0669,1.34,67.09,positive,doi.org/10.1006/jcht.1999.0607 +526,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.044167367,0.0606,5.459,187.49,negative,doi.org/10.1016/j.supflu.2005.08.004 +1003,25,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.3348,,0.1,10.873,positive,doi.org/10.1063/1.439127 +1017,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.089505673,0.117,0.1,26.62,positive,See 1986KRU in ISBN: 9781420067989 +1018,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.206770525,0.26,0.1,23,positive,doi.org/10.1002/macp.1965.020880115 +287,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.0519,0.0519,5.21,41.89,positive,doi.org/10.1006/jcht.1999.0607 +96,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.175485948,0.204,0.66,73.33,positive,doi.org/10.1021/ma00107a011 +107,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.221355036,0.2581,2.104,27.697,positive,doi.org/10.1021/ma9517308 +1019,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0374,,0.1,23.689,positive,doi.org/10.1063/1.430349 +1020,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.046516271,0.0617,0.1,23,positive,See 1984GIL in ISBN: 9781420067989 +249,10,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8000,1.6,0.043793989,0.049,0.1,281.9,positive,doi.org/10.1021/ma00015a024 +108,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.117493871,0.1401,0.613,158.373,negative,doi.org/10.1021/ma9517308 +1004,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.117960635,0.15492,70,20.889,positive,doi.org/10.1002/macp.1994.021950233 +92,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.029,,0.1,29.94,positive,doi.org/10.1039/B301190A +24,2,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,hexyl acetate,142-92-7,CCCCCCOC(=O)C,76500,1.100719424,0.024665436,0.0301,0.1,5.6,positive,doi.org/10.1016/0032-3861(95)91454-F +74,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.043302809,0.062,11.93,170,negative,doi.org/10.1021/je0103162 +45,72,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,106300,1.059820538,0.115571327,0.155,2.45,52.04,positive,doi.org/10.1021/ma00107a011 +1005,102,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.151967736,0.1972,84.93,11.88,positive,doi.org/10.1063/1.464440 +1006,83,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,46400,1.059360731,0.0689,,0.1,39.184,positive,doi.org/10.1063/1.439127 +55,46,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,233000,1.060054595,0.166893278,0.1947,0.1,12.8,positive,doi.org/10.1016/0032-3861(95)91454-F +250,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.0285,,0.1,116,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +288,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.0922,0.0922,4.98,42.29,positive,doi.org/10.1006/jcht.1999.0607 +527,9,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,15500,1.076388889,0.023277641,0.0322,3,189.96,negative,doi.org/10.1016/j.fluid.2003.07.004 +32,5,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,22920,1.070028011,0.11321399,0.1725,0.1,153.8,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +528,7,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,383000,1.189440994,0.003026428,0.00422,7.5,183,negative,doi.org/10.1021/ie034302w +42,7,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,75600,1.05,0.17581717,0.2304,0.1,51.85,positive,doi.org/10.1021/je990141k +12,97,polystyrene,9003-53-6,*C(C*)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,600000,1.099908341,0.008430859,0.0101,0.1,221.4,negative,doi.org/10.1016/0032-3861(95)91454-F +1021,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.029667658,0.03958,0.1,23.92,positive,See 1984GIL in ISBN: 9781420067989 +31,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.214854268,0.253,0.71,4.63,positive,doi.org/10.1021/ma00107a011 +117,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.119576843,0.1124,0.67,14.91,positive,doi.org/10.1006/jcht.1999.0607 +378,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.084136448,0.1076,2.922,163.886,negative,doi.org/10.1021/ma9517308 +379,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.151537368,0.1899,1.606,77.657,positive,doi.org/10.1021/ma9517308 +1022,90,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.015439917,0.0207,0.1,22.45,positive,doi.org/10.1016/S0378-3812(99)00128-4 +1023,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0603,,0.1,26.37,positive,doi.org/10.1103/PhysRevE.55.3159 +97,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],11500,1.069767442,0.153307312,0.179,0.1,10.83,positive,doi.org/10.1063/1.1143329 +1024,34,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,97200,1.05997819,0.039637515,0.0527,0.1,20.02,positive,doi.org/10.1021/ma60032a020 +529,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.060811825,0.0829,2.4,159.98,negative,doi.org/10.1016/j.fluid.2003.07.004 +1007,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.2152,,0.1,22.756,positive,doi.org/10.1063/1.439127 +43,6,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,32900,1.018575851,0.148799904,0.197,0.1,45.25,positive,doi.org/10.1021/je990141k +47,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.0669,0.0669,4.6,65.81,positive,doi.org/10.1006/jcht.1999.0607 +53,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.12580017,0.1183,0.5,38.63,positive,doi.org/10.1006/jcht.1999.0607 +33,6,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,16370,1.109830508,0.058624916,0.0923,0.1,155.3,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +23,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,butyl acetate,123-86-4,CCCCOC(=O)C,61400,1.04957265,0.159443695,0.189,0.1,186.1,negative,doi.org/10.1016/0032-3861(95)91454-F +1008,25,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.2906,,0.1,11.972,positive,doi.org/10.1063/1.439127 +380,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.272868217,0.33,3.748,-4.675,positive,doi.org/10.1021/ma9517308 +530,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.060586478,0.0826,8.414,212.34,negative,doi.org/10.1016/j.supflu.2005.08.004 +32,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.257207891,0.3,0.28,-0.73,positive,doi.org/10.1021/ma00107a011 +109,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.221355036,0.2581,5.042,190.458,negative,doi.org/10.1021/ma9517308 +1025,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.007587403,0.0102,0.1,21,positive,doi.org/10.1002/macp.1965.020880115 +6,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-methylpentane,107-83-5,CCCC(C)C,1240,1.068965517,0.157066152,0.23,0.1,11.45,positive,doi.org/10.1016/S0378-3812(01)00548-9 +7,66,polystyrene,9003-53-6,*C(C*)c1ccccc1,"2,3-dimethylbutane",79-29-8,CC(C)C(C)C,1240,1.068965517,0.072290831,0.11,0.1,11.25,positive,doi.org/10.1016/S0378-3812(01)00548-9 +1026,42,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0362,,0.1,26.47,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +1027,74,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,101400,1.090322581,0.08163835,0.107,4.8,240.41,negative,doi.org/10.1016/S0896-8446(01)00144-9 +1028,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.0456,,0.1,23.636,positive,doi.org/10.1103/PhysRevE.55.3159 +1009,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,25.342,48.53,positive,doi.org/10.1016/S0378-3812(97)00157-X +381,49,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22000,1.030010768,0.16084021,0.201,1.8,77.5,positive,doi.org/10.1002/polb.1994.090321315 +531,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.187363134,0.2435,6.894,211.714,negative,doi.org/10.1016/j.supflu.2005.08.004 +1010,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.234042447,0.2952,45.5,18.25,positive,doi.org/10.1063/1.464440 +98,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.104323873,0.123,1.78,91.47,negative,doi.org/10.1021/ma00107a011 +118,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.249063489,0.2362,5.19,-4.57,positive,doi.org/10.1006/jcht.1999.0607 +1029,58,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,286000,2.2,0.014465381,0.0194,0.1,25.8,positive,doi.org/10.1021/je0504865 +1030,73,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,41000,5.125,0.163899126,0.209,0.1,25.7,positive,doi.org/10.1002/pi.4980080407 +382,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,3.85,172.605,negative,doi.org/10.1021/ma9517308 +289,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0812,0.0812,5.52,48.48,positive,doi.org/10.1006/jcht.1999.0607 +47,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,tert-butyl acetate,540-88-5,CC(=O)OC(C)(C)C,233000,1.059090909,0.025721731,0.031,0.1,130.4,negative,doi.org/10.1021/ma00015a024 +1031,85,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.058201058,0.023787808,0.0318,0.1,23.28,positive,doi.org/10.1021/ma60032a020 +12,1,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,ethoxybenzene,103-73-1,CCOc1ccccc1,24500,2.289719626,0.120218806,0.12,0.1,48.3,positive,See 1998SCH in ISBN: 9781420067989 +1011,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,32.599,46.85,positive,doi.org/10.1016/S0378-3812(97)00157-X +1012,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,35.238,47.37,positive,doi.org/10.1016/S0378-3812(97)00157-X +56,46,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,233000,1.060054595,0.084216554,0.0999,0.1,14,positive,doi.org/10.1016/0032-3861(95)91454-F +1013,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.1973,,0.1,22.817,positive,doi.org/10.1063/1.439127 +1014,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.090479565,0.12,1.16,56.81,positive,doi.org/10.1016/S0378-3812(97)00157-X +1032,93,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0102,,0.1,224.3,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +1033,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0543,,0.1,26.197,positive,doi.org/10.1103/PhysRevE.55.3159 +182,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.126382966,0.163,0.17,51.05,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +110,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.143286669,0.1699,5.198,190.338,negative,doi.org/10.1021/ma9517308 +1015,102,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.151967736,0.1972,6.28,11.85,positive,doi.org/10.1063/1.464440 +1016,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,5.25,55.34,positive,doi.org/10.1016/S0378-3812(97)00157-X +1034,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.0226,,0.1,23.126,positive,doi.org/10.1103/PhysRevE.55.3159 +532,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.044167367,0.0606,2.614,167.55,negative,doi.org/10.1016/j.supflu.2005.08.004 +1017,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.048267639,0.065,3.36,238.95,negative,doi.org/10.1016/S0378-3812(97)00157-X +153,6,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,26900,1.110193974,0.0765,,0.1,19.292,positive,doi.org/10.1063/1.472437 +290,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.044,0.044,1.47,42.4,positive,doi.org/10.1006/jcht.1999.0607 +119,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.17424529,0.1644,2.14,-3.87,positive,doi.org/10.1006/jcht.1999.0607 +99,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.125199984,0.147,0.92,98.43,negative,doi.org/10.1021/ma00107a011 +100,62,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],11500,1.069767442,0.207767453,0.24,0.1,9.87,positive,doi.org/10.1063/1.1143329 +111,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.169547249,0.1999,3.881,181.209,negative,doi.org/10.1021/ma9517308 +1035,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0827,,0.1,23.83,positive,doi.org/10.1063/1.430349 +140,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.155986574,0.197,0.84,11.74,positive,doi.org/10.1021/ma00107a011 +251,1,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,11615,1.110739218,0.0477,,0.1,121,negative,See 2001FIS in ISBN: 9781420067989 +1036,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0202,,0.1,27.29,positive,doi.org/10.1103/PhysRevE.55.3159 +291,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1126,0.1126,2.72,23.71,positive,doi.org/10.1006/jcht.1999.0607 +1018,102,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.151967736,0.1972,59.53,10.88,positive,doi.org/10.1063/1.464440 +533,12,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,60360,2.566326531,0.060286076,0.0822,1.6,160,negative,doi.org/10.1016/j.fluid.2003.07.004 +534,4,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,58000,2.577777778,0.076532282,0.1037,1.01,157.79,negative,See 2000BEH in ISBN: 9781420067989 +1019,47,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17200,1.061728395,0.3751,,0.1,18.475,positive,doi.org/10.1063/1.446753 +20,46,polystyrene,9003-53-6,*C(C*)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,233000,1.060054595,0.088546437,0.1043,0.1,246.2,negative,doi.org/10.1016/0032-3861(95)91454-F +292,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.1119,0.1119,1.59,49.69,positive,doi.org/10.1006/jcht.1999.0607 +293,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0977,0.0977,3.46,23.4,positive,doi.org/10.1006/jcht.1999.0607 +112,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.117493871,0.1401,0.501,33.837,positive,doi.org/10.1021/ma9517308 +1037,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.19943966,0.25138,0.1,22.96,positive,See 1984GIL in ISBN: 9781420067989 +93,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.013,,0.1,29.39,positive,doi.org/10.1039/B301190A +1020,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.023771294,0.0323,13.05,23.99,positive,doi.org/10.1016/S0378-3812(97)00302-6 +535,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.078282347,0.106,5.4,185.5,negative,doi.org/10.1021/ie034302w +536,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.047765372,0.065445,4.774,182.46,negative,doi.org/10.1016/j.supflu.2005.08.004 +1038,65,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,189000,1.01996762,0.0287,,0.1,23.371,positive,doi.org/10.1103/PhysRevE.55.3159 +1039,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.013416615,0.018,0.1,23,positive,doi.org/10.1002/macp.1965.020880115 +1040,22,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,769500,1.27994012,0.033246509,0.0443,0.1,27.3,positive,See 1986KRU in ISBN: 9781420067989 +294,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.1911,0.1911,0.22,40.69,positive,doi.org/10.1006/jcht.1999.0607 +183,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.096178884,0.1253,4.77,6.42,positive,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +537,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.041056487,0.0564,8.1,229,negative,doi.org/10.1021/ie034302w +1021,107,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,20200,1.057591623,0.0279,,0.1,20.6,positive,doi.org/10.1063/1.439127 +101,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.166591168,0.194,0.75,71.46,positive,doi.org/10.1021/ma00107a011 +1022,56,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,18700,1.059490085,0.2226,,0.1,23.212,positive,doi.org/10.1063/1.479914 +15,2,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,2-propanone,67-64-1,CC(=O)C,44500,1.508474576,0.008211698,0.01,0.1,53.4,positive,See 1998SCH in ISBN: 9781420067989 +295,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.2265,0.2265,3.89,36.59,positive,doi.org/10.1006/jcht.1999.0607 +113,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.117493871,0.1401,1.309,163.507,negative,doi.org/10.1021/ma9517308 +44,7,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,75600,1.05,0.067185677,0.0918,0.1,56.05,positive,doi.org/10.1021/je990141k +141,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.212733185,0.264,0.9,10.49,positive,doi.org/10.1021/ma00107a011 +1041,43,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,142100,1.089723926,0.138907232,0.1786,0.1,19.8,positive,See 1986KRU in ISBN: 9781420067989 +538,8,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,108000,1.317073171,0.075696126,0.1026,3.8,169.93,negative,doi.org/10.1016/j.fluid.2003.07.004 +1042,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.027,,0.1,26.02,positive,doi.org/10.1039/B301190A +94,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.093,,0.1,29.66,positive,doi.org/10.1039/B301190A +161,17,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,7772,1.16,0.009099181,0.01,0.1,36.4,negative,doi.org/10.1021/ma050261z +1043,73,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,41000,5.125,0.00579853,0.0078,0.1,25.7,positive,doi.org/10.1002/pi.4980080407 +539,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.237537236,0.3031,6.247,212.5,negative,doi.org/10.1016/j.supflu.2005.08.004 +383,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.070072993,0.09,1.713,155.221,negative,doi.org/10.1021/ma9517308 +540,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.114880564,0.1534,3.513,177.342,negative,doi.org/10.1016/j.supflu.2005.08.004 +1023,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.050688549,0.0682,51.731,44.97,positive,doi.org/10.1016/S0378-3812(97)00157-X +42,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,61400,1.04957265,0.057790721,0.07,0.1,11.9,positive,doi.org/10.1016/0032-3861(95)91454-F +33,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.214854268,0.253,2.23,1.43,positive,doi.org/10.1021/ma00107a011 +384,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.168421053,0.21,4.196,-4.227,positive,doi.org/10.1021/ma9517308 +45,7,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,75600,1.05,0.010519052,0.0147,0.1,53.85,positive,doi.org/10.1021/je990141k +1044,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,37000,1.06017192,0.043760876,0.0581,0.1,11.78,positive,doi.org/10.1021/ma60032a020 +1024,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.3263,,0.1,20.308,positive,doi.org/10.1063/1.439127 +184,14,polystyrene,9003-53-6,*C(C*)c1ccccc1,acetaldehyde,75-07-0,CC=O,4140,1.035,0.126382966,0.163,1.53,103.99,negative,"See 1997DES in ISBN: 9781420067989, doi.org/10.1002/(SICI)1099-0488(199703)35:4<631::AID-POLB11>3.0.CO;2-H" +385,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.243593226,0.2971,1.6,139.877,negative,doi.org/10.1021/ma9517308 +57,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.216,,60,7.15,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +1045,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.006692689,0.009,0.1,22,positive,doi.org/10.1002/macp.1965.020880115 +541,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.067892668,0.0923,4.94,185.4,negative,doi.org/10.1016/j.supflu.2005.08.004 +54,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],85200,1.020359281,0.141282805,0.133,4.53,37.53,positive,doi.org/10.1006/jcht.1999.0607 +1025,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.035627522,0.0482,41.081,46.26,positive,doi.org/10.1016/S0378-3812(97)00157-X +46,31,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclopentane,96-37-7,CC1CCCC1,25000,1.059322034,0.117133094,0.157,1.67,29.72,positive,doi.org/10.1021/ma00107a011 +43,5,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,29000,1.16,0.056954457,0.069,0.1,233.3,negative,doi.org/10.1016/0032-3861(95)91454-F +95,38,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],2000000,1.299967501,0.036,,0.1,34.22,positive,doi.org/10.1039/B301190A +296,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.2348,0.2348,0.27,5.86,positive,doi.org/10.1006/jcht.1999.0607 +1026,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.114055986,0.15,9.014,22.894,positive,doi.org/10.1002/macp.1994.021950233 +69,118,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,98900,1.019587629,0.007529903,0.01058,0.1,-1.3,positive,doi.org/10.1627/jpi1958.33.117 +1046,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0475,,0.1,30.44,positive,doi.org/10.1103/PhysRevA.18.2683 +1047,42,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,171300,1.964449541,0.0194,,0.1,26.2,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +386,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.176799578,0.2199,3.922,172.334,negative,doi.org/10.1021/ma9517308 +1048,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.005575077,0.0075,0.1,24,positive,doi.org/10.1002/macp.1965.020880115 +1049,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.006,,0.1,24.55,positive,doi.org/10.1039/B301190A +252,1,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,11615,1.110739218,0.0242,,0.1,133.55,negative,See 2001FIS in ISBN: 9781420067989 +387,49,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22000,1.030010768,0.16084021,0.201,0.7,83,positive,doi.org/10.1002/polb.1994.090321315 +114,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,2.6,172.669,negative,doi.org/10.1021/ma9517308 +297,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.0861,0.0861,2.74,23.3,positive,doi.org/10.1006/jcht.1999.0607 +1027,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.008048709,0.011,9.5,52.82,positive,doi.org/10.1016/S0378-3812(97)00157-X +1028,25,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,10200,1.059190031,0.1299,,0.1,12.244,positive,doi.org/10.1063/1.439127 +102,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.139214446,0.163,1.77,62.91,positive,doi.org/10.1021/ma00107a011 +1050,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.108,,0.1,21.44,positive,doi.org/10.1039/B301190A +1051,24,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,280000,4.827586207,0.204079052,0.25684,0.1,20.49,positive,See 1984GIL in ISBN: 9781420067989 +1052,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.025,,0.1,23.322,positive,doi.org/10.1063/1.430349 +11,41,polystyrene,9003-53-6,*C(C*)c1ccccc1,1-dodecanol,112-53-8,CCCCCCCCCCCCO,235000,2.100089366,0.422148844,0.48,0.1,152.9,positive,"See 2001HE1 ISBN: 9036516463, doi.org/10.1016/S0040-6031(01)00587-1" +388,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.084136448,0.1076,1.736,77.932,positive,doi.org/10.1021/ma9517308 +298,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1503,0.1503,5.64,23.5,positive,doi.org/10.1006/jcht.1999.0607 +58,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.172,,20,11.75,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +162,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.051628821,0.0565,0.1,32.95,negative,doi.org/10.1021/ma011533a +1029,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.013195673,0.018,2.931,56.43,positive,doi.org/10.1016/S0378-3812(97)00157-X +48,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.1205,0.1205,1.92,67.19,positive,doi.org/10.1006/jcht.1999.0607 +1053,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.118,,0.1,21.42,positive,doi.org/10.1039/B301190A +389,21,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,25000,1.059322034,0.133912138,0.1687,3.229,146.955,negative,doi.org/10.1021/ma9517308 +542,2,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,6500,1.035031847,0.06615654,0.09,10,251,negative,doi.org/10.1021/ie034302w +253,7,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8420,1.24925816,0.145441381,0.1607,0.1,121.9,negative,doi.org/10.1016/0378-3812(93)85105-U +1054,12,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,13200000,1.130136986,0.0057,,0.1,31.97,positive,doi.org/10.1039/B301190A +1030,81,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,719000,1.060471976,0.0516,,0.1,61.653,positive,doi.org/10.1063/1.439127 +12,41,polystyrene,9003-53-6,*C(C*)c1ccccc1,1-dodecanol,112-53-8,CCCCCCCCCCCCO,235000,2.100089366,0.226437373,0.27,0.1,166,positive,"See 2001HE1 ISBN: 9036516463, doi.org/10.1016/S0040-6031(01)00587-1" +115,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.091732599,0.11,0.716,160.497,negative,doi.org/10.1021/ma9517308 +299,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.0812,0.0812,1.92,49.69,positive,doi.org/10.1006/jcht.1999.0607 +163,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.900694672,0.9089,0.1,65.47,negative,doi.org/10.1016/S0022-2860(00)00559-7 +34,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.197074196,0.233,0.88,5.01,positive,doi.org/10.1021/ma00107a011 +254,6,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,2530,1.171296296,0.163728103,0.1805,0.1,229.9,positive,doi.org/10.1016/0378-3812(93)85105-U +1055,136,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1500000,1.2,0.031501476,0.042,0.1,30.05,positive,doi.org/10.1002/polc.5070390106 +1056,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.008557304,0.0115,0.1,21,positive,doi.org/10.1002/macp.1965.020880115 +59,91,polystyrene,9003-53-6,*C(C*)c1ccccc1,trans-decahydronaphthalene,493-02-7,C1CCC2CCCCC2C1,270000,2,0.172,,30,12.35,positive,"doi.org/10.1002/macp.200390038, doi.org/10.1016/j.chemphys.2003.11.002" +34,4,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,tetramethylsilane,75-76-3,C[Si](C)(C)C,31120,1.019993445,0.007400742,0.0111,0.1,167.3,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +1057,69,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,37000,1.06017192,0.068281559,0.0899,0.1,237.89,negative,doi.org/10.1021/ma60032a020 +1058,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0498,,0.1,30.418,positive,doi.org/10.1103/PhysRevA.18.2683 +49,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane-d5,57817-88-6 ,[2H]C([2H])([2H])C([2H])([2H])[N+](=O)[O-],90100,1.040415704,0.1844,0.1844,0.53,66.69,positive,doi.org/10.1006/jcht.1999.0607 +1059,39,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,670000,1.098360656,0.021978775,0.0294,0.1,28.06,positive,doi.org/10.1021/ma60032a020 +142,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.078823191,0.102,0.64,9.04,positive,doi.org/10.1021/ma00107a011 +1031,109,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,14000,1.059803179,0.226565452,0.2865,0.1,18.45,positive,doi.org/10.1016/j.eurpolymj.2003.09.027 +9,1,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,20000,2.5,0.592885375,0.6,0.1,28.4,negative,doi.org/10.1021/jp0574854 +1060,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.1218,,0.1,25.491,positive,doi.org/10.1103/PhysRevE.55.3159 +164,18,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,224000,3.2,0.009099181,0.01,0.1,32.8,negative,doi.org/10.1002/1521-3935(20010301)202:5<750::AID-MACP750>3.0.CO;2-8 +6,1,polyisobutylene,9003-27-4,*CC(*)(C)C,n-heptane,142-82-5,CCCCCCC,1000000,1.666666667,0.018867925,0.025,3.9,190.8,negative,doi.org/10.1021/je010171z +255,7,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8420,1.24925816,0.021569108,0.0242,0.1,124.7,negative,doi.org/10.1016/0378-3812(93)85105-U +75,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.041879016,0.06,10.2,130,negative,doi.org/10.1021/je0103162 +1061,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0012,,0.1,25.08,positive,doi.org/10.1103/PhysRevE.55.3159 +300,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.1212,0.1212,4.7,48.69,positive,doi.org/10.1006/jcht.1999.0607 +76,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.078031753,0.11,7.03,150,negative,doi.org/10.1021/je0103162 +35,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],2-propanone,67-64-1,CC(=O)C,26900,1.059055118,0.180315051,0.214,1.49,4.19,positive,doi.org/10.1021/ma00107a011 +1032,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.036526526,0.0494,14.05,25.8,positive,doi.org/10.1016/S0378-3812(97)00302-6 +77,5,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,41700,3.690265487,0.002056292,0.003,12.48,150,negative,doi.org/10.1021/je0103162 +78,11,polyethylene,9002-88-4,*CC*,n-pentane,109-66-0,CCCCC,27700,1.992805755,0.052602282,0.075,8.89,150,negative,doi.org/10.1021/je0103162 +301,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.0625,0.0625,2.54,3.32,positive,doi.org/10.1006/jcht.1999.0607 +302,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1654,0.1654,0.49,24.2,positive,doi.org/10.1006/jcht.1999.0607 +1033,83,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,46400,1.059360731,0.0769,,0.1,39.294,positive,doi.org/10.1063/1.439127 +154,4,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,95000,1.039956212,0.1171,,0.1,43.7,positive,doi.org/10.1063/1.472437 +1062,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0162,,0.1,22.743,positive,doi.org/10.1063/1.430349 +13,41,polystyrene,9003-53-6,*C(C*)c1ccccc1,1-dodecanol,112-53-8,CCCCCCCCCCCCO,235000,2.100089366,0.326630671,0.38,0.1,162.3,positive,"See 2001HE1 ISBN: 9036516463, doi.org/10.1016/S0040-6031(01)00587-1" +1063,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.0511,,0.1,23.82,positive,doi.org/10.1063/1.430349 +390,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.084136448,0.1076,3.033,70.948,positive,doi.org/10.1021/ma9517308 +1064,44,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,346000,1.647619048,0.151516002,0.194,0.1,26,positive,doi.org/10.1002/macp.1965.020880115 +543,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.048847856,0.0669,1.969,162.78,negative,doi.org/10.1016/j.supflu.2005.08.004 +44,1,poly(alpha-methylstyrene),25014-31-7,*CC(*)(C)c1ccccc1,pentyl acetate,628-63-7,CCCCCOC(=O)C,61400,1.04957265,0.04112483,0.05,0.1,8.7,positive,doi.org/10.1016/0032-3861(95)91454-F +544,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.162223041,0.2128,9.87,245.85,negative,See 2001TOR in ISBN: 9781420067989 +143,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,2-propanone,67-64-1,CC(=O)C,13500,1.058823529,0.078823191,0.102,1.11,8.27,positive,doi.org/10.1021/ma00107a011 +10,1,poly(vinyl chloride),9002-86-2,*CC(*)Cl,phenetole,103-73-1,CCOc1ccccc1,75000,1.159196291,0.057433034,0.08,50,37.9,positive,doi.org/10.1002/macp.1985.021860409 +1065,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.0186,,0.1,23.834,positive,doi.org/10.1103/PhysRevE.55.3159 +303,48,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],90100,1.040415704,0.2265,0.2265,0.44,37.53,positive,doi.org/10.1006/jcht.1999.0607 +120,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.224035975,0.2121,5.11,-4.47,positive,doi.org/10.1006/jcht.1999.0607 +1034,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,42.46,19.55,positive,doi.org/10.1063/1.464440 +70,86,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,171900,1.029958059,0.1357877,0.1813,0.1,170.5,negative,doi.org/10.1002/pen.760330806 +116,2,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],propionitrile,107-12-0,CCC#N,26700,1.051181102,0.196286655,0.2301,0.657,158.548,negative,doi.org/10.1021/ma9517308 +1035,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.033831286,0.0458,16.012,52.08,positive,doi.org/10.1016/S0378-3812(97)00157-X +391,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.176884422,0.22,3.622,-4.714,positive,doi.org/10.1021/ma9517308 +1036,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.206896594,0.2634,9.05,29.87,positive,doi.org/10.1016/S0378-3812(97)00302-6 +165,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.138529176,0.1503,0.1,28.78,negative,doi.org/10.1016/S0022-2860(00)00559-7 +166,2,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,144000,2.057142857,0.027987201,0.0307,36.5,39.35,negative,doi.org/10.1021/ma011533a +1066,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0018,,0.1,27.517,positive,doi.org/10.1103/PhysRevA.18.2683 +63,4,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],26900,1.059055118,0.168180942,0.185,3.02,90.37,negative,doi.org/10.1021/ma00107a011 +1037,7,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,405000,2.832167832,0.018362259,0.025,12.363,52.25,positive,doi.org/10.1016/S0378-3812(97)00157-X +167,4,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,615000,2.039800995,0.061926585,0.0677,0.1,33.25,negative,doi.org/10.1021/ma011533a +1038,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,16.87,20.73,positive,doi.org/10.1063/1.464440 +1067,27,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,1560000,1.02970297,0.0566,,0.1,30.318,positive,doi.org/10.1103/PhysRevA.18.2683 +155,8,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,143000,1.04,0.0265,,0.1,48.804,positive,doi.org/10.1063/1.472437 +304,4,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],13500,1.059654631,0.0833,0.0833,0.67,6.51,positive,doi.org/10.1006/jcht.1999.0607 +29,37,polystyrene,9003-53-6,*C(C*)c1ccccc1,ethyl acetate,141-78-6,CCOC(=O)C,233000,1.059090909,0.008602602,0.01,0.1,156.7,negative,doi.org/10.1021/ma00015a024 +96,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,dodecadeuterocyclohexane,1735-17-7,[2H]C1([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C([2H])([2H])C1([2H])[2H],400000,1.059883413,0.025,,0.1,29.85,positive,doi.org/10.1039/B301190A +1068,68,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,423300,1.239894552,0.096305139,0.1256,0.1,25.1,positive,See 1986KRU in ISBN: 9781420067989 +545,6,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,105000,2.441860465,0.059610426,0.0813,5.86,198.85,negative,See 2001TOR in ISBN: 9781420067989 +1039,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.2058,,0.1,22.8,positive,doi.org/10.1063/1.439127 +256,10,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,8000,1.6,0.017817372,0.02,0.1,279,positive,doi.org/10.1021/ma00015a024 +257,5,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,6197,1.016568241,0.0269,,0.1,138.85,negative,"doi.org/10.1021/jp960791k, See 2001FIS in ISBN: 9781420067989" +103,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.166591168,0.194,1.31,65.94,positive,doi.org/10.1021/ma00107a011 +1069,6,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,400000,1.059883413,0.069,,0.1,26.07,positive,doi.org/10.1039/B301190A +1070,93,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190500,2.289663462,0.0325,,0.1,223.8,negative,doi.org/10.1002/(SICI)1521-3935(19990801)200:8<1889::AID-MACP1889>3.0.CO;2-A +121,3,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],85200,1.020359281,0.105951487,0.0995,0.56,14.96,positive,doi.org/10.1006/jcht.1999.0607 +1040,78,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.1719,,0.1,22.83,positive,doi.org/10.1063/1.439127 +71,79,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,791000,1.010217114,0.042966491,0.05951,0.1,12.8,positive,doi.org/10.1627/jpi1958.33.117 +305,8,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],129200,1.03030303,0.1322,0.1322,2.67,49.19,positive,doi.org/10.1006/jcht.1999.0607 +258,2,poly(ethylene glycol),25322-68-3,*OCC*,water,7732-18-5,O,15481,1.273003865,0.2198,,0.1,117.2,negative,"doi.org/10.1002/macp.1994.021951003, See 2001FIS in ISBN: 9781420067989" +546,9,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,15500,1.076388889,0.087988304,0.1187,4.5,200.03,negative,doi.org/10.1016/j.fluid.2003.07.004 +1071,51,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,239000,2.779069767,0.1008,,0.1,25.58,positive,doi.org/10.1103/PhysRevE.55.3159 +306,15,polystyrene,9003-53-6,*C(C*)c1ccccc1,nitroethane,79-24-3,CC[N+](=O)[O-],30740,1.06,0.1977,0.1977,0.66,23.8,positive,doi.org/10.1006/jcht.1999.0607 +14,41,polystyrene,9003-53-6,*C(C*)c1ccccc1,1-dodecanol,112-53-8,CCCCCCCCCCCCO,235000,2.100089366,0.105753135,0.13,0.1,170.9,positive,"See 2001HE1 ISBN: 9036516463, doi.org/10.1016/S0040-6031(01)00587-1" +104,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.175485948,0.204,1.39,106.17,negative,doi.org/10.1021/ma00107a011 +1041,81,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,719000,1.060471976,0.0305,,0.1,61.653,positive,doi.org/10.1063/1.439127 +1072,33,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,2700000,1.099796334,0.038951421,0.0518,0.1,218.09,negative,doi.org/10.1021/ma60032a020 +156,2,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-octanone,106-68-3,CCCCCC(=O)CC,596000,1.040139616,0.0957,,0.1,59.47,positive,doi.org/10.1063/1.472437 +1073,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1786,,0.1,21.876,positive,doi.org/10.1063/1.430349 +392,10,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,8000,1.089918256,0.143283582,0.18,2.688,-4.151,positive,doi.org/10.1021/ma9517308 +105,18,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],13500,1.058823529,0.09653999,0.114,1.43,64.26,positive,doi.org/10.1021/ma00107a011 +1074,90,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,190000,1.038251366,0.001633118,0.0022,0.1,18.33,positive,doi.org/10.1016/S0378-3812(99)00128-4 +1042,11,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,16100,1.059210526,0.131680644,0.1721,29.62,19.9,positive,doi.org/10.1063/1.464440 +1075,26,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,209000,2.130479103,0.051,,0.1,26.83,positive,"doi.org/10.1016/S0378-3812(99)00017-5, doi.org/10.1016/S0014-3057(98)00245-6" +393,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.202445508,0.2499,2.688,163.587,negative,doi.org/10.1021/ma9517308 +106,57,polystyrene,9003-53-6,*C(C*)c1ccccc1,"1,1,1,3,3,3-hexadeutero-2-propanone",666-52-4,[2H]C([2H])([2H])C(=O)C([2H])([2H])[2H],7800,1.181818182,0.145370389,0.17,0.1,13.73,positive,doi.org/10.1063/1.1143329 +1076,55,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,100000,1.063829787,0.14905148,0.191,0.1,229.2,negative,doi.org/10.1002/app.1993.070470707 +394,16,polystyrene,9003-53-6,*C(C*)c1ccccc1,propionitrile,107-12-0,CCC#N,22100,1.03030303,0.126732673,0.16,4.848,181.541,negative,doi.org/10.1021/ma9517308 +547,1,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,52000,1.18993135,0.045517759,0.06242,4.789,182.37,negative,doi.org/10.1016/j.supflu.2005.08.004 +122,1,polystyrene-d8,27732-42-9,[2H]C([2H])(*)C(*)([2H])c1c([2H])c([2H])c([2H])c([2H])c1[2H],nitroethane,79-24-3,CC[N+](=O)[O-],27200,1.03030303,0.093148089,0.0874,1.65,-4.31,positive,doi.org/10.1006/jcht.1999.0607 +1043,71,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,90000,1.039981511,0.071901253,0.096,0.1,46.35,positive,doi.org/10.1016/j.eurpolymj.2003.09.027 +34,6,poly(dimethylsiloxane),9016-00-6,C[Si](*)(C)O*,"2,2-dimethylpropane",463-82-1,CC(C)(C)C,16370,1.109830508,0.050823462,0.0804,0.1,155.1,negative,"Barbarin-Castillo, J.M., McLure, I.A., Clarson, S.J., and Semlyen, J.A., Studies of cyclic and linear poly(dimethylsiloxanes): 25. Lower critical threshold temperatures in tetramethyl solvents, Polym. Commun., 28, 212, 1987" +72,115,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclopentane,287-92-3,C1CCCC1,98900,1.019587629,0.111820138,0.1507,0.1,172.9,negative,doi.org/10.1002/pen.760330806 +548,10,polyethylene,9002-88-4,*CC*,n-hexane,110-54-3,CCCCCC,67100,1.1,0.027077076,0.0374,4.6,173,negative,doi.org/10.1021/ie034302w +1044,63,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,31600,1.085910653,0.065916504,0.0882,7.05,28.95,positive,doi.org/10.1016/S0378-3812(97)00302-6 +1077,64,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,123000,1.060344828,0.068,,0.1,21.42,positive,doi.org/10.1039/B301190A +1078,23,polystyrene,9003-53-6,*C(C*)c1ccccc1,cyclohexane,110-82-7,C1CCCCC1,200000,1.020408163,0.1613,,0.1,22.47,positive,doi.org/10.1063/1.430349 +1045,1,polystyrene,9003-53-6,*C(C*)c1ccccc1,methylcyclohexane,108-87-2,CC1CCCCC1,17500,1.060606061,0.212489212,0.27,24.966,21.107,positive,doi.org/10.1002/macp.1994.021950233 +4,4,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,470000,1.199998979,0.069012353,0.0808,0.1,5.21,positive,doi.org/10.1016/0254-0584(86)90068-4 +1,1,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.439647887,0.4896,0.1,83.83,positive,doi.org/10.1002/polc.5070390128 +1,10,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-butanol,71-36-3,CCCCO,380000,2.533333333,0.522197815,0.6081,0.1,68.15,positive,doi.org/10.1016/0032-3861(94)90678-5 +4,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,730000,1.303571429,0.031678437,0.0377,0.1,32.43,positive,doi.org/10.1016/0254-0584(83)90036-6 +1,11,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,195000,1.25,0.141479184,0.1881,0.1,20.75,positive,doi.org/10.1016/0254-0584(86)90068-4 +5,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,730000,1.303571429,0.124663036,0.1457,0.1,32.36,positive,doi.org/10.1016/0254-0584(83)90036-6 +1,2,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,deuterium oxide,7789-20-0,[2H]O[2H],20000,2.5,0.412492493,0.3957,0.1,29.74,negative,doi.org/10.1021/ma051745y +168,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.471802292,0.4956,0.1,23.96,negative,doi.org/10.1002/polb.20423 +1,2,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,2050000,1.229999754,0.014454902,0.0196,0.1,22.94,positive,doi.org/10.1016/0254-0584(86)90068-4 +169,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.002909937,0.0032,0.1,33.84,negative,doi.org/10.1016/S0022-2860(00)00559-7 +2,10,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-butanol,71-36-3,CCCCO,380000,2.533333333,0.423388881,0.5104,0.1,75.9,positive,doi.org/10.1016/0032-3861(94)90678-5 +1,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,toluene,108-88-3,CC1=CC=CC=C1,470000,1.199998979,0.136242208,0.15,4.96,284.91,negative,doi.org/10.1016/0014-3057(83)90057-5 +1,1,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,20000,1.699957501,0.087731138,0.0988,0.1,67.16,negative,doi.org/10.1002/polb.1988.090260312 +170,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.118850499,0.1292,0.1,28.87,negative,doi.org/10.1002/polb.20423 +171,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.228276535,0.2455,0.1,29.11,negative,doi.org/10.1016/S0022-2860(00)00559-7 +2,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,toluene,108-88-3,CC1=CC=CC=C1,470000,1.199998979,0.136242208,0.15,6.91,308.77,negative,doi.org/10.1016/0014-3057(83)90057-5 +1,1,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,53300,1.079996758,0.1285,,0.1,18.72,positive,doi.org/10.1295/polymj.17.1123 +1,1,polyisobutylene,9003-27-4,*CC(*)(C)C,n-pentane,109-66-0,CCCCC,1000000,1.666666667,0.015448208,0.0224,16.96,170.18,negative,doi.org/10.1021/je010171z +2,12,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,685000,1.200000701,0.078990068,0.1076,0.1,23.18,positive,doi.org/10.1016/0254-0584(86)90068-4 +3,10,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-butanol,71-36-3,CCCCO,380000,2.533333333,0.09119431,0.1247,0.1,83.31,positive,doi.org/10.1016/0032-3861(94)90678-5 +1,1,"poly(1,3-dioxolane)",25067-64-5,*OCOCC*,water,7732-18-5,O,50000,1.500015,0.024278268,0.0311,0.1,70.22,negative,doi.org/10.1021/ma00047a022 +4,13,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-butanol,71-36-3,CCCCO,120000,2.4,0.189894489,0.2497,0.1,76.23,positive,doi.org/10.1002/(SICI)1097-4628(19960523)60:8<1127::AID-APP5>3.0.CO;2-N +1,1,polypropylene,9003-07-0,*CC(*)C,didecyl phthalate,84-77-5,CCCCCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCCCCC,380000,1.099998553,0.033512248,0.0299,0.1,81.53,positive,doi.org/10.1021/ma00041a024 +172,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.384215992,0.407,0.1,26.33,negative,doi.org/10.1002/polb.20423 +6,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,730000,1.303571429,0.050518734,0.0599,0.1,32.73,positive,doi.org/10.1016/0254-0584(83)90036-6 +2,2,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,2050000,1.229999754,0.122768448,0.1602,0.1,22.4,positive,doi.org/10.1016/0254-0584(86)90068-4 +7,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,730000,1.303571429,0.026272757,0.0313,0.1,32.31,positive,doi.org/10.1016/0254-0584(83)90036-6 +173,20,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,11400,1.07002065,0.009099181,0.01,0.1,40.72,negative,doi.org/10.1021/ma0519617 +174,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.737783331,0.7558,0.1,31.68,negative,doi.org/10.1016/S0022-2860(00)00559-7 +1,14,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-decanol,112-30-1,CCCCCCCCCCO,250000,1.602564103,0.221646308,0.2805,0.1,114.01,positive,doi.org/10.1016/S0032-3861(97)10141-0 +175,21,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,12500,1.080006912,0.009099181,0.01,0.1,34.96,negative,doi.org/10.1021/ma0519617 +176,22,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.390591791,0.4135,0.1,23.86,negative,doi.org/10.1021/ma048472b +177,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.001454757,0.0016,0.1,31.06,negative,doi.org/10.1002/polb.20423 +2,1,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,53300,1.079996758,0.2256,,0.1,15.54,positive,doi.org/10.1295/polymj.17.1123 +3,12,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,685000,1.200000701,0.009281791,0.013,0.1,22.79,positive,doi.org/10.1016/0254-0584(86)90068-4 +2,1,polyisobutylene,9003-27-4,*CC(*)(C)C,n-pentane,109-66-0,CCCCC,1000000,1.666666667,0.015448208,0.0224,21.03,199.85,negative,doi.org/10.1021/je010171z +178,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.086006125,0.0938,0.1,29.09,negative,doi.org/10.1002/polb.20423 +179,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.125090896,0.1359,0.1,28.69,negative,doi.org/10.1002/polb.20423 +2,1,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,20000,1.699957501,0.174696976,0.1944,0.1,70.01,negative,doi.org/10.1002/polb.1988.090260312 +8,7,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,470000,1.205128205,0.031255705,0.0372,0.1,31.23,positive,doi.org/10.1016/0254-0584(83)90036-6 +3,1,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,53300,1.079996758,0.1792,,0.1,17.58,positive,doi.org/10.1295/polymj.17.1123 +9,8,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,250000,1.136363636,0.189909811,0.2192,0.1,28.85,positive,doi.org/10.1016/0254-0584(83)90036-6 +180,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.092761655,0.1011,0.1,30.07,negative,doi.org/10.1016/S0022-2860(00)00559-7 +3,2,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,50000,2.400038401,0.004476488,0.0051,0.1,63.69,negative,doi.org/10.1002/polb.1988.090260312 +181,22,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.091280217,0.0995,0.1,27.88,negative,doi.org/10.1021/ma048472b +2,1,"poly(1,3-dioxolane)",25067-64-5,*OCOCC*,water,7732-18-5,O,50000,1.500015,0.611266356,0.6698,0.1,47.25,negative,doi.org/10.1021/ma00047a022 +4,1,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,53300,1.079996758,0.1853,,0.1,17.26,positive,doi.org/10.1295/polymj.17.1123 +4,15,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,375000,1.2,0.058771504,0.0807,0.1,21.11,positive,doi.org/10.1016/0254-0584(86)90068-4 +2,14,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-decanol,112-30-1,CCCCCCCCCCO,250000,1.602564103,0.301825962,0.3718,0.1,110.22,positive,doi.org/10.1016/S0032-3861(97)10141-0 +1,16,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,methanol,67-56-1,CO,102600,2.124223602,0.317899194,0.4036,0.1,60.12,positive,doi.org/10.1016/S0032-3861(02)00409-3 +1,17,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,sulfolane,126-33-0,C1CCS(=O)(=O)C1,93300,2.010775862,0.230397595,0.2146,0.1,38.79,positive,doi.org/10.1021/ma00205a014 +182,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.255358425,0.2739,0.1,27.36,negative,doi.org/10.1002/polb.20423 +2,2,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.166773804,0.1966,0.1,46.52,positive,doi.org/10.1016/0014-3057(73)90089-X +5,15,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,375000,1.2,0.118069872,0.1584,0.1,20.03,positive,doi.org/10.1016/0254-0584(86)90068-4 +3,3,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.351918071,0.399,0.1,70.31,positive,doi.org/10.1016/0014-3057(73)90138-9 +5,9,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,250000,1.129999684,0.025503592,0.0301,0.1,1.77,positive,doi.org/10.1016/0254-0584(86)90068-4 +10,7,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,470000,1.205128205,0.059050955,0.0699,0.1,31.48,positive,doi.org/10.1016/0254-0584(83)90036-6 +1,1,polypropylene,9003-07-0,*CC(*)C,dioctyl phthalate,117-84-0,CCCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCCC,380000,1.099998553,0.017738133,0.0156,0.1,120.6,positive,doi.org/10.1021/ma00041a024 +6,11,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,195000,1.25,0.073471273,0.1003,0.1,22.54,positive,doi.org/10.1016/0254-0584(86)90068-4 +7,15,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,375000,1.2,0.043651554,0.0603,0.1,21.14,positive,doi.org/10.1016/0254-0584(86)90068-4 +1,1,poly(vinyl alcohol),9002-89-5,*CC(O)*,ethylene glycol,107-21-1,C(CO)O,102400,1.695364238,0.012362446,0.0139,0.1,67.87,positive,doi.org/10.1002/polb.1991.090290510 +1,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,cyclopentane,287-92-3,C1CCCC1,470000,1.199998979,0.119359146,0.15,9.26,275.66,negative,doi.org/10.1016/0014-3057(83)90057-5 +4,2,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.348781488,0.3957,0.1,76.7,positive,doi.org/10.1016/0014-3057(73)90089-X +183,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.001545693,0.0017,0.1,31.37,negative,doi.org/10.1002/polb.20423 +184,22,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.001363822,0.0015,0.1,31.01,negative,doi.org/10.1021/ma048472b +5,1,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,53300,1.079996758,0.0706,,0.1,19.06,positive,doi.org/10.1295/polymj.17.1123 +6,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.303571429,0.119211776,0.1383,0.1,5.52,positive,doi.org/10.1016/0254-0584(83)90036-6 +185,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.622579742,0.6447,0.1,28.09,negative,doi.org/10.1016/S0022-2860(00)00559-7 +3,2,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,2050000,1.229999754,0.198939598,0.2529,0.1,20.24,positive,doi.org/10.1016/0254-0584(86)90068-4 +6,1,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,53300,1.079996758,0.1121,,0.1,18.89,positive,doi.org/10.1295/polymj.17.1123 +11,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,730000,1.303571429,0.039299636,0.0467,0.1,32.65,positive,doi.org/10.1016/0254-0584(83)90036-6 +1,1,polypropylene,9003-07-0,*CC(*)C,diheptyl phthalate,3648-21-3,CCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCC,380000,1.099998553,0.08627087,0.0751,0.1,129.03,positive,doi.org/10.1021/ma00041a024 +5,10,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-butanol,71-36-3,CCCCO,380000,2.533333333,0.030387947,0.0426,0.1,83.32,positive,doi.org/10.1016/0032-3861(94)90678-5 +186,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.278260545,0.2978,0.1,28.11,negative,doi.org/10.1002/polb.20423 +4,2,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,2050000,1.229999754,0.029362037,0.0396,0.1,23.02,positive,doi.org/10.1016/0254-0584(86)90068-4 +187,22,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.677849287,0.6983,0.1,26,negative,doi.org/10.1021/ma048472b +188,23,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,19100,1.080011309,0.009099181,0.01,0.1,36.31,negative,doi.org/10.1021/ma0519617 +189,24,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,58400,1.119996932,0.009099181,0.01,0.1,34.11,negative,doi.org/10.1021/ma0519617 +8,15,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,375000,1.2,0.051411174,0.0708,0.1,21.22,positive,doi.org/10.1016/0254-0584(86)90068-4 +3,1,polyisobutylene,9003-27-4,*CC(*)(C)C,n-pentane,109-66-0,CCCCC,1000000,1.666666667,0.015448208,0.0224,15.36,160.16,negative,doi.org/10.1021/je010171z +9,11,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,195000,1.25,0.051262923,0.0706,0.1,22.83,positive,doi.org/10.1016/0254-0584(86)90068-4 +190,25,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,186800,2.600005567,0.378533419,0.4012,0.1,23.96,negative,doi.org/10.1021/ma048472b +1,1,poly(ethyl methacrylate),9003-42-3,CCOC(=O)C(C)(*)C*,1-decanol,112-30-1,CCCCCCCCCCO,210000,2.1,0.448611657,0.5181,0.1,54.38,positive,doi.org/10.1016/S0032-3861(97)10141-0 +5,1,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.35144257,0.3985,0.1,69.51,positive,doi.org/10.1002/polc.5070390128 +7,10,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.290001078,0.213945152,0.244,0.1,4.28,positive,doi.org/10.1016/0254-0584(86)90068-4 +3,1,"poly(1,3-dioxolane)",25067-64-5,*OCOCC*,water,7732-18-5,O,50000,1.500015,0.391267307,0.4533,0.1,68.83,negative,doi.org/10.1021/ma00047a022 +5,2,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,2050000,1.229999754,0.037026654,0.0498,0.1,23.11,positive,doi.org/10.1016/0254-0584(86)90068-4 +7,2,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,133000,1.080001299,0.0192,,0.1,24.36,positive,doi.org/10.1295/polymj.17.1123 +191,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.036404777,0.0399,0.1,29.67,negative,doi.org/10.1016/S0022-2860(00)00559-7 +192,26,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,14000,1.4,0.191130011,0.2063,0.1,35.39,negative,doi.org/10.1002/(SICI)1099-0518(19970715)35:9<1763::AID-POLA17>3.0.CO;2-3 +10,3,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,60500,2.951219512,0.637295595,0.6441,0.1,33.52,negative,doi.org/10.1016/S0032-3861(99)00513-3 +6,3,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,520000,1.17000117,0.022410303,0.0303,0.1,21.92,positive,doi.org/10.1016/0254-0584(86)90068-4 +2,1,poly(vinyl alcohol),9002-89-5,*CC(O)*,ethylene glycol,107-21-1,C(CO)O,102400,1.695364238,0.031202313,0.035,0.1,78.59,positive,doi.org/10.1002/polb.1991.090290510 +193,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.024057739,0.0264,0.1,30.12,negative,doi.org/10.1016/S0022-2860(00)00559-7 +11,4,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,99000,2.129032258,0.012917625,0.0133,0.1,32.29,negative,doi.org/10.1143/JJAP.27.L1787 +5,1,poly(vinyl acetate),9003-20-7,*CC(*)OC(C)=O,cyclopentene,142-29-0,C1CC=CC1,124800,2.368121442,0.039861292,0.06,11.51,187.28,positive,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +194,22,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.780403187,0.7963,0.1,31.52,negative,doi.org/10.1021/ma048472b +7,3,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,520000,1.17000117,0.171945203,0.2206,0.1,21.42,positive,doi.org/10.1016/0254-0584(86)90068-4 +12,8,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,250000,1.136363636,0.019026913,0.0227,0.1,26.76,positive,doi.org/10.1016/0254-0584(83)90036-6 +13,8,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,250000,1.136363636,0.08559639,0.1008,0.1,29.1,positive,doi.org/10.1016/0254-0584(83)90036-6 +195,27,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,18000,4,0.476988723,0.5008,0.1,24.04,negative,doi.org/10.1021/ma048472b +12,4,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,99000,2.129032258,0.096492108,0.0991,0.1,33.08,negative,doi.org/10.1143/JJAP.27.L1787 +196,28,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,20500,1.140028918,0.009099181,0.01,0.1,36.02,negative,doi.org/10.1021/ma0519617 +1,2,poly(ethyl methacrylate),9003-42-3,CCOC(=O)C(C)(*)C*,1-butanol,71-36-3,CCCCO,220000,2,0.472234218,0.5508,0.1,9.07,positive,doi.org/10.1002/(SICI)1097-4628(19960523)60:8<1127::AID-APP5>3.0.CO;2-N +13,3,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,60500,2.951219512,0.147151607,0.1509,0.1,36.08,negative,doi.org/10.1016/S0032-3861(99)00513-3 +8,1,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,53300,1.079996758,0.0079,,0.1,15.5,positive,doi.org/10.1295/polymj.17.1123 +10,15,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,375000,1.2,0.073848508,0.1008,0.1,21.07,positive,doi.org/10.1016/0254-0584(86)90068-4 +14,7,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,470000,1.205128205,0.138992458,0.162,0.1,31.45,positive,doi.org/10.1016/0254-0584(83)90036-6 +6,13,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-butanol,71-36-3,CCCCO,120000,2.4,0.295107344,0.3728,0.1,75.51,positive,doi.org/10.1002/(SICI)1097-4628(19960523)60:8<1127::AID-APP5>3.0.CO;2-N +2,2,poly(ethyl methacrylate),9003-42-3,CCOC(=O)C(C)(*)C*,1-butanol,71-36-3,CCCCO,220000,2,0.090346908,0.1198,0.1,28.48,positive,doi.org/10.1002/(SICI)1097-4628(19960523)60:8<1127::AID-APP5>3.0.CO;2-N +9,2,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,133000,1.080001299,0.2113,,0.1,20.74,positive,doi.org/10.1295/polymj.17.1123 +197,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.739565536,0.7575,0.1,31.69,negative,doi.org/10.1016/S0022-2860(00)00559-7 +11,12,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,685000,1.200000701,0.019645137,0.0274,0.1,24.34,positive,doi.org/10.1016/0254-0584(86)90068-4 +8,3,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,520000,1.17000117,0.107005338,0.1404,0.1,22.04,positive,doi.org/10.1016/0254-0584(86)90068-4 +198,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.027073097,0.0297,0.1,30.02,negative,doi.org/10.1016/S0022-2860(00)00559-7 +6,2,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.444384545,0.4944,0.1,90.3,positive,doi.org/10.1016/0014-3057(73)90089-X +10,1,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,53300,1.079996758,0.2082,,0.1,16.73,positive,doi.org/10.1295/polymj.17.1123 +1,137,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-hexadecane,544-76-3,CCCCCCCCCCCCCCCC,19950,1.05,0.154847751,0.1999,0.1,158.34,positive,doi.org/10.1021/ma0610055 +12,15,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,375000,1.2,0.09707392,0.1313,0.1,20.65,positive,doi.org/10.1016/0254-0584(86)90068-4 +199,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.02268772,0.0249,0.1,31.55,negative,doi.org/10.1016/S0022-2860(00)00559-7 +200,27,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,18000,4,0.092761655,0.1011,0.1,28.18,negative,doi.org/10.1021/ma048472b +13,12,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,685000,1.200000701,0.03630582,0.0503,0.1,24.56,positive,doi.org/10.1016/0254-0584(86)90068-4 +2,16,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,methanol,67-56-1,CO,102600,2.124223602,0.231332006,0.3041,0.1,61.46,positive,doi.org/10.1016/S0032-3861(02)00409-3 +2,137,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-hexadecane,544-76-3,CCCCCCCCCCCCCCCC,19950,1.05,0.330197133,0.402,0.1,157.22,positive,doi.org/10.1021/ma0610055 +7,3,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.401593953,0.4507,0.1,81.42,positive,doi.org/10.1016/0014-3057(73)90138-9 +1,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,"2,2,4-trimethylpentane",540-84-1,CC(C)CC(C)(C)C,470000,1.199998979,0.1118173,0.15,1.94,238.65,negative,doi.org/10.1016/0014-3057(83)90057-5 +14,15,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,375000,1.2,0.066550105,0.0911,0.1,21.04,positive,doi.org/10.1016/0254-0584(86)90068-4 +1,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-hexane,110-54-3,CCCCCC,470000,1.199998979,0.107055829,0.15,6.67,251.21,negative,doi.org/10.1016/0014-3057(83)90057-5 +2,2,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,deuterium oxide,7789-20-0,[2H]O[2H],20000,2.5,0.049159376,0.046,0.1,32.36,negative,doi.org/10.1021/ma051745y +2,1,polypropylene,9003-07-0,*CC(*)C,didecyl phthalate,84-77-5,CCCCCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCCCCC,380000,1.099998553,0.022779697,0.0203,0.1,81.53,positive,doi.org/10.1021/ma00041a024 +2,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-hexane,110-54-3,CCCCCC,470000,1.199998979,0.107055829,0.15,3.2,213.59,negative,doi.org/10.1016/0014-3057(83)90057-5 +1,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-heptane,142-82-5,CCCCCCC,470000,1.199998979,0.111530172,0.15,6.04,290.28,negative,doi.org/10.1016/0014-3057(83)90057-5 +15,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,730000,1.303571429,0.183445859,0.212,0.1,31.54,positive,doi.org/10.1016/0254-0584(83)90036-6 +201,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.044102742,0.0483,0.1,29.28,negative,doi.org/10.1016/S0022-2860(00)00559-7 +202,25,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,186800,2.600005567,0.280565992,0.3002,0.1,24.81,negative,doi.org/10.1021/ma048472b +11,1,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,53300,1.079996758,0.1575,,0.1,18.06,positive,doi.org/10.1295/polymj.17.1123 +2,1,poly(ethyl methacrylate),9003-42-3,CCOC(=O)C(C)(*)C*,1-decanol,112-30-1,CCCCCCCCCCO,210000,2.1,0.641847151,0.7031,0.1,41.19,positive,doi.org/10.1016/S0032-3861(97)10141-0 +1,18,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,tert-butyl alcohol,75-65-0,CC(C)(C)O,93300,2.010775862,0.190127071,0.2547,0.1,41.87,positive,doi.org/10.1021/ma00225a018 +8,9,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,250000,1.129999684,0.139551408,0.1613,0.1,3.2,positive,doi.org/10.1016/0254-0584(86)90068-4 +15,15,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,375000,1.2,0.036525565,0.0506,0.1,21.16,positive,doi.org/10.1016/0254-0584(86)90068-4 +14,4,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,99000,2.129032258,0.200421158,0.2052,0.1,34.69,negative,doi.org/10.1143/JJAP.27.L1787 +3,1,polypropylene,9003-07-0,*CC(*)C,didecyl phthalate,84-77-5,CCCCCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCCCCC,380000,1.099998553,0.056122829,0.0502,0.1,80.52,positive,doi.org/10.1021/ma00041a024 +3,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,toluene,108-88-3,CC1=CC=CC=C1,470000,1.199998979,0.136242208,0.15,6.21,296.99,negative,doi.org/10.1016/0014-3057(83)90057-5 +1,1,polypropylene,9003-07-0,*CC(*)C,dinonyl phthalate,84-76-4,CCCCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCCCC,380000,1.099998553,0.033819794,0.0301,0.1,94.48,positive,doi.org/10.1021/ma00041a024 +3,2,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,deuterium oxide,7789-20-0,[2H]O[2H],20000,2.5,0.204408558,0.1933,0.1,30.9,negative,doi.org/10.1021/ma051745y +8,3,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.213155654,0.2488,0.1,53.65,positive,doi.org/10.1016/0014-3057(73)90138-9 +203,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.000636404,0.0007,0.1,33.13,negative,doi.org/10.1002/polb.20423 +204,27,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,18000,4,0.57407621,0.5972,0.1,25.39,negative,doi.org/10.1021/ma048472b +205,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.474394866,0.4982,0.1,26.36,negative,doi.org/10.1002/polb.20423 +206,25,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,186800,2.600005567,0.572551733,0.5957,0.1,25.13,negative,doi.org/10.1021/ma048472b +6,1,poly(vinyl acetate),9003-20-7,*CC(*)OC(C)=O,cyclopentene,142-29-0,C1CC=CC1,124800,2.368121442,0.039861292,0.06,27.01,172.41,positive,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +16,12,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,685000,1.200000701,0.010787723,0.0151,0.1,23.43,positive,doi.org/10.1016/0254-0584(86)90068-4 +16,7,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,470000,1.205128205,0.117134497,0.1371,0.1,31.56,positive,doi.org/10.1016/0254-0584(83)90036-6 +207,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.008643829,0.0095,0.1,30.6,negative,doi.org/10.1016/S0022-2860(00)00559-7 +4,3,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,128000,3.2,0.223910978,0.2475,0.1,69.9887,negative,doi.org/10.1016/S0032-3861(03)00139-3 +208,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.572246891,0.5954,0.1,27.71,negative,doi.org/10.1016/S0022-2860(00)00559-7 +2,1,polypropylene,9003-07-0,*CC(*)C,diheptyl phthalate,3648-21-3,CCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCC,380000,1.099998553,0.114979349,0.1005,0.1,129.14,positive,doi.org/10.1021/ma00041a024 +3,137,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-hexadecane,544-76-3,CCCCCCCCCCCCCCCC,19950,1.05,0.239997101,0.301,0.1,163.39,positive,doi.org/10.1021/ma0610055 +209,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.04272724,0.0468,0.1,30.36,negative,doi.org/10.1016/S0022-2860(00)00559-7 +5,3,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,128000,3.2,0.004476488,0.0051,0.1,63.9571,negative,doi.org/10.1016/S0032-3861(03)00139-3 +3,1,polypropylene,9003-07-0,*CC(*)C,diheptyl phthalate,3648-21-3,CCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCC,380000,1.099998553,0.114416476,0.1,0.1,123.11,positive,doi.org/10.1021/ma00041a024 +5,1,poly(vinyl acetate),9003-20-7,*CC(*)OC(C)=O,cyclopentane,287-92-3,C1CCCC1,124800,2.368121442,0.03842517,0.06,25.42,258.15,positive,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +4,1,polyisobutylene,9003-27-4,*CC(*)(C)C,n-pentane,109-66-0,CCCCC,1000000,1.666666667,0.015448208,0.0224,2.09,90.31,negative,doi.org/10.1021/je010171z +9,7,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,470000,1.205128205,0.114985869,0.1335,0.1,5.22,positive,doi.org/10.1016/0254-0584(83)90036-6 +2,1,polypropylene,9003-07-0,*CC(*)C,dinonyl phthalate,84-76-4,CCCCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCCCC,380000,1.099998553,0.01103965,0.0098,0.1,94.48,positive,doi.org/10.1021/ma00041a024 +9,3,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,520000,1.17000117,0.205109641,0.2602,0.1,20.65,positive,doi.org/10.1016/0254-0584(86)90068-4 +10,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.303571429,0.106290412,0.1236,0.1,5.6,positive,doi.org/10.1016/0254-0584(83)90036-6 +210,25,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,186800,2.600005567,0.232177407,0.2496,0.1,25.11,negative,doi.org/10.1021/ma048472b +11,4,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,470000,1.199998979,0.15441426,0.178,0.1,5.08,positive,doi.org/10.1016/0254-0584(86)90068-4 +3,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-hexane,110-54-3,CCCCCC,470000,1.199998979,0.107055829,0.15,9.68,299.7,negative,doi.org/10.1016/0014-3057(83)90057-5 +17,11,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,195000,1.25,0.127556032,0.1705,0.1,21.27,positive,doi.org/10.1016/0254-0584(86)90068-4 +211,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.183205118,0.1979,0.1,29.35,negative,doi.org/10.1016/S0022-2860(00)00559-7 +15,4,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,99000,2.129032258,0.02390062,0.0246,0.1,32.11,negative,doi.org/10.1143/JJAP.27.L1787 +212,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.785053876,0.8007,0.1,31.5,negative,doi.org/10.1002/polb.20423 +213,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.576923077,0.6,0.1,27.54,negative,doi.org/10.1002/polb.20423 +214,29,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,6100,1.090064332,0.009099181,0.01,0.1,40.63,negative,doi.org/10.1021/ma0519617 +215,30,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,7500,1.100029334,0.009099181,0.01,0.1,37.34,negative,doi.org/10.1021/ma0519617 +216,31,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,8000,1.149920943,0.009099181,0.01,0.1,38.92,negative,doi.org/10.1021/ma0519617 +18,15,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,375000,1.2,0.081720514,0.1112,0.1,20.97,positive,doi.org/10.1016/0254-0584(86)90068-4 +12,1,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,53300,1.079996758,0.0284,,0.1,18.15,positive,doi.org/10.1295/polymj.17.1123 +9,1,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.597866671,0.6451,0.1,102.8,positive,doi.org/10.1002/polc.5070390128 +3,1,poly(ethyl methacrylate),9003-42-3,CCOC(=O)C(C)(*)C*,1-decanol,112-30-1,CCCCCCCCCCO,210000,2.1,0.339234223,0.4042,0.1,56.43,positive,doi.org/10.1016/S0032-3861(97)10141-0 +17,8,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,250000,1.136363636,0.155086021,0.1802,0.1,29.13,positive,doi.org/10.1016/0254-0584(83)90036-6 +10,3,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.549396791,0.5985,0.1,95.9,positive,doi.org/10.1016/0014-3057(73)90138-9 +5,1,polyisobutylene,9003-27-4,*CC(*)(C)C,n-pentane,109-66-0,CCCCC,1000000,1.666666667,0.015448208,0.0224,4.21,100.19,negative,doi.org/10.1021/je010171z +3,1,polypropylene,9003-07-0,*CC(*)C,dinonyl phthalate,84-76-4,CCCCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCCCC,380000,1.099998553,0.045109912,0.0402,0.1,93.88,positive,doi.org/10.1021/ma00041a024 +13,1,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,53300,1.079996758,0.0054,,0.1,14.44,positive,doi.org/10.1295/polymj.17.1123 +3,1,poly(vinyl alcohol),9002-89-5,*CC(O)*,ethylene glycol,107-21-1,C(CO)O,102400,1.695364238,0.337645191,0.3647,0.1,105.3,positive,doi.org/10.1002/polb.1991.090290510 +4,2,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,deuterium oxide,7789-20-0,[2H]O[2H],20000,2.5,0.808529799,0.7975,0.1,35.08,negative,doi.org/10.1021/ma051745y +5,2,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,deuterium oxide,7789-20-0,[2H]O[2H],20000,2.5,0.713855932,0.6994,0.1,30.33,negative,doi.org/10.1021/ma051745y +18,7,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,470000,1.205128205,0.073793177,0.0871,0.1,31.57,positive,doi.org/10.1016/0254-0584(83)90036-6 +12,7,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,470000,1.205128205,0.195136756,0.2233,0.1,4.8,positive,doi.org/10.1016/0254-0584(83)90036-6 +11,2,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.126565844,0.1505,0.1,38.23,positive,doi.org/10.1016/0014-3057(73)90089-X +3,2,poly(ethyl methacrylate),9003-42-3,CCOC(=O)C(C)(*)C*,1-butanol,71-36-3,CCCCO,220000,2,0.31894775,0.3909,0.1,17.76,positive,doi.org/10.1002/(SICI)1097-4628(19960523)60:8<1127::AID-APP5>3.0.CO;2-N +217,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.210332857,0.2266,0.1,27.32,negative,doi.org/10.1002/polb.20423 +218,32,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,4600,1.070016283,0.009099181,0.01,0.1,42.98,negative,doi.org/10.1021/ma0519617 +4,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-hexane,110-54-3,CCCCCC,470000,1.199998979,0.107055829,0.15,8.36,272.53,negative,doi.org/10.1016/0014-3057(83)90057-5 +10,2,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,2050000,1.229999754,0.060275851,0.0804,0.1,23.23,positive,doi.org/10.1016/0254-0584(86)90068-4 +13,8,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,250000,1.136363636,0.125916099,0.1459,0.1,3.18,positive,doi.org/10.1016/0254-0584(83)90036-6 +219,22,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.044744772,0.049,0.1,28.95,negative,doi.org/10.1021/ma048472b +3,16,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,methanol,67-56-1,CO,102600,2.124223602,0.410534624,0.5028,0.1,53.19,positive,doi.org/10.1016/S0032-3861(02)00409-3 +220,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.786111411,0.8017,0.1,34.13,negative,doi.org/10.1002/polb.20423 +1,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-pentane,109-66-0,CCCCC,470000,1.199998979,0.102829162,0.15,9.8,228.48,negative,doi.org/10.1016/0014-3057(83)90057-5 +221,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.232843707,0.2503,0.1,27.74,negative,doi.org/10.1016/S0022-2860(00)00559-7 +6,4,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,500000,3.3000033,0.061935941,0.07,0.1,61.35,negative,doi.org/10.1002/polb.1988.090260312 +14,2,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,133000,1.080001299,0.1086,,0.1,24.5,positive,doi.org/10.1295/polymj.17.1123 +16,4,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,99000,2.129032258,0.241346534,0.2468,0.1,35.49,negative,doi.org/10.1143/JJAP.27.L1787 +14,8,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,250000,1.136363636,0.138309045,0.1599,0.1,3.17,positive,doi.org/10.1016/0254-0584(83)90036-6 +12,3,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.123196119,0.1466,0.1,36.5,positive,doi.org/10.1016/0014-3057(73)90138-9 +4,1,polypropylene,9003-07-0,*CC(*)C,didecyl phthalate,84-77-5,CCCCCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCCCCC,380000,1.099998553,0.016731338,0.0149,0.1,81.43,positive,doi.org/10.1021/ma00041a024 +5,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-hexane,110-54-3,CCCCCC,470000,1.199998979,0.107055829,0.15,9.02,284.86,negative,doi.org/10.1016/0014-3057(83)90057-5 +19,11,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,195000,1.25,0.014164795,0.0198,0.1,21.43,positive,doi.org/10.1016/0254-0584(86)90068-4 +7,4,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,500000,3.3000033,0.088630123,0.0998,0.1,62.08,negative,doi.org/10.1002/polb.1988.090260312 +15,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.303571429,0.05477604,0.0643,0.1,5.63,positive,doi.org/10.1016/0254-0584(83)90036-6 +13,2,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.543839725,0.5931,0.1,100.25,positive,doi.org/10.1016/0014-3057(73)90089-X +3,14,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-decanol,112-30-1,CCCCCCCCCCO,250000,1.602564103,0.150337295,0.195,0.1,114.84,positive,doi.org/10.1016/S0032-3861(97)10141-0 +11,3,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,520000,1.17000117,0.007282287,0.0099,0.1,21.01,positive,doi.org/10.1016/0254-0584(86)90068-4 +222,33,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,57000,1.089991204,0.009099181,0.01,0.1,34.34,negative,doi.org/10.1021/ma0519617 +223,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.002455148,0.0027,0.1,30.7,negative,doi.org/10.1016/S0022-2860(00)00559-7 +6,2,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,deuterium oxide,7789-20-0,[2H]O[2H],20000,2.5,0.156172167,0.1472,0.1,30.95,negative,doi.org/10.1021/ma051745y +224,22,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.18575106,0.2006,0.1,26.36,negative,doi.org/10.1021/ma048472b +20,12,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,685000,1.200000701,0.051485306,0.0709,0.1,24.05,positive,doi.org/10.1016/0254-0584(86)90068-4 +4,14,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-decanol,112-30-1,CCCCCCCCCCO,250000,1.602564103,0.540169828,0.6166,0.1,97.65,positive,doi.org/10.1016/S0032-3861(97)10141-0 +14,1,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.166509884,0.1963,0.1,44.07,positive,doi.org/10.1002/polc.5070390128 +225,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.019401204,0.0213,0.1,30.21,negative,doi.org/10.1016/S0022-2860(00)00559-7 +226,34,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,25000,1.109976468,0.009099181,0.01,0.1,34.14,negative,doi.org/10.1021/ma0519617 +19,7,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,470000,1.205128205,0.098495199,0.1157,0.1,31.66,positive,doi.org/10.1016/0254-0584(83)90036-6 +20,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,730000,1.303571429,0.14384542,0.1675,0.1,32.11,positive,doi.org/10.1016/0254-0584(83)90036-6 +227,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.030181729,0.0331,0.1,29.83,negative,doi.org/10.1016/S0022-2860(00)00559-7 +2,18,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,tert-butyl alcohol,75-65-0,CC(C)(C)O,93300,2.010775862,0.023888553,0.0344,0.1,49.97,positive,doi.org/10.1021/ma00225a018 +228,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.57407621,0.5972,0.1,24.54,negative,doi.org/10.1002/polb.20423 +6,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-hexane,110-54-3,CCCCCC,470000,1.199998979,0.107055829,0.15,4.16,222.86,negative,doi.org/10.1016/0014-3057(83)90057-5 +16,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.303571429,0.043440423,0.0511,0.1,5.69,positive,doi.org/10.1016/0254-0584(83)90036-6 +229,35,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,35600,1.130015236,0.009099181,0.01,0.1,34.58,negative,doi.org/10.1021/ma0519617 +4,19,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,methanol,67-56-1,CO,380000,2.714285714,0.428958607,0.5217,0.1,91.95,positive,doi.org/10.1002/(SICI)1521-3935(20000201)201:3<308::AID-MACP308>3.0.CO;2-H +4,1,polypropylene,9003-07-0,*CC(*)C,dinonyl phthalate,84-76-4,CCCCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCCCC,380000,1.099998553,0.056371045,0.0503,0.1,93.18,positive,doi.org/10.1021/ma00041a024 +17,10,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.290001078,0.068233904,0.0799,0.1,5.69,positive,doi.org/10.1016/0254-0584(86)90068-4 +4,137,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-hexadecane,544-76-3,CCCCCCCCCCCCCCCC,19950,1.05,0.197439122,0.2512,0.1,162.54,positive,doi.org/10.1021/ma0610055 +18,4,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,470000,1.199998979,0.104800019,0.1219,0.1,5.23,positive,doi.org/10.1016/0254-0584(86)90068-4 +5,14,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-decanol,112-30-1,CCCCCCCCCCO,250000,1.602564103,0.451957017,0.5303,0.1,106.55,positive,doi.org/10.1016/S0032-3861(97)10141-0 +19,8,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,250000,1.136363636,0.078544723,0.0918,0.1,3.07,positive,doi.org/10.1016/0254-0584(83)90036-6 +6,14,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-decanol,112-30-1,CCCCCCCCCCO,250000,1.602564103,0.404259401,0.4816,0.1,108.31,positive,doi.org/10.1016/S0032-3861(97)10141-0 +8,3,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,128000,3.2,0.007991387,0.0091,0.1,63.0083,negative,doi.org/10.1016/S0032-3861(03)00139-3 +4,2,poly(vinyl alcohol),9002-89-5,*CC(O)*,ethylene glycol,107-21-1,C(CO)O,32900,1.523148148,0.161371714,0.1781,0.1,78.5,positive,doi.org/10.1002/polb.1991.090290510 +230,36,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,525000,2.019999923,0.056958958,0.0623,0.1,33.08,negative,doi.org/10.1002/polb.10469 +21,7,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,470000,1.205128205,0.177266151,0.2051,0.1,31.15,positive,doi.org/10.1016/0254-0584(83)90036-6 +231,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.007642199,0.0084,0.1,31.26,negative,doi.org/10.1002/polb.20423 +2,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-pentane,109-66-0,CCCCC,470000,1.199998979,0.102829162,0.15,7.68,209.93,negative,doi.org/10.1016/0014-3057(83)90057-5 +20,8,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,250000,1.136363636,0.099983703,0.1164,0.1,3.11,positive,doi.org/10.1016/0254-0584(83)90036-6 +7,10,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-butanol,71-36-3,CCCCO,380000,2.533333333,0.101104804,0.1377,0.1,82.77,positive,doi.org/10.1016/0032-3861(94)90678-5 +21,10,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.290001078,0.089504672,0.1044,0.1,5.63,positive,doi.org/10.1016/0254-0584(86)90068-4 +9,1,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,20000,1.699957501,0.009662175,0.011,0.1,64.49,negative,doi.org/10.1002/polb.1988.090260312 +7,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-hexane,110-54-3,CCCCCC,470000,1.199998979,0.107055829,0.15,2.23,205.43,negative,doi.org/10.1016/0014-3057(83)90057-5 +232,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.675155032,0.6957,0.1,26.05,negative,doi.org/10.1002/polb.20423 +233,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.004365541,0.0048,0.1,33.27,negative,doi.org/10.1016/S0022-2860(00)00559-7 +1,4,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,n-hexadecane,544-76-3,CCCCCCCCCCCCCCCC,22880,1.04,0.194549622,0.2513,0.1,115.82,positive,doi.org/10.1021/ma0610055 +22,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,730000,1.303571429,0.080075736,0.0944,0.1,32.77,positive,doi.org/10.1016/0254-0584(83)90036-6 +3,18,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,tert-butyl alcohol,75-65-0,CC(C)(C)O,93300,2.010775862,0.036028933,0.0516,0.1,50.24,positive,doi.org/10.1021/ma00225a018 +2,17,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,sulfolane,126-33-0,C1CCS(=O)(=O)C1,93300,2.010775862,0.214278583,0.1993,0.1,41.81,positive,doi.org/10.1021/ma00205a014 +234,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.612331529,0.6347,0.1,29.39,negative,doi.org/10.1016/S0022-2860(00)00559-7 +5,19,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,methanol,67-56-1,CO,380000,2.714285714,0.229317056,0.3017,0.1,93.56,positive,doi.org/10.1002/(SICI)1521-3935(20000201)201:3<308::AID-MACP308>3.0.CO;2-H +21,11,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,195000,1.25,0.021453184,0.0299,0.1,22.26,positive,doi.org/10.1016/0254-0584(86)90068-4 +22,15,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,375000,1.2,0.104627021,0.1411,0.1,20.44,positive,doi.org/10.1016/0254-0584(86)90068-4 +15,1,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,53300,1.079996758,0.0875,,0.1,18.8,positive,doi.org/10.1295/polymj.17.1123 +8,13,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-butanol,71-36-3,CCCCO,120000,2.4,0.078578615,0.108,0.1,76.57,positive,doi.org/10.1002/(SICI)1097-4628(19960523)60:8<1127::AID-APP5>3.0.CO;2-N +235,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.524100189,0.5478,0.1,27.88,negative,doi.org/10.1016/S0022-2860(00)00559-7 +236,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.004365541,0.0048,0.1,32.97,negative,doi.org/10.1016/S0022-2860(00)00559-7 +237,36,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,525000,2.019999923,0.065885798,0.072,0.1,33.12,negative,doi.org/10.1002/polb.10469 +10,4,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,500000,3.3000033,0.004476488,0.0051,0.1,62.14,negative,doi.org/10.1002/polb.1988.090260312 +6,1,poly(vinyl acetate),9003-20-7,*CC(*)OC(C)=O,cyclopentane,287-92-3,C1CCCC1,124800,2.368121442,0.03842517,0.06,31.62,243.21,positive,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +23,8,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,250000,1.136363636,0.032016674,0.0381,0.1,28.07,positive,doi.org/10.1016/0254-0584(83)90036-6 +238,22,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.478485764,0.5023,0.1,23.92,negative,doi.org/10.1021/ma048472b +3,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-pentane,109-66-0,CCCCC,470000,1.199998979,0.102829162,0.15,8.54,216.12,negative,doi.org/10.1016/0014-3057(83)90057-5 +22,7,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,470000,1.205128205,0.130866594,0.1515,0.1,5.17,positive,doi.org/10.1016/0254-0584(83)90036-6 +12,2,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,2050000,1.229999754,0.044809362,0.0601,0.1,23.19,positive,doi.org/10.1016/0254-0584(86)90068-4 +4,1,polypropylene,9003-07-0,*CC(*)C,diheptyl phthalate,3648-21-3,CCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCC,380000,1.099998553,0.017746497,0.0153,0.1,138.57,positive,doi.org/10.1021/ma00041a024 +239,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.005821569,0.0064,0.1,32.75,negative,doi.org/10.1016/S0022-2860(00)00559-7 +2,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,cyclopentane,287-92-3,C1CCCC1,470000,1.199998979,0.119359146,0.15,9.9,284.91,negative,doi.org/10.1016/0014-3057(83)90057-5 +7,2,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,deuterium oxide,7789-20-0,[2H]O[2H],20000,2.5,0.611787644,0.5951,0.1,29.64,negative,doi.org/10.1021/ma051745y +23,9,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,250000,1.129999684,0.16783251,0.193,0.1,3.02,positive,doi.org/10.1016/0254-0584(86)90068-4 +13,2,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,2050000,1.229999754,0.007429801,0.0101,0.1,22.42,positive,doi.org/10.1016/0254-0584(86)90068-4 +14,2,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,2050000,1.229999754,0.075991672,0.1008,0.1,23.17,positive,doi.org/10.1016/0254-0584(86)90068-4 +9,13,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-butanol,71-36-3,CCCCO,120000,2.4,0.498109625,0.5849,0.1,66.45,positive,doi.org/10.1002/(SICI)1097-4628(19960523)60:8<1127::AID-APP5>3.0.CO;2-N +17,4,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,99000,2.129032258,0.006117627,0.0063,0.1,32.7,negative,doi.org/10.1143/JJAP.27.L1787 +24,4,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,470000,1.199998979,0.195951883,0.2242,0.1,4.83,positive,doi.org/10.1016/0254-0584(86)90068-4 +25,9,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,250000,1.129999684,0.149065112,0.172,0.1,3.12,positive,doi.org/10.1016/0254-0584(86)90068-4 +240,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.010465487,0.0115,0.1,30.54,negative,doi.org/10.1002/polb.20423 +6,1,polyisobutylene,9003-27-4,*CC(*)(C)C,n-pentane,109-66-0,CCCCC,1000000,1.666666667,0.015448208,0.0224,14.03,150.27,negative,doi.org/10.1021/je010171z +241,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.628019324,0.65,0.1,29.13,negative,doi.org/10.1016/S0022-2860(00)00559-7 +2,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-heptane,142-82-5,CCCCCCC,470000,1.199998979,0.111530172,0.15,6.76,300.94,negative,doi.org/10.1016/0014-3057(83)90057-5 +26,7,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,470000,1.205128205,0.068406874,0.0801,0.1,5.17,positive,doi.org/10.1016/0254-0584(83)90036-6 +23,11,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,195000,1.25,0.058622384,0.0805,0.1,22.76,positive,doi.org/10.1016/0254-0584(86)90068-4 +2,4,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,n-hexadecane,544-76-3,CCCCCCCCCCCCCCCC,22880,1.04,0.237259306,0.3018,0.1,111.82,positive,doi.org/10.1021/ma0610055 +16,2,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,133000,1.080001299,0.1415,,0.1,23.56,positive,doi.org/10.1295/polymj.17.1123 +242,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.274708338,0.2941,0.1,27.23,negative,doi.org/10.1002/polb.20423 +27,10,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.290001078,0.013696212,0.0162,0.1,4.88,positive,doi.org/10.1016/0254-0584(86)90068-4 +28,8,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,250000,1.136363636,0.024397114,0.0288,0.1,1.75,positive,doi.org/10.1016/0254-0584(83)90036-6 +4,1,"poly(1,3-dioxolane)",25067-64-5,*OCOCC*,water,7732-18-5,O,50000,1.500015,0.185431762,0.227,0.1,72.46,negative,doi.org/10.1021/ma00047a022 +5,1,poly(vinyl alcohol),9002-89-5,*CC(O)*,ethylene glycol,107-21-1,C(CO)O,102400,1.695364238,0.071320638,0.0796,0.1,89.12,positive,doi.org/10.1002/polb.1991.090290510 +29,8,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,250000,1.136363636,0.032834791,0.0387,0.1,2.36,positive,doi.org/10.1016/0254-0584(83)90036-6 +5,1,"poly(1,3-dioxolane)",25067-64-5,*OCOCC*,water,7732-18-5,O,50000,1.500015,0.546770033,0.6088,0.1,54.5,negative,doi.org/10.1021/ma00047a022 +7,1,polyisobutylene,9003-27-4,*CC(*)(C)C,n-pentane,109-66-0,CCCCC,1000000,1.666666667,0.015448208,0.0224,8.08,120.36,negative,doi.org/10.1021/je010171z +2,1,polypropylene,9003-07-0,*CC(*)C,dioctyl phthalate,117-84-0,CCCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCCC,380000,1.099998553,0.085137965,0.0755,0.1,115.37,positive,doi.org/10.1021/ma00041a024 +24,12,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,685000,1.200000701,0.006346916,0.0089,0.1,21.9,positive,doi.org/10.1016/0254-0584(86)90068-4 +8,1,polyisobutylene,9003-27-4,*CC(*)(C)C,n-pentane,109-66-0,CCCCC,1000000,1.666666667,0.015448208,0.0224,18.42,180.21,negative,doi.org/10.1021/je010171z +6,16,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,methanol,67-56-1,CO,102600,2.124223602,0.510523915,0.6023,0.1,51.09,positive,doi.org/10.1016/S0032-3861(02)00409-3 +2,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,"2,2,4-trimethylpentane",540-84-1,CC(C)CC(C)(C)C,470000,1.199998979,0.1118173,0.15,6.18,305.37,negative,doi.org/10.1016/0014-3057(83)90057-5 +243,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.040893822,0.0448,0.1,29.02,negative,doi.org/10.1002/polb.20423 +5,1,polypropylene,9003-07-0,*CC(*)C,diheptyl phthalate,3648-21-3,CCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCC,380000,1.099998553,0.023757924,0.0205,0.1,138.97,positive,doi.org/10.1021/ma00041a024 +6,1,polypropylene,9003-07-0,*CC(*)C,diheptyl phthalate,3648-21-3,CCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCC,380000,1.099998553,0.035405029,0.0306,0.1,138.67,positive,doi.org/10.1021/ma00041a024 +30,8,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,250000,1.136363636,0.067974471,0.0796,0.1,2.94,positive,doi.org/10.1016/0254-0584(83)90036-6 +18,3,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,60500,2.951219512,0.546885947,0.5542,0.1,33.13,negative,doi.org/10.1016/S0032-3861(99)00513-3 +244,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.530951424,0.5546,0.1,27.66,negative,doi.org/10.1016/S0022-2860(00)00559-7 +24,8,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,250000,1.136363636,0.039299636,0.0467,0.1,28.25,positive,doi.org/10.1016/0254-0584(83)90036-6 +245,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.387157696,0.41,0.1,27.08,negative,doi.org/10.1016/S0022-2860(00)00559-7 +7,1,poly(vinyl acetate),9003-20-7,*CC(*)OC(C)=O,cyclopentane,287-92-3,C1CCCC1,124800,2.368121442,0.03842517,0.06,30.21,246.09,positive,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +8,2,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,deuterium oxide,7789-20-0,[2H]O[2H],20000,2.5,0.514331883,0.4969,0.1,29.64,negative,doi.org/10.1021/ma051745y +246,36,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,525000,2.019999923,0.100268116,0.1092,0.1,32.88,negative,doi.org/10.1002/polb.10469 +247,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.006094621,0.0067,0.1,31.11,negative,doi.org/10.1002/polb.20423 +248,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.039519198,0.0433,0.1,29.55,negative,doi.org/10.1016/S0022-2860(00)00559-7 +11,2,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,50000,2.400038401,0.008782716,0.01,0.1,63.38,negative,doi.org/10.1002/polb.1988.090260312 +7,14,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-decanol,112-30-1,CCCCCCCCCCO,250000,1.602564103,0.075375645,0.1004,0.1,115.8,positive,doi.org/10.1016/S0032-3861(97)10141-0 +249,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.067544068,0.0738,0.1,29.27,negative,doi.org/10.1016/S0022-2860(00)00559-7 +250,25,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,186800,2.600005567,0.476988723,0.5008,0.1,23.94,negative,doi.org/10.1021/ma048472b +251,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.47629025,0.5001,0.1,27.17,negative,doi.org/10.1016/S0022-2860(00)00559-7 +4,1,poly(ethyl methacrylate),9003-42-3,CCOC(=O)C(C)(*)C*,1-decanol,112-30-1,CCCCCCCCCCO,210000,2.1,0.160010912,0.2011,0.1,59.24,positive,doi.org/10.1016/S0032-3861(97)10141-0 +252,37,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,14300,1.129988147,0.009099181,0.01,0.1,36.37,negative,doi.org/10.1021/ma0519617 +3,1,polypropylene,9003-07-0,*CC(*)C,dioctyl phthalate,117-84-0,CCCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCCC,380000,1.099998553,0.01183399,0.0104,0.1,119.89,positive,doi.org/10.1021/ma00041a024 +7,1,polypropylene,9003-07-0,*CC(*)C,diheptyl phthalate,3648-21-3,CCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCC,380000,1.099998553,0.011261287,0.0097,0.1,137.61,positive,doi.org/10.1021/ma00041a024 +6,1,"poly(1,3-dioxolane)",25067-64-5,*OCOCC*,water,7732-18-5,O,50000,1.500015,0.014010181,0.018,0.1,72.12,negative,doi.org/10.1021/ma00047a022 +15,3,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,520000,1.17000117,0.044885135,0.0602,0.1,22.19,positive,doi.org/10.1016/0254-0584(86)90068-4 +253,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.281623001,0.3013,0.1,27.87,negative,doi.org/10.1016/S0022-2860(00)00559-7 +25,8,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,250000,1.136363636,0.058623667,0.0694,0.1,28.75,positive,doi.org/10.1016/0254-0584(83)90036-6 +254,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.041077134,0.045,0.1,29.61,negative,doi.org/10.1002/polb.20423 +8,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-hexane,110-54-3,CCCCCC,470000,1.199998979,0.107055829,0.15,9.34,293.26,negative,doi.org/10.1016/0014-3057(83)90057-5 +16,3,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,520000,1.17000117,0.23894776,0.2997,0.1,19.88,positive,doi.org/10.1016/0254-0584(86)90068-4 +17,2,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,133000,1.080001299,0.2452,,0.1,18.8,positive,doi.org/10.1295/polymj.17.1123 +31,9,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,250000,1.129999684,0.034457157,0.0406,0.1,2.36,positive,doi.org/10.1016/0254-0584(86)90068-4 +4,1,polypropylene,9003-07-0,*CC(*)C,dioctyl phthalate,117-84-0,CCCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCCC,380000,1.099998553,0.056694365,0.0501,0.1,119.19,positive,doi.org/10.1021/ma00041a024 +255,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.375498731,0.3981,0.1,27.4,negative,doi.org/10.1016/S0022-2860(00)00559-7 +256,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.577431607,0.6005,0.1,28.1,negative,doi.org/10.1016/S0022-2860(00)00559-7 +257,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.330869577,0.3523,0.1,27.45,negative,doi.org/10.1016/S0022-2860(00)00559-7 +258,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.089243949,0.0973,0.1,29.53,negative,doi.org/10.1002/polb.20423 +26,8,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,250000,1.136363636,0.109540621,0.1284,0.1,29.24,positive,doi.org/10.1016/0254-0584(83)90036-6 +259,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.424070126,0.4475,0.1,27.75,negative,doi.org/10.1016/S0022-2860(00)00559-7 +3,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,cyclopentane,287-92-3,C1CCCC1,470000,1.199998979,0.119359146,0.15,5.63,234.39,negative,doi.org/10.1016/0014-3057(83)90057-5 +3,17,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,sulfolane,126-33-0,C1CCS(=O)(=O)C1,93300,2.010775862,0.104010381,0.0958,0.1,39.97,positive,doi.org/10.1021/ma00205a014 +8,1,polypropylene,9003-07-0,*CC(*)C,diheptyl phthalate,3648-21-3,CCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCC,380000,1.099998553,0.016242053,0.014,0.1,138.54,positive,doi.org/10.1021/ma00041a024 +19,3,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,60500,2.951219512,0.293631967,0.2998,0.1,36.15,negative,doi.org/10.1016/S0032-3861(99)00513-3 +260,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.025793633,0.0283,0.1,30.1,negative,doi.org/10.1002/polb.20423 +4,17,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,sulfolane,126-33-0,C1CCS(=O)(=O)C1,93300,2.010775862,0.051808089,0.0475,0.1,31.29,positive,doi.org/10.1021/ma00205a014 +20,3,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,60500,2.951219512,0.259775839,0.2655,0.1,36.19,negative,doi.org/10.1016/S0032-3861(99)00513-3 +21,3,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,60500,2.951219512,0.047835539,0.0492,0.1,35.02,negative,doi.org/10.1016/S0032-3861(99)00513-3 +17,2,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,2050000,1.229999754,0.081269351,0.1076,0.1,23.11,positive,doi.org/10.1016/0254-0584(86)90068-4 +8,14,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-decanol,112-30-1,CCCCCCCCCCO,250000,1.602564103,0.63912651,0.708,0.1,94.4,positive,doi.org/10.1016/S0032-3861(97)10141-0 +32,10,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.290001078,0.106816626,0.1242,0.1,5.56,positive,doi.org/10.1016/0254-0584(86)90068-4 +261,36,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,525000,2.019999923,0.040252284,0.0441,0.1,33.31,negative,doi.org/10.1002/polb.10469 +33,9,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,250000,1.129999684,0.068666348,0.0804,0.1,2.94,positive,doi.org/10.1016/0254-0584(86)90068-4 +22,4,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,99000,2.129032258,0.16194806,0.166,0.1,34.07,negative,doi.org/10.1143/JJAP.27.L1787 +9,2,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,deuterium oxide,7789-20-0,[2H]O[2H],20000,2.5,0.097994222,0.092,0.1,31.64,negative,doi.org/10.1021/ma051745y +262,38,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,9700,1.059993443,0.009099181,0.01,0.1,37.9,negative,doi.org/10.1021/ma0519617 +34,8,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,250000,1.136363636,0.04893057,0.0575,0.1,2.52,positive,doi.org/10.1016/0254-0584(83)90036-6 +263,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.427232139,0.4507,0.1,26.73,negative,doi.org/10.1016/S0022-2860(00)00559-7 +264,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.383333805,0.4061,0.1,23.87,negative,doi.org/10.1002/polb.20423 +15,3,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.452398321,0.5025,0.1,88.67,positive,doi.org/10.1016/0014-3057(73)90138-9 +8,1,poly(vinyl acetate),9003-20-7,*CC(*)OC(C)=O,cyclopentane,287-92-3,C1CCCC1,124800,2.368121442,0.03842517,0.06,24.34,268.02,positive,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +3,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-heptane,142-82-5,CCCCCCC,470000,1.199998979,0.111530172,0.15,3.81,258.59,negative,doi.org/10.1016/0014-3057(83)90057-5 +18,2,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,133000,1.080001299,0.0338,,0.1,24.88,positive,doi.org/10.1295/polymj.17.1123 +12,3,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,128000,3.2,0.000877301,0.001,0.1,66.058,negative,doi.org/10.1016/S0032-3861(03)00139-3 +4,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-pentane,109-66-0,CCCCC,470000,1.199998979,0.102829162,0.15,9.14,222.3,negative,doi.org/10.1016/0014-3057(83)90057-5 +265,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.000909174,0.001,0.1,30.93,negative,doi.org/10.1016/S0022-2860(00)00559-7 +10,2,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,deuterium oxide,7789-20-0,[2H]O[2H],20000,2.5,0.185089331,0.1748,0.1,30.87,negative,doi.org/10.1021/ma051745y +13,2,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,50000,2.400038401,0.177459896,0.1974,0.1,67.52,negative,doi.org/10.1002/polb.1988.090260312 +266,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.045937332,0.0503,0.1,30.3,negative,doi.org/10.1002/polb.20423 +6,2,poly(vinyl alcohol),9002-89-5,*CC(O)*,ethylene glycol,107-21-1,C(CO)O,32900,1.523148148,0.220413751,0.2415,0.1,82.29,positive,doi.org/10.1002/polb.1991.090290510 +10,10,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-butanol,71-36-3,CCCCO,380000,2.533333333,0.039816249,0.0556,0.1,83.59,positive,doi.org/10.1016/0032-3861(94)90678-5 +7,2,poly(vinyl alcohol),9002-89-5,*CC(O)*,ethylene glycol,107-21-1,C(CO)O,32900,1.523148148,0.030307411,0.034,0.1,34.18,positive,doi.org/10.1002/polb.1991.090290510 +19,1,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,53300,1.079996758,0.0159,,0.1,17.11,positive,doi.org/10.1295/polymj.17.1123 +9,1,polypropylene,9003-07-0,*CC(*)C,diheptyl phthalate,3648-21-3,CCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCC,380000,1.099998553,0.172587128,0.1521,0.1,123.25,positive,doi.org/10.1021/ma00041a024 +25,12,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,685000,1.200000701,0.02268416,0.0316,0.1,24.44,positive,doi.org/10.1016/0254-0584(86)90068-4 +7,19,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,methanol,67-56-1,CO,380000,2.714285714,0.162652627,0.22,0.1,93.96,positive,doi.org/10.1002/(SICI)1521-3935(20000201)201:3<308::AID-MACP308>3.0.CO;2-H +9,1,polyisobutylene,9003-27-4,*CC(*)(C)C,n-pentane,109-66-0,CCCCC,1000000,1.666666667,0.015448208,0.0224,0.63,80.15,negative,doi.org/10.1021/je010171z +267,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.009008107,0.0099,0.1,33.05,negative,doi.org/10.1016/S0022-2860(00)00559-7 +1,1,polypropylene,9003-07-0,*CC(*)C,bis(2-ethylhexyl) phthalate,117-81-7,CCCCC(CC)COC(=O)c1ccccc1C(=O)OCC(CC)CCCC,380000,1.099998553,0.011379471,0.01,0.1,111.76,positive,doi.org/10.1021/ma00041a024 +4,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-heptane,142-82-5,CCCCCCC,470000,1.199998979,0.111530172,0.15,5.31,281.3,negative,doi.org/10.1016/0014-3057(83)90057-5 +4,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,toluene,108-88-3,CC1=CC=CC=C1,470000,1.199998979,0.136242208,0.15,5.45,290.25,negative,doi.org/10.1016/0014-3057(83)90057-5 +20,2,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,133000,1.080001299,0.0049,,0.1,20.05,positive,doi.org/10.1295/polymj.17.1123 +21,1,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,53300,1.079996758,0.1441,,0.1,18.12,positive,doi.org/10.1295/polymj.17.1123 +268,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.136940856,0.1486,0.1,29.55,negative,doi.org/10.1016/S0022-2860(00)00559-7 +35,7,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,470000,1.205128205,0.153432808,0.1769,0.1,5.06,positive,doi.org/10.1016/0254-0584(83)90036-6 +22,2,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,133000,1.080001299,0.1632,,0.1,22.61,positive,doi.org/10.1295/polymj.17.1123 +27,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,730000,1.303571429,0.098929166,0.1162,0.1,32.64,positive,doi.org/10.1016/0254-0584(83)90036-6 +2,1,polypropylene,9003-07-0,*CC(*)C,bis(2-ethylhexyl) phthalate,117-81-7,CCCCC(CC)COC(=O)c1ccccc1C(=O)OCC(CC)CCCC,380000,1.099998553,0.028841965,0.0254,0.1,113.06,positive,doi.org/10.1021/ma00041a024 +269,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.182828049,0.1975,0.1,26.28,negative,doi.org/10.1002/polb.20423 +4,18,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,tert-butyl alcohol,75-65-0,CC(C)(C)O,93300,2.010775862,0.107364369,0.149,0.1,44.87,positive,doi.org/10.1021/ma00225a018 +11,2,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,deuterium oxide,7789-20-0,[2H]O[2H],20000,2.5,0.239470324,0.227,0.1,31.21,negative,doi.org/10.1021/ma051745y +270,27,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,18000,4,0.378533419,0.4012,0.1,24.32,negative,doi.org/10.1021/ma048472b +271,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.091095067,0.0993,0.1,28.98,negative,doi.org/10.1016/S0022-2860(00)00559-7 +272,25,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,186800,2.600005567,0.089891763,0.098,0.1,27.84,negative,doi.org/10.1021/ma048472b +36,8,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,250000,1.136363636,0.163531598,0.1882,0.1,3.07,positive,doi.org/10.1016/0254-0584(83)90036-6 +23,3,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,60500,2.951219512,0.448079281,0.4554,0.1,34.02,negative,doi.org/10.1016/S0032-3861(99)00513-3 +273,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.041352114,0.0453,0.1,31.7,negative,doi.org/10.1016/S0022-2860(00)00559-7 +37,7,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,470000,1.205128205,0.050047115,0.0588,0.1,5.03,positive,doi.org/10.1016/0254-0584(83)90036-6 +16,3,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.438957883,0.4889,0.1,84.08,positive,doi.org/10.1016/0014-3057(73)90138-9 +12,2,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,deuterium oxide,7789-20-0,[2H]O[2H],20000,2.5,0.258543051,0.2454,0.1,30.62,negative,doi.org/10.1021/ma051745y +5,1,polypropylene,9003-07-0,*CC(*)C,didecyl phthalate,84-77-5,CCCCCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCCCCC,380000,1.099998553,0.045110257,0.0403,0.1,81.33,positive,doi.org/10.1021/ma00041a024 +17,1,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.403147569,0.4523,0.1,82.2,positive,doi.org/10.1002/polc.5070390128 +5,1,polypropylene,9003-07-0,*CC(*)C,dioctyl phthalate,117-84-0,CCCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCCC,380000,1.099998553,0.034721515,0.0306,0.1,120.29,positive,doi.org/10.1021/ma00041a024 +38,10,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.290001078,0.120886326,0.1402,0.1,5.58,positive,doi.org/10.1016/0254-0584(86)90068-4 +274,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.013199217,0.0145,0.1,30.48,negative,doi.org/10.1016/S0022-2860(00)00559-7 +24,3,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,60500,2.951219512,0.393324872,0.4004,0.1,34.78,negative,doi.org/10.1016/S0032-3861(99)00513-3 +26,12,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,685000,1.200000701,0.028056764,0.039,0.1,24.58,positive,doi.org/10.1016/0254-0584(86)90068-4 +25,3,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,60500,2.951219512,0.193839138,0.1985,0.1,36,negative,doi.org/10.1016/S0032-3861(99)00513-3 +11,10,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-butanol,71-36-3,CCCCO,380000,2.533333333,0.152829623,0.2039,0.1,82.09,positive,doi.org/10.1016/0032-3861(94)90678-5 +14,3,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,128000,3.2,0.149284206,0.1667,0.1,67.0745,negative,doi.org/10.1016/S0032-3861(03)00139-3 +39,4,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,470000,1.199998979,0.050648521,0.0595,0.1,5.04,positive,doi.org/10.1016/0254-0584(86)90068-4 +4,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,cyclopentane,287-92-3,C1CCCC1,470000,1.199998979,0.119359146,0.15,6.4,242.26,negative,doi.org/10.1016/0014-3057(83)90057-5 +9,1,poly(vinyl acetate),9003-20-7,*CC(*)OC(C)=O,cyclopentane,287-92-3,C1CCCC1,124800,2.368121442,0.03842517,0.06,24.62,263.08,positive,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +27,15,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,375000,1.2,0.021815109,0.0304,0.1,20.66,positive,doi.org/10.1016/0254-0584(86)90068-4 +275,26,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,14000,1.4,0.285083823,0.3049,0.1,32.81,negative,doi.org/10.1002/(SICI)1099-0518(19970715)35:9<1763::AID-POLA17>3.0.CO;2-3 +40,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.303571429,0.132194131,0.153,0.1,5.4,positive,doi.org/10.1016/0254-0584(83)90036-6 +5,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,cyclopentane,287-92-3,C1CCCC1,470000,1.199998979,0.119359146,0.15,7.13,249.28,negative,doi.org/10.1016/0014-3057(83)90057-5 +276,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.675465839,0.696,0.1,29.73,negative,doi.org/10.1016/S0022-2860(00)00559-7 +41,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.303571429,0.150847012,0.174,0.1,5.2,positive,doi.org/10.1016/0254-0584(83)90036-6 +15,3,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,128000,3.2,0.020409025,0.0232,0.1,63.0761,negative,doi.org/10.1016/S0032-3861(03)00139-3 +42,9,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,250000,1.129999684,0.051336005,0.0603,0.1,2.54,positive,doi.org/10.1016/0254-0584(86)90068-4 +8,16,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,methanol,67-56-1,CO,102600,2.124223602,0.073726637,0.1036,0.1,63.24,positive,doi.org/10.1016/S0032-3861(02)00409-3 +277,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.009008107,0.0099,0.1,30.76,negative,doi.org/10.1002/polb.20423 +3,4,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,n-hexadecane,544-76-3,CCCCCCCCCCCCCCCC,22880,1.04,0.419257198,0.5008,0.1,89.77,positive,doi.org/10.1021/ma0610055 +23,1,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,53300,1.079996758,0.0095,,0.1,16.21,positive,doi.org/10.1295/polymj.17.1123 +278,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.471204188,0.495,0.1,27.43,negative,doi.org/10.1016/S0022-2860(00)00559-7 +279,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.141613807,0.1536,0.1,28.81,negative,doi.org/10.1016/S0022-2860(00)00559-7 +280,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.281623001,0.3013,0.1,27.53,negative,doi.org/10.1016/S0022-2860(00)00559-7 +43,9,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,250000,1.129999684,0.100508708,0.117,0.1,3.12,positive,doi.org/10.1016/0254-0584(86)90068-4 +7,1,poly(vinyl acetate),9003-20-7,*CC(*)OC(C)=O,cyclopentene,142-29-0,C1CC=CC1,124800,2.368121442,0.039861292,0.06,16.72,178.57,positive,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +18,1,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.254526813,0.2945,0.1,60.24,positive,doi.org/10.1002/polc.5070390128 +5,137,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-hexadecane,544-76-3,CCCCCCCCCCCCCCCC,19950,1.05,0.424444376,0.5014,0.1,139.84,positive,doi.org/10.1021/ma0610055 +28,7,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,470000,1.205128205,0.043203728,0.0513,0.1,31.34,positive,doi.org/10.1016/0254-0584(83)90036-6 +24,1,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,53300,1.079996758,0.0996,,0.1,18.94,positive,doi.org/10.1295/polymj.17.1123 +12,10,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-butanol,71-36-3,CCCCO,380000,2.533333333,0.013885682,0.0196,0.1,83.06,positive,doi.org/10.1016/0032-3861(94)90678-5 +5,17,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,sulfolane,126-33-0,C1CCS(=O)(=O)C1,93300,2.010775862,0.189218312,0.1756,0.1,42.99,positive,doi.org/10.1021/ma00205a014 +19,1,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.080765098,0.097,0.1,27.44,positive,doi.org/10.1002/polc.5070390128 +18,3,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,520000,1.17000117,0.138868082,0.1802,0.1,21.76,positive,doi.org/10.1016/0254-0584(86)90068-4 +44,10,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.290001078,0.054689986,0.0642,0.1,5.62,positive,doi.org/10.1016/0254-0584(86)90068-4 +25,2,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,133000,1.080001299,0.0094,,0.1,22.03,positive,doi.org/10.1295/polymj.17.1123 +19,2,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,2050000,1.229999754,0.106213802,0.1394,0.1,22.79,positive,doi.org/10.1016/0254-0584(86)90068-4 +20,1,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.549190755,0.5983,0.1,95.87,positive,doi.org/10.1002/polc.5070390128 +281,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.677952939,0.6984,0.1,28.79,negative,doi.org/10.1002/polb.20423 +6,17,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,sulfolane,126-33-0,C1CCS(=O)(=O)C1,93300,2.010775862,0.129986245,0.12,0.1,45.31,positive,doi.org/10.1021/ma00205a014 +282,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.089521573,0.0976,0.1,29.47,negative,doi.org/10.1016/S0022-2860(00)00559-7 +13,10,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-butanol,71-36-3,CCCCO,380000,2.533333333,0.113257303,0.1535,0.1,83.04,positive,doi.org/10.1016/0032-3861(94)90678-5 +5,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,toluene,108-88-3,CC1=CC=CC=C1,470000,1.199998979,0.136242208,0.15,4.27,281.24,negative,doi.org/10.1016/0014-3057(83)90057-5 +45,4,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,470000,1.199998979,0.129981924,0.1505,0.1,5.2,positive,doi.org/10.1016/0254-0584(86)90068-4 +28,12,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,685000,1.200000701,0.068276855,0.0934,0.1,23.59,positive,doi.org/10.1016/0254-0584(86)90068-4 +283,27,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,18000,4,0.282007422,0.3017,0.1,24.99,negative,doi.org/10.1021/ma048472b +284,39,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,21000,1.099994762,0.009099181,0.01,0.1,35.26,negative,doi.org/10.1021/ma0519617 +21,3,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.2589144,0.2993,0.1,61.14,positive,doi.org/10.1016/0014-3057(73)90138-9 +26,2,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,133000,1.080001299,0.0662,,0.1,25.1,positive,doi.org/10.1295/polymj.17.1123 +8,2,poly(vinyl alcohol),9002-89-5,*CC(O)*,ethylene glycol,107-21-1,C(CO)O,32900,1.523148148,0.065719467,0.0734,0.1,54.96,positive,doi.org/10.1002/polb.1991.090290510 +20,3,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,520000,1.17000117,0.07537206,0.1,0.1,22.15,positive,doi.org/10.1016/0254-0584(86)90068-4 +9,1,poly(vinyl alcohol),9002-89-5,*CC(O)*,ethylene glycol,107-21-1,C(CO)O,102400,1.695364238,0.007466224,0.0084,0.1,69.56,positive,doi.org/10.1002/polb.1991.090290510 +285,25,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,186800,2.600005567,0.677849287,0.6983,0.1,34.57,negative,doi.org/10.1021/ma048472b +46,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.303571429,0.087326581,0.1019,0.1,5.63,positive,doi.org/10.1016/0254-0584(83)90036-6 +10,1,polypropylene,9003-07-0,*CC(*)C,diheptyl phthalate,3648-21-3,CCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCC,380000,1.099998553,0.058356514,0.0506,0.1,136.44,positive,doi.org/10.1021/ma00041a024 +16,1,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,20000,1.699957501,0.026413101,0.03,0.1,63.59,negative,doi.org/10.1002/polb.1988.090260312 +10,1,poly(vinyl acetate),9003-20-7,*CC(*)OC(C)=O,cyclopentane,287-92-3,C1CCCC1,124800,2.368121442,0.03842517,0.06,27.86,251.66,positive,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +47,7,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,470000,1.205128205,0.034884257,0.0411,0.1,4.73,positive,doi.org/10.1016/0254-0584(83)90036-6 +29,12,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,685000,1.200000701,0.059666593,0.0819,0.1,23.9,positive,doi.org/10.1016/0254-0584(86)90068-4 +9,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-hexane,110-54-3,CCCCCC,470000,1.199998979,0.107055829,0.15,7.47,260.47,negative,doi.org/10.1016/0014-3057(83)90057-5 +21,3,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,520000,1.17000117,0.059969442,0.08,0.1,22.29,positive,doi.org/10.1016/0254-0584(86)90068-4 +48,9,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,250000,1.129999684,0.078718348,0.092,0.1,3.09,positive,doi.org/10.1016/0254-0584(86)90068-4 +3,1,polypropylene,9003-07-0,*CC(*)C,bis(2-ethylhexyl) phthalate,117-81-7,CCCCC(CC)COC(=O)c1ccccc1C(=O)OCC(CC)CCCC,380000,1.099998553,0.045215706,0.0399,0.1,111.96,positive,doi.org/10.1021/ma00041a024 +286,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.3275718,0.3489,0.1,27.84,negative,doi.org/10.1016/S0022-2860(00)00559-7 +49,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.303571429,0.169895728,0.1953,0.1,4.93,positive,doi.org/10.1016/0254-0584(83)90036-6 +14,10,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-butanol,71-36-3,CCCCO,380000,2.533333333,0.306274399,0.3853,0.1,80.33,positive,doi.org/10.1016/0032-3861(94)90678-5 +15,10,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-butanol,71-36-3,CCCCO,380000,2.533333333,0.587936511,0.6695,0.1,53.07,positive,doi.org/10.1016/0032-3861(94)90678-5 +7,1,"poly(1,3-dioxolane)",25067-64-5,*OCOCC*,water,7732-18-5,O,50000,1.500015,0.07314733,0.0924,0.1,69.7,negative,doi.org/10.1021/ma00047a022 +287,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.466023482,0.4898,0.1,26.59,negative,doi.org/10.1016/S0022-2860(00)00559-7 +4,4,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,n-hexadecane,544-76-3,CCCCCCCCCCCCCCCC,22880,1.04,0.073657646,0.0995,0.1,100.88,positive,doi.org/10.1021/ma0610055 +7,17,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,sulfolane,126-33-0,C1CCS(=O)(=O)C1,93300,2.010775862,0.162662035,0.1506,0.1,45.76,positive,doi.org/10.1021/ma00205a014 +288,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.089799213,0.0979,0.1,30.89,negative,doi.org/10.1016/S0022-2860(00)00559-7 +5,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-pentane,109-66-0,CCCCC,470000,1.199998979,0.102829162,0.15,7.16,205.15,negative,doi.org/10.1016/0014-3057(83)90057-5 +8,1,"poly(1,3-dioxolane)",25067-64-5,*OCOCC*,water,7732-18-5,O,50000,1.500015,0.043884819,0.0559,0.1,69.7,negative,doi.org/10.1021/ma00047a022 +17,2,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,50000,2.400038401,0.088270502,0.0994,0.1,64.04,negative,doi.org/10.1002/polb.1988.090260312 +5,18,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,tert-butyl alcohol,75-65-0,CC(C)(C)O,93300,2.010775862,0.051896332,0.0738,0.1,50.51,positive,doi.org/10.1021/ma00225a018 +8,1,poly(vinyl acetate),9003-20-7,*CC(*)OC(C)=O,cyclopentene,142-29-0,C1CC=CC1,124800,2.368121442,0.039861292,0.06,9.68,196.39,positive,doi.org/10.1002/1521-4125(200007)23:7<592::AID-CEAT592>3.0.CO;2-H +22,1,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.498002917,0.5481,0.1,92.15,positive,doi.org/10.1002/polc.5070390128 +289,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.090909925,0.0991,0.1,29.7,negative,doi.org/10.1002/polb.20423 +50,10,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.290001078,0.027377124,0.0323,0.1,5.41,positive,doi.org/10.1016/0254-0584(86)90068-4 +30,11,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,195000,1.25,0.15724215,0.2078,0.1,20.28,positive,doi.org/10.1016/0254-0584(86)90068-4 +6,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,cyclopentane,287-92-3,C1CCCC1,470000,1.199998979,0.119359146,0.15,4.83,227.64,negative,doi.org/10.1016/0014-3057(83)90057-5 +9,19,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,methanol,67-56-1,CO,380000,2.714285714,0.361984734,0.4517,0.1,93.15,positive,doi.org/10.1002/(SICI)1521-3935(20000201)201:3<308::AID-MACP308>3.0.CO;2-H +290,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.044469606,0.0487,0.1,30.52,negative,doi.org/10.1002/polb.20423 +5,1,polypropylene,9003-07-0,*CC(*)C,dinonyl phthalate,84-76-4,CCCCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCCCC,380000,1.099998553,0.028331935,0.0252,0.1,94.68,positive,doi.org/10.1021/ma00041a024 +26,3,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,60500,2.951219512,0.592684233,0.5998,0.1,32.69,negative,doi.org/10.1016/S0032-3861(99)00513-3 +8,17,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,sulfolane,126-33-0,C1CCS(=O)(=O)C1,93300,2.010775862,0.147308714,0.1362,0.1,47.27,positive,doi.org/10.1021/ma00205a014 +291,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.187920831,0.2029,0.1,28.84,negative,doi.org/10.1016/S0022-2860(00)00559-7 +31,15,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,375000,1.2,0.00699056,0.0098,0.1,17.68,positive,doi.org/10.1016/0254-0584(86)90068-4 +292,40,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,49900,1.119989227,0.009099181,0.01,0.1,32.64,negative,doi.org/10.1021/ma0519617 +293,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.377260592,0.3999,0.1,27.75,negative,doi.org/10.1016/S0022-2860(00)00559-7 +23,2,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.081528064,0.0979,0.1,26.29,positive,doi.org/10.1016/0014-3057(73)90089-X +51,10,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.290001078,0.174296401,0.2002,0.1,4.92,positive,doi.org/10.1016/0254-0584(86)90068-4 +6,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-pentane,109-66-0,CCCCC,470000,1.199998979,0.102829162,0.15,5.53,192.49,negative,doi.org/10.1016/0014-3057(83)90057-5 +27,3,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,60500,2.951219512,0.342314596,0.349,0.1,35.18,negative,doi.org/10.1016/S0032-3861(99)00513-3 +32,12,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,685000,1.200000701,0.014020902,0.0196,0.1,24.01,positive,doi.org/10.1016/0254-0584(86)90068-4 +22,2,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,2050000,1.229999754,0.171365647,0.2199,0.1,21.29,positive,doi.org/10.1016/0254-0584(86)90068-4 +5,4,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,n-hexadecane,544-76-3,CCCCCCCCCCCCCCCC,22880,1.04,0.325397795,0.4013,0.1,103.64,positive,doi.org/10.1021/ma0610055 +294,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.276340128,0.2958,0.1,27.21,negative,doi.org/10.1002/polb.20423 +295,26,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,14000,1.4,0.093502537,0.1019,0.1,37.51,negative,doi.org/10.1002/(SICI)1099-0518(19970715)35:9<1763::AID-POLA17>3.0.CO;2-3 +296,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.281719103,0.3014,0.1,28.22,negative,doi.org/10.1016/S0022-2860(00)00559-7 +7,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-pentane,109-66-0,CCCCC,470000,1.199998979,0.102829162,0.15,6.45,198.12,negative,doi.org/10.1016/0014-3057(83)90057-5 +18,2,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,50000,2.400038401,0.026059641,0.0296,0.1,63.11,negative,doi.org/10.1002/polb.1988.090260312 +5,1,poly(ethyl methacrylate),9003-42-3,CCOC(=O)C(C)(*)C*,1-decanol,112-30-1,CCCCCCCCCCO,210000,2.1,0.521506428,0.5902,0.1,51.35,positive,doi.org/10.1016/S0032-3861(97)10141-0 +27,2,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,133000,1.080001299,0.0541,,0.1,25.16,positive,doi.org/10.1295/polymj.17.1123 +28,4,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,99000,2.129032258,0.073072458,0.0751,0.1,32.83,negative,doi.org/10.1143/JJAP.27.L1787 +5,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-heptane,142-82-5,CCCCCCC,470000,1.199998979,0.111530172,0.15,3.05,250.17,negative,doi.org/10.1016/0014-3057(83)90057-5 +297,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.687809096,0.7079,0.1,29.78,negative,doi.org/10.1016/S0022-2860(00)00559-7 +23,3,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,520000,1.17000117,0.09070935,0.1197,0.1,22.19,positive,doi.org/10.1016/0254-0584(86)90068-4 +52,4,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,470000,1.199998979,0.175734867,0.2018,0.1,4.93,positive,doi.org/10.1016/0254-0584(86)90068-4 +13,2,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,deuterium oxide,7789-20-0,[2H]O[2H],20000,2.5,0.331264314,0.316,0.1,30,negative,doi.org/10.1021/ma051745y +298,27,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,18000,4,0.044744772,0.049,0.1,31.27,negative,doi.org/10.1021/ma048472b +9,17,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,sulfolane,126-33-0,C1CCS(=O)(=O)C1,93300,2.010775862,0.06558063,0.0602,0.1,31.98,positive,doi.org/10.1021/ma00205a014 +6,1,polypropylene,9003-07-0,*CC(*)C,didecyl phthalate,84-77-5,CCCCCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCCCCC,380000,1.099998553,0.028037383,0.025,0.1,81.63,positive,doi.org/10.1021/ma00041a024 +33,15,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,375000,1.2,0.029075816,0.0404,0.1,20.96,positive,doi.org/10.1016/0254-0584(86)90068-4 +28,2,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,133000,1.080001299,0.0835,,0.1,24.91,positive,doi.org/10.1295/polymj.17.1123 +24,2,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,2050000,1.229999754,0.153185541,0.1978,0.1,21.68,positive,doi.org/10.1016/0254-0584(86)90068-4 +299,36,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,525000,2.019999923,0.015569658,0.0171,0.1,33.47,negative,doi.org/10.1002/polb.10469 +53,10,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.290001078,0.160578587,0.1849,0.1,5.07,positive,doi.org/10.1016/0254-0584(86)90068-4 +10,2,poly(vinyl alcohol),9002-89-5,*CC(O)*,ethylene glycol,107-21-1,C(CO)O,32900,1.523148148,0.101174803,0.1125,0.1,65.04,positive,doi.org/10.1002/polb.1991.090290510 +4,2,poly(ethyl methacrylate),9003-42-3,CCOC(=O)C(C)(*)C*,1-butanol,71-36-3,CCCCO,220000,2,0.142509603,0.1855,0.1,27.94,positive,doi.org/10.1002/(SICI)1097-4628(19960523)60:8<1127::AID-APP5>3.0.CO;2-N +11,1,polypropylene,9003-07-0,*CC(*)C,diheptyl phthalate,3648-21-3,CCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCC,380000,1.099998553,0.225334285,0.2001,0.1,119.4,positive,doi.org/10.1021/ma00041a024 +300,36,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,525000,2.019999923,0.033200773,0.0364,0.1,33.34,negative,doi.org/10.1002/polb.10469 +301,41,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,45100,1.129985969,0.009099181,0.01,0.1,33.35,negative,doi.org/10.1021/ma0519617 +11,1,poly(vinyl alcohol),9002-89-5,*CC(O)*,ethylene glycol,107-21-1,C(CO)O,102400,1.695364238,0.021190886,0.0238,0.1,75.02,positive,doi.org/10.1002/polb.1991.090290510 +54,4,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,470000,1.199998979,0.089068915,0.1039,0.1,5.2,positive,doi.org/10.1016/0254-0584(86)90068-4 +6,18,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,tert-butyl alcohol,75-65-0,CC(C)(C)O,93300,2.010775862,0.125648145,0.173,0.1,43.6,positive,doi.org/10.1021/ma00225a018 +55,10,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.290001078,0.133522307,0.1545,0.1,5.38,positive,doi.org/10.1016/0254-0584(86)90068-4 +10,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-hexane,110-54-3,CCCCCC,470000,1.199998979,0.107055829,0.15,5.81,240.27,negative,doi.org/10.1016/0014-3057(83)90057-5 +6,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-heptane,142-82-5,CCCCCCC,470000,1.199998979,0.111530172,0.15,2.18,240.62,negative,doi.org/10.1016/0014-3057(83)90057-5 +302,42,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,7500,1.070052789,0.009099181,0.01,0.1,45.32,negative,doi.org/10.1021/ma0519617 +24,3,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.008112075,0.0099,0.1,6.29,positive,doi.org/10.1016/0014-3057(73)90138-9 +19,1,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,20000,1.699957501,0.004476488,0.0051,0.1,66.52,negative,doi.org/10.1002/polb.1988.090260312 +7,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,cyclopentane,287-92-3,C1CCCC1,470000,1.199998979,0.119359146,0.15,8.55,266.96,negative,doi.org/10.1016/0014-3057(83)90057-5 +25,2,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,2050000,1.229999754,0.138139728,0.1793,0.1,22.11,positive,doi.org/10.1016/0254-0584(86)90068-4 +9,1,"poly(1,3-dioxolane)",25067-64-5,*OCOCC*,water,7732-18-5,O,50000,1.500015,0.584795322,0.645,0.1,49.32,negative,doi.org/10.1021/ma00047a022 +7,18,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,tert-butyl alcohol,75-65-0,CC(C)(C)O,93300,2.010775862,0.016332838,0.0236,0.1,49.48,positive,doi.org/10.1021/ma00225a018 +303,26,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,14000,1.4,0.047313714,0.0518,0.1,38.52,negative,doi.org/10.1002/(SICI)1099-0518(19970715)35:9<1763::AID-POLA17>3.0.CO;2-3 +304,27,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,18000,4,0.676294743,0.6968,0.1,34.57,negative,doi.org/10.1021/ma048472b +8,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-pentane,109-66-0,CCCCC,470000,1.199998979,0.102829162,0.15,4.44,182.65,negative,doi.org/10.1016/0014-3057(83)90057-5 +14,2,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,deuterium oxide,7789-20-0,[2H]O[2H],20000,2.5,0.312278664,0.2975,0.1,30.1,negative,doi.org/10.1021/ma051745y +8,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,cyclopentane,287-92-3,C1CCCC1,470000,1.199998979,0.119359146,0.15,7.84,257.98,negative,doi.org/10.1016/0014-3057(83)90057-5 +34,11,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,195000,1.25,0.06602504,0.0904,0.1,22.66,positive,doi.org/10.1016/0254-0584(86)90068-4 +20,1,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,20000,1.699957501,0.017587056,0.02,0.1,63.57,negative,doi.org/10.1002/polb.1988.090260312 +35,12,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,685000,1.200000701,0.016613534,0.0232,0.1,24.21,positive,doi.org/10.1016/0254-0584(86)90068-4 +26,3,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,520000,1.17000117,0.029811732,0.0402,0.1,21.99,positive,doi.org/10.1016/0254-0584(86)90068-4 +16,10,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-butanol,71-36-3,CCCCO,380000,2.533333333,0.065198514,0.0901,0.1,83.45,positive,doi.org/10.1016/0032-3861(94)90678-5 +17,13,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-butanol,71-36-3,CCCCO,120000,2.4,0.159787922,0.2126,0.1,76.41,positive,doi.org/10.1002/(SICI)1097-4628(19960523)60:8<1127::AID-APP5>3.0.CO;2-N +10,1,polyisobutylene,9003-27-4,*CC(*)(C)C,n-pentane,109-66-0,CCCCC,1000000,1.666666667,0.015448208,0.0224,10.48,130.37,negative,doi.org/10.1021/je010171z +29,4,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,99000,2.129032258,0.036155679,0.0372,0.1,32.32,negative,doi.org/10.1143/JJAP.27.L1787 +56,8,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,250000,1.136363636,0.148797926,0.1717,0.1,3.13,positive,doi.org/10.1016/0254-0584(83)90036-6 +27,3,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,520000,1.17000117,0.122928557,0.1604,0.1,21.82,positive,doi.org/10.1016/0254-0584(86)90068-4 +12,1,polypropylene,9003-07-0,*CC(*)C,diheptyl phthalate,3648-21-3,CCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCC,380000,1.099998553,0.058356514,0.0506,0.1,136.46,positive,doi.org/10.1021/ma00041a024 +7,1,polypropylene,9003-07-0,*CC(*)C,didecyl phthalate,84-77-5,CCCCCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCCCCC,380000,1.099998553,0.011123734,0.0099,0.1,81.13,positive,doi.org/10.1021/ma00041a024 +305,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.429011614,0.4525,0.1,27.09,negative,doi.org/10.1016/S0022-2860(00)00559-7 +25,1,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.448932388,0.499,0.1,89.13,positive,doi.org/10.1002/polc.5070390128 +29,1,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,53300,1.079996758,0.056,,0.1,18.67,positive,doi.org/10.1295/polymj.17.1123 +15,2,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,deuterium oxide,7789-20-0,[2H]O[2H],20000,2.5,0.277566028,0.2638,0.1,30.23,negative,doi.org/10.1021/ma051745y +7,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,n-heptane,142-82-5,CCCCCCC,470000,1.199998979,0.111530172,0.15,4.55,270.64,negative,doi.org/10.1016/0014-3057(83)90057-5 +29,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,730000,1.303571429,0.065297479,0.0772,0.1,32.75,positive,doi.org/10.1016/0254-0584(83)90036-6 +13,1,polypropylene,9003-07-0,*CC(*)C,diheptyl phthalate,3648-21-3,CCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCC,380000,1.099998553,0.034368715,0.0297,0.1,138.6,positive,doi.org/10.1021/ma00041a024 +6,1,polypropylene,9003-07-0,*CC(*)C,dinonyl phthalate,84-76-4,CCCCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCCCC,380000,1.099998553,0.016886207,0.015,0.1,94.89,positive,doi.org/10.1021/ma00041a024 +30,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,730000,1.303571429,0.246788884,0.2818,0.1,30.25,positive,doi.org/10.1016/0254-0584(83)90036-6 +306,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.184619373,0.1994,0.1,27.9,negative,doi.org/10.1016/S0022-2860(00)00559-7 +307,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.183582214,0.1983,0.1,28.43,negative,doi.org/10.1002/polb.20423 +28,2,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,2050000,1.229999754,0.004114548,0.0056,0.1,22.13,positive,doi.org/10.1016/0254-0584(86)90068-4 +14,1,polypropylene,9003-07-0,*CC(*)C,diheptyl phthalate,3648-21-3,CCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCC,380000,1.099998553,0.022256018,0.0192,0.1,138.95,positive,doi.org/10.1021/ma00041a024 +4,1,polypropylene,9003-07-0,*CC(*)C,bis(2-ethylhexyl) phthalate,117-81-7,CCCCC(CC)COC(=O)c1ccccc1C(=O)OCC(CC)CCCC,380000,1.099998553,0.022953907,0.0202,0.1,113.36,positive,doi.org/10.1021/ma00041a024 +6,4,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,n-hexadecane,544-76-3,CCCCCCCCCCCCCCCC,22880,1.04,0.153040731,0.2007,0.1,114.8,positive,doi.org/10.1021/ma0610055 +308,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.135166263,0.1467,0.1,28.27,negative,doi.org/10.1016/S0022-2860(00)00559-7 +57,9,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,250000,1.129999684,0.126092749,0.1461,0.1,3.18,positive,doi.org/10.1016/0254-0584(86)90068-4 +30,1,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,53300,1.079996758,0.0365,,0.1,18.63,positive,doi.org/10.1295/polymj.17.1123 +7,1,polypropylene,9003-07-0,*CC(*)C,dinonyl phthalate,84-76-4,CCCCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCCCC,380000,1.099998553,0.022725006,0.0202,0.1,94.99,positive,doi.org/10.1021/ma00041a024 +18,13,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-butanol,71-36-3,CCCCO,120000,2.4,0.240635214,0.3103,0.1,75.12,positive,doi.org/10.1002/(SICI)1097-4628(19960523)60:8<1127::AID-APP5>3.0.CO;2-N +19,10,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-butanol,71-36-3,CCCCO,380000,2.533333333,0.237054055,0.3061,0.1,81.14,positive,doi.org/10.1016/0032-3861(94)90678-5 +30,3,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,60500,2.951219512,0.742996322,0.7486,0.1,32.28,negative,doi.org/10.1016/S0032-3861(99)00513-3 +29,3,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,520000,1.17000117,0.037629585,0.0506,0.1,22.22,positive,doi.org/10.1016/0254-0584(86)90068-4 +309,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.18301658,0.1977,0.1,28.27,negative,doi.org/10.1016/S0022-2860(00)00559-7 +26,3,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.598076705,0.6453,0.1,102.42,positive,doi.org/10.1016/0014-3057(73)90138-9 +310,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.275380189,0.2948,0.1,24.55,negative,doi.org/10.1002/polb.20423 +58,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.303571429,0.214127495,0.2442,0.1,4.25,positive,doi.org/10.1016/0254-0584(83)90036-6 +8,18,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,tert-butyl alcohol,75-65-0,CC(C)(C)O,93300,2.010775862,0.147506236,0.2012,0.1,43.04,positive,doi.org/10.1021/ma00225a018 +30,2,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,2050000,1.229999754,0.021962996,0.0297,0.1,23.01,positive,doi.org/10.1016/0254-0584(86)90068-4 +6,6,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,toluene,108-88-3,CC1=CC=CC=C1,470000,1.199998979,0.136242208,0.15,6.53,305.39,negative,doi.org/10.1016/0014-3057(83)90057-5 +10,1,"poly(1,3-dioxolane)",25067-64-5,*OCOCC*,water,7732-18-5,O,50000,1.500015,0.442199242,0.5056,0.1,63.14,negative,doi.org/10.1021/ma00047a022 +36,11,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,195000,1.25,0.028930186,0.0402,0.1,22.69,positive,doi.org/10.1016/0254-0584(86)90068-4 +6,137,polystyrene,9003-53-6,*C(C*)c1ccccc1,n-hexadecane,544-76-3,CCCCCCCCCCCCCCCC,19950,1.05,0.075342466,0.1,0.1,145.25,positive,doi.org/10.1021/ma0610055 +27,2,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.253796337,0.2937,0.1,62.77,positive,doi.org/10.1016/0014-3057(73)90089-X +6,1,polypropylene,9003-07-0,*CC(*)C,dioctyl phthalate,117-84-0,CCCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCCC,380000,1.099998553,0.028841965,0.0254,0.1,120.8,positive,doi.org/10.1021/ma00041a024 +311,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.044377888,0.0486,0.1,30.83,negative,doi.org/10.1016/S0022-2860(00)00559-7 +59,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.303571429,0.010815921,0.0128,0.1,4.87,positive,doi.org/10.1016/0254-0584(83)90036-6 +31,4,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,99000,2.129032258,0.046667185,0.048,0.1,32.46,negative,doi.org/10.1143/JJAP.27.L1787 +60,7,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,470000,1.205128205,0.087936272,0.1026,0.1,5.18,positive,doi.org/10.1016/0254-0584(83)90036-6 +12,1,poly(vinyl alcohol),9002-89-5,*CC(O)*,ethylene glycol,107-21-1,C(CO)O,102400,1.695364238,0.241009163,0.2634,0.1,108.12,positive,doi.org/10.1002/polb.1991.090290510 +21,4,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,500000,3.3000033,0.008343067,0.0095,0.1,61.16,negative,doi.org/10.1002/polb.1988.090260312 +31,2,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,2050000,1.229999754,0.068034849,0.0905,0.1,23.23,positive,doi.org/10.1016/0254-0584(86)90068-4 +37,11,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,195000,1.25,0.036012885,0.0499,0.1,22.94,positive,doi.org/10.1016/0254-0584(86)90068-4 +312,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.001363822,0.0015,0.1,34.03,negative,doi.org/10.1016/S0022-2860(00)00559-7 +313,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.088688746,0.0967,0.1,27.93,negative,doi.org/10.1002/polb.20423 +7,1,polypropylene,9003-07-0,*CC(*)C,dioctyl phthalate,117-84-0,CCCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCCC,380000,1.099998553,0.023293834,0.0205,0.1,121.1,positive,doi.org/10.1021/ma00041a024 +11,1,"poly(1,3-dioxolane)",25067-64-5,*OCOCC*,water,7732-18-5,O,50000,1.500015,0.092248499,0.1159,0.1,71.08,negative,doi.org/10.1021/ma00047a022 +22,1,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,20000,1.699957501,0.034995178,0.0397,0.1,64.66,negative,doi.org/10.1002/polb.1988.090260312 +314,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.021318077,0.0234,0.1,32.47,negative,doi.org/10.1016/S0022-2860(00)00559-7 +20,10,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-butanol,71-36-3,CCCCO,380000,2.533333333,0.052478018,0.0729,0.1,83.59,positive,doi.org/10.1016/0032-3861(94)90678-5 +23,2,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,50000,2.400038401,0.061668209,0.0697,0.1,63.66,negative,doi.org/10.1002/polb.1988.090260312 +61,4,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,470000,1.199998979,0.036165961,0.0426,0.1,4.69,positive,doi.org/10.1016/0254-0584(86)90068-4 +11,1,polyisobutylene,9003-27-4,*CC(*)(C)C,n-pentane,109-66-0,CCCCC,1000000,1.666666667,0.015448208,0.0224,12.29,140.38,negative,doi.org/10.1021/je010171z +24,3,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,128000,3.2,0.047240201,0.0535,0.1,62.0256,negative,doi.org/10.1016/S0032-3861(03)00139-3 +62,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.303571429,0.067542137,0.0791,0.1,5.68,positive,doi.org/10.1016/0254-0584(83)90036-6 +12,1,"poly(1,3-dioxolane)",25067-64-5,*OCOCC*,water,7732-18-5,O,50000,1.500015,0.111558019,0.1394,0.1,72.63,negative,doi.org/10.1021/ma00047a022 +21,10,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-butanol,71-36-3,CCCCO,380000,2.533333333,0.0759509,0.1045,0.1,83.31,positive,doi.org/10.1016/0032-3861(94)90678-5 +63,5,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.303571429,0.025844138,0.0305,0.1,5.43,positive,doi.org/10.1016/0254-0584(83)90036-6 +38,11,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,195000,1.25,0.111525177,0.15,0.1,21.82,positive,doi.org/10.1016/0254-0584(86)90068-4 +5,1,polypropylene,9003-07-0,*CC(*)C,bis(2-ethylhexyl) phthalate,117-81-7,CCCCC(CC)COC(=O)c1ccccc1C(=O)OCC(CC)CCCC,380000,1.099998553,0.017057322,0.015,0.1,112.76,positive,doi.org/10.1021/ma00041a024 +64,10,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.290001078,0.045154901,0.0531,0.1,5.7,positive,doi.org/10.1016/0254-0584(86)90068-4 +315,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.278356584,0.2979,0.1,27.94,negative,doi.org/10.1016/S0022-2860(00)00559-7 +28,3,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.49669114,0.5468,0.1,92.53,positive,doi.org/10.1016/0014-3057(73)90138-9 +32,3,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,520000,1.17000117,0.22257514,0.2807,0.1,20.42,positive,doi.org/10.1016/0254-0584(86)90068-4 +316,26,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,14000,1.4,0.138248848,0.15,0.1,36.73,negative,doi.org/10.1002/(SICI)1099-0518(19970715)35:9<1763::AID-POLA17>3.0.CO;2-3 +33,2,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,2050000,1.229999754,0.052483207,0.0702,0.1,23.21,positive,doi.org/10.1016/0254-0584(86)90068-4 +13,1,poly(vinyl alcohol),9002-89-5,*CC(O)*,ethylene glycol,107-21-1,C(CO)O,102400,1.695364238,0.099262562,0.1104,0.1,95.89,positive,doi.org/10.1002/polb.1991.090290510 +34,3,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,520000,1.17000117,0.188517735,0.2405,0.1,20.89,positive,doi.org/10.1016/0254-0584(86)90068-4 +14,1,poly(vinyl alcohol),9002-89-5,*CC(O)*,ethylene glycol,107-21-1,C(CO)O,102400,1.695364238,0.163128674,0.18,0.1,103.98,positive,doi.org/10.1002/polb.1991.090290510 +13,1,"poly(1,3-dioxolane)",25067-64-5,*OCOCC*,water,7732-18-5,O,50000,1.500015,0.348499863,0.4083,0.1,73.5,negative,doi.org/10.1021/ma00047a022 +317,36,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,525000,2.019999923,0.077782155,0.0849,0.1,33.1,negative,doi.org/10.1002/polb.10469 +39,11,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,195000,1.25,0.096459301,0.1305,0.1,22.23,positive,doi.org/10.1016/0254-0584(86)90068-4 +9,14,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-decanol,112-30-1,CCCCCCCCCCO,250000,1.602564103,0.743231039,0.7985,0.1,80.66,positive,doi.org/10.1016/S0032-3861(97)10141-0 +10,14,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-decanol,112-30-1,CCCCCCCCCCO,250000,1.602564103,0.259834911,0.3246,0.1,111.85,positive,doi.org/10.1016/S0032-3861(97)10141-0 +35,3,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,520000,1.17000117,0.052407022,0.0701,0.1,22.24,positive,doi.org/10.1016/0254-0584(86)90068-4 +36,2,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,2050000,1.229999754,0.09141401,0.1206,0.1,22.92,positive,doi.org/10.1016/0254-0584(86)90068-4 +25,4,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,500000,3.3000033,0.177828443,0.1978,0.1,65.81,negative,doi.org/10.1002/polb.1988.090260312 +26,3,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,128000,3.2,0.366094318,0.397,0.1,81.0354,negative,doi.org/10.1016/S0032-3861(03)00139-3 +65,4,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,470000,1.199998979,0.115953733,0.1346,0.1,5.25,positive,doi.org/10.1016/0254-0584(86)90068-4 +37,3,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,520000,1.17000117,0.014677329,0.0199,0.1,21.8,positive,doi.org/10.1016/0254-0584(86)90068-4 +318,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.236176509,0.2538,0.1,28.02,negative,doi.org/10.1016/S0022-2860(00)00559-7 +319,36,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,525000,2.019999923,0.02442314,0.0268,0.1,33.4,negative,doi.org/10.1002/polb.10469 +320,22,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.280565992,0.3002,0.1,24.53,negative,doi.org/10.1021/ma048472b +40,11,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,195000,1.25,0.043504216,0.0601,0.1,22.9,positive,doi.org/10.1016/0254-0584(86)90068-4 +15,1,polypropylene,9003-07-0,*CC(*)C,diheptyl phthalate,3648-21-3,CCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCC,380000,1.099998553,0.085249337,0.0742,0.1,133.4,positive,doi.org/10.1021/ma00041a024 +41,15,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,375000,1.2,0.013877025,0.0194,0.1,19.71,positive,doi.org/10.1016/0254-0584(86)90068-4 +27,1,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,20000,1.699957501,0.061311265,0.0693,0.1,65.83,negative,doi.org/10.1002/polb.1988.090260312 +321,36,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,525000,2.019999923,0.028718603,0.0315,0.1,33.43,negative,doi.org/10.1002/polb.10469 +10,16,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,methanol,67-56-1,CO,102600,2.124223602,0.150413869,0.2045,0.1,63.41,positive,doi.org/10.1016/S0032-3861(02)00409-3 +322,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.175386665,0.1896,0.1,27.91,negative,doi.org/10.1002/polb.20423 +32,3,poly(vinyl methyl ether),9/2/9003,*CC(*)OC,water,7732-18-5,O,60500,2.951219512,0.098054585,0.1007,0.1,35.01,negative,doi.org/10.1016/S0032-3861(99)00513-3 +5,2,poly(ethyl methacrylate),9003-42-3,CCOC(=O)C(C)(*)C*,1-butanol,71-36-3,CCCCO,220000,2,0.418950983,0.497,0.1,14.63,positive,doi.org/10.1002/(SICI)1097-4628(19960523)60:8<1127::AID-APP5>3.0.CO;2-N +6,1,poly(ethyl methacrylate),9003-42-3,CCOC(=O)C(C)(*)C*,1-decanol,112-30-1,CCCCCCCCCCO,210000,2.1,0.235151846,0.2889,0.1,59.14,positive,doi.org/10.1016/S0032-3861(97)10141-0 +42,15,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,375000,1.2,0.089030452,0.1208,0.1,20.84,positive,doi.org/10.1016/0254-0584(86)90068-4 +323,6,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,53000,1.472222222,0.330869577,0.3523,0.1,27.72,negative,doi.org/10.1016/S0022-2860(00)00559-7 +28,4,poly(2-ethyl-2-oxazoline),25805-17-8,CCC(N(*)CC*)=O,water,7732-18-5,O,500000,3.3000033,0.026501471,0.0301,0.1,61.08,negative,doi.org/10.1002/polb.1988.090260312 +66,7,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,470000,1.205128205,0.102434589,0.1192,0.1,5.21,positive,doi.org/10.1016/0254-0584(83)90036-6 +12,1,polyisobutylene,9003-27-4,*CC(*)(C)C,n-pentane,109-66-0,CCCCC,1000000,1.666666667,0.015448208,0.0224,6.3,110.2,negative,doi.org/10.1021/je010171z +6,2,poly(ethyl methacrylate),9003-42-3,CCOC(=O)C(C)(*)C*,1-butanol,71-36-3,CCCCO,220000,2,0.228073158,0.2882,0.1,22.39,positive,doi.org/10.1002/(SICI)1097-4628(19960523)60:8<1127::AID-APP5>3.0.CO;2-N +324,22,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.57407621,0.5972,0.1,24.53,negative,doi.org/10.1021/ma048472b +67,10,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-pentanol,71-41-0,CCCCCO,730000,1.290001078,0.15049054,0.1736,0.1,5.18,positive,doi.org/10.1016/0254-0584(86)90068-4 +43,12,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,685000,1.200000701,0.040781589,0.0564,0.1,24.58,positive,doi.org/10.1016/0254-0584(86)90068-4 +38,3,poly(butyl methacrylate),9003-63-8,*CC(*)(C)C(=O)OCCCC,2-propanol,67-63-0,CC(C)O,520000,1.17000117,0.155312641,0.2004,0.1,21.59,positive,doi.org/10.1016/0254-0584(86)90068-4 +11,14,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-decanol,112-30-1,CCCCCCCCCCO,250000,1.602564103,0.340942599,0.4146,0.1,110.88,positive,doi.org/10.1016/S0032-3861(97)10141-0 +325,19,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,74000,2.99995946,0.185279493,0.2001,0.1,28.79,negative,doi.org/10.1002/polb.20423 +29,3,"poly(2,6-dimethyl-1,4-phenylene oxide)",25134-01-04,CC1=C(C(=CC(*)=C1)C)O*,toluene,108-88-3,CC1=CC=CC=C1,49000,1.96,0.085176868,0.1022,0.1,28.04,positive,doi.org/10.1016/0014-3057(73)90138-9 +326,43,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,6500,1.150035386,0.009099181,0.01,0.1,42.89,negative,doi.org/10.1021/ma0519617 +327,27,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,18000,4,0.187166023,0.2021,0.1,26.36,negative,doi.org/10.1021/ma048472b +328,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.493179433,0.517,0.1,26.8,negative,doi.org/10.1016/S0022-2860(00)00559-7 +31,8,poly(decyl methacrylate),29320-53-4,*CC(*)(C)C(=O)OCCCCCCCCCC,1-butanol,71-36-3,CCCCO,250000,1.136363636,0.047454089,0.0563,0.1,28.5,positive,doi.org/10.1016/0254-0584(83)90036-6 +9,18,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,tert-butyl alcohol,75-65-0,CC(C)(C)O,93300,2.010775862,0.070110625,0.0989,0.1,48.74,positive,doi.org/10.1021/ma00225a018 +329,36,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,525000,2.019999923,0.045295149,0.0496,0.1,33.17,negative,doi.org/10.1002/polb.10469 +6,1,polypropylene,9003-07-0,*CC(*)C,bis(2-ethylhexyl) phthalate,117-81-7,CCCCC(CC)COC(=O)c1ccccc1C(=O)OCC(CC)CCCC,380000,1.099998553,0.034043539,0.03,0.1,112.46,positive,doi.org/10.1021/ma00041a024 +14,1,"poly(1,3-dioxolane)",25067-64-5,*OCOCC*,water,7732-18-5,O,50000,1.500015,0.260014389,0.3119,0.1,73.5,negative,doi.org/10.1021/ma00047a022 +330,44,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,11100,1.11,0.009099181,0.01,0.1,40.25,negative,doi.org/10.1021/ma0519617 +31,1,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,53300,1.079996758,0.0241,,0.1,17.76,positive,doi.org/10.1295/polymj.17.1123 +32,1,polyisoprene,9003-31-0,*CC(C)=CC*,"1,4-dioxane",123-91-1,C1COCCO1,53300,1.079996758,0.0819,,0.1,18.67,positive,doi.org/10.1295/polymj.17.1123 +44,11,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,195000,1.25,0.081189134,0.1105,0.1,22.48,positive,doi.org/10.1016/0254-0584(86)90068-4 +331,25,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,186800,2.600005567,0.18575106,0.2006,0.1,26.38,negative,doi.org/10.1021/ma048472b +332,5,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,10000,4.545454545,0.008825965,0.0097,0.1,32.29,negative,doi.org/10.1016/S0022-2860(00)00559-7 +22,13,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,1-butanol,71-36-3,CCCCO,120000,2.4,0.413944407,0.5007,0.1,70.7,positive,doi.org/10.1002/(SICI)1097-4628(19960523)60:8<1127::AID-APP5>3.0.CO;2-N +45,12,poly(methyl methacrylate),9011-14-7,COC(=O)C(*)(C)C*,3-heptanone,106-35-4,CCCCC(=O)CC,685000,1.200000701,0.066475083,0.091,0.1,23.85,positive,doi.org/10.1016/0254-0584(86)90068-4 +13,1,polyisobutylene,9003-27-4,*CC(*)(C)C,n-pentane,109-66-0,CCCCC,1000000,1.666666667,0.015448208,0.0224,19.46,189.83,negative,doi.org/10.1021/je010171z +7,1,poly(ethyl methacrylate),9003-42-3,CCOC(=O)C(C)(*)C*,1-decanol,112-30-1,CCCCCCCCCCO,210000,2.1,0.082100048,0.1057,0.1,60.43,positive,doi.org/10.1016/S0032-3861(97)10141-0 +16,1,polypropylene,9003-07-0,*CC(*)C,diheptyl phthalate,3648-21-3,CCCCCCCOC(=O)C1=CC=CC=C1C(=O)OCCCCCCC,380000,1.099998553,0.011956696,0.0103,0.1,137.57,positive,doi.org/10.1021/ma00041a024 +333,1,poly(N-isopropylacrylamide),25189-55-3,CC(C)NC(=O)C(*)C*,water,7732-18-5,O,124000,1.488595438,0.525711442,0.5494,0.1,27.1,negative,doi.org/10.1016/S0022-2860(00)00559-7 diff --git a/scripts/typescript/src/afrl/data/AFRL_linear_polymer_3pdb_data_csv_4_5_2023.zip b/scripts/typescript/src/afrl/data/AFRL_linear_polymer_3pdb_data_csv_4_5_2023.zip new file mode 100644 index 0000000000000000000000000000000000000000..67367ed26adf82edcca410455f9dd7fbacf7fc4c GIT binary patch literal 164011 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

u;yuRqC*pFVC-x6J?>{f%m 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 *Note: this script is a work in progress* + +This script converts the Air Force Research Laboratory's CSV file into a unique JSON file. +The file can be uploaded at once as a single project into CRIPT. + +## TypeScript Script +* [TypeScript source code](https://github.com/C-Accel-CRIPT/criptscripts/tree/master/scripts/typescript/src/afrl) diff --git a/scripts/typescript/src/afrl/index.ts b/scripts/typescript/src/afrl/index.ts new file mode 100644 index 0000000..5135550 --- /dev/null +++ b/scripts/typescript/src/afrl/index.ts @@ -0,0 +1,48 @@ +import { AFRLtoJSON as AFRLCSVtoJSON } from "./afrl-csv-to-json"; +import fs from 'fs'; +import path from 'path'; +import { output_dir_path, write_json_helper } from "@utilities"; + +const file_name = 'AFRL_linear_polymer_3pdb_data_csv_4_5_2023.csv'; // TODO: read this from command line argument + +// Call main as a promise because low level await are not allowed. +main().then( code => process.exit(code) ) + +async function main(): Promise { + + console.log('=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-==-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=') + console.log('=-=-=-=-=-=-=-=-=-=-=-=-= AFRL CSV to JSON -=-=-=-=-=-==-=-=-=-=-=-=-=') + console.log('=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-==-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=') + + // Instantiate AFRL to JSON serializer + const serializer = new AFRLCSVtoJSON({ + inventory_basename: 'afrl-deleteme', + project_name: 'afrl-deleteme' + }); + + // Load the CSV into an AFRLData[] + const input_csv_file_path = path.resolve(__dirname, 'data', file_name); + const afrl_data = await serializer.load_csv(input_csv_file_path); + + // Load the AFRLData[] to a Project + const project = serializer.load_data(afrl_data); + + // Ensure output directory exists + console.log('Ensure output folder path exists ...') + console.log(`Path: ${output_dir_path}`) + if (!fs.existsSync(output_dir_path)) { + console.log(`Output folder path does not exist, creating it ...`) + fs.mkdirSync(output_dir_path, { recursive: true }); + console.log(`Output folder path created.`) + } + console.log('Output folder is ready') + + // Write JSON files + + write_json_helper(project, 'afrl-transformed', 'minified') + write_json_helper(project, 'afrl-transformed', 'human-readable') + write_json_helper(serializer.get_errors(), 'afrl-transformed.errors', 'human-readable') + + return 0; +} + diff --git a/scripts/typescript/src/afrl/types.ts b/scripts/typescript/src/afrl/types.ts new file mode 100644 index 0000000..26bfd33 --- /dev/null +++ b/scripts/typescript/src/afrl/types.ts @@ -0,0 +1,27 @@ +export type AFRLData = { + // The row index from the CSV file + csv_raw_index?: number; + + cloud_point_temp: number; + mixture_id: number; + one_phase_direction: string; + polymer_CAS: string; + polymer_id: number; + polymer_Mw?: number; + polymer_PDI: number; + polymer_SMILES: string; + polymer_vol_frac: number; + polymer_wt_frac: number | ""; + polymer: string; + pressure_MPa: number; + reference: string; + solvent_CAS: string; + solvent_id?: string; + solvent_Mw: number; + solvent_SMILES: string; + solvent: string; +}; + +export type AFRLHeaders = { + [key in keyof AFRLData]: string; +}; diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/IAlgorithm.ts b/scripts/typescript/src/types/cript/IAlgorithm.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/IAlgorithm.ts rename to scripts/typescript/src/types/cript/IAlgorithm.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/ICitation.ts b/scripts/typescript/src/types/cript/ICitation.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/ICitation.ts rename to scripts/typescript/src/types/cript/ICitation.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/ICollection..ts b/scripts/typescript/src/types/cript/ICollection..ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/ICollection..ts rename to scripts/typescript/src/types/cript/ICollection..ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/IComputation.ts b/scripts/typescript/src/types/cript/IComputation.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/IComputation.ts rename to scripts/typescript/src/types/cript/IComputation.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/IComputationProcess.ts b/scripts/typescript/src/types/cript/IComputationProcess.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/IComputationProcess.ts rename to scripts/typescript/src/types/cript/IComputationProcess.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/ICondition.d.ts b/scripts/typescript/src/types/cript/ICondition.d.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/ICondition.d.ts rename to scripts/typescript/src/types/cript/ICondition.d.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/IData.ts b/scripts/typescript/src/types/cript/IData.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/IData.ts rename to scripts/typescript/src/types/cript/IData.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/IEquipment.ts b/scripts/typescript/src/types/cript/IEquipment.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/IEquipment.ts rename to scripts/typescript/src/types/cript/IEquipment.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/IExperiment.ts b/scripts/typescript/src/types/cript/IExperiment.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/IExperiment.ts rename to scripts/typescript/src/types/cript/IExperiment.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/IFile.ts b/scripts/typescript/src/types/cript/IFile.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/IFile.ts rename to scripts/typescript/src/types/cript/IFile.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/IIdentifier.ts b/scripts/typescript/src/types/cript/IIdentifier.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/IIdentifier.ts rename to scripts/typescript/src/types/cript/IIdentifier.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/IIngredient.ts b/scripts/typescript/src/types/cript/IIngredient.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/IIngredient.ts rename to scripts/typescript/src/types/cript/IIngredient.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/IInventory.ts b/scripts/typescript/src/types/cript/IInventory.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/IInventory.ts rename to scripts/typescript/src/types/cript/IInventory.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/IMaterial.ts b/scripts/typescript/src/types/cript/IMaterial.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/IMaterial.ts rename to scripts/typescript/src/types/cript/IMaterial.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/IParameter.ts b/scripts/typescript/src/types/cript/IParameter.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/IParameter.ts rename to scripts/typescript/src/types/cript/IParameter.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/IProcess.ts b/scripts/typescript/src/types/cript/IProcess.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/IProcess.ts rename to scripts/typescript/src/types/cript/IProcess.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/IProject.ts b/scripts/typescript/src/types/cript/IProject.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/IProject.ts rename to scripts/typescript/src/types/cript/IProject.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/IProperty.ts b/scripts/typescript/src/types/cript/IProperty.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/IProperty.ts rename to scripts/typescript/src/types/cript/IProperty.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/IQuantity.ts b/scripts/typescript/src/types/cript/IQuantity.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/IQuantity.ts rename to scripts/typescript/src/types/cript/IQuantity.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/IReference.ts b/scripts/typescript/src/types/cript/IReference.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/IReference.ts rename to scripts/typescript/src/types/cript/IReference.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/ISoftware.ts b/scripts/typescript/src/types/cript/ISoftware.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/ISoftware.ts rename to scripts/typescript/src/types/cript/ISoftware.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/ISoftwareConfiguration.ts b/scripts/typescript/src/types/cript/ISoftwareConfiguration.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/ISoftwareConfiguration.ts rename to scripts/typescript/src/types/cript/ISoftwareConfiguration.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/IUser.ts b/scripts/typescript/src/types/cript/IUser.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/IUser.ts rename to scripts/typescript/src/types/cript/IUser.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/IVocab.ts b/scripts/typescript/src/types/cript/IVocab.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/IVocab.ts rename to scripts/typescript/src/types/cript/IVocab.ts diff --git a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/index.ts b/scripts/typescript/src/types/cript/index.ts similarity index 97% rename from scripts/typescript/typescript_scripts/AFRL/src/types/cript/index.ts rename to scripts/typescript/src/types/cript/index.ts index a88eca6..29116db 100644 --- a/scripts/typescript/typescript_scripts/AFRL/src/types/cript/index.ts +++ b/scripts/typescript/src/types/cript/index.ts @@ -20,7 +20,6 @@ import { IUser } from './IUser'; import { ISoftware } from './ISoftware'; import { ISoftwareConfiguration } from './ISoftwareConfiguration'; import { IVocabBase, IVocabIdentifier, IVocabProperty, IVocabQuantity, IVocab, IControlledVocabulary } from './IVocab'; -import { EditorMode } from './EditorMode'; import { IQuantity } from './IQuantity'; import { IEquipment } from './IEquipment'; @@ -68,7 +67,6 @@ export type { IVocabIdentifier, IVocabProperty, IVocabQuantity, - EditorMode, IControlledVocabulary, }; diff --git a/scripts/typescript/typescript_scripts/AFRL/src/utils/cript-json.ts b/scripts/typescript/src/utilities/cript-json.ts similarity index 100% rename from scripts/typescript/typescript_scripts/AFRL/src/utils/cript-json.ts rename to scripts/typescript/src/utilities/cript-json.ts diff --git a/scripts/typescript/src/utilities/index.ts b/scripts/typescript/src/utilities/index.ts new file mode 100644 index 0000000..c45fbbb --- /dev/null +++ b/scripts/typescript/src/utilities/index.ts @@ -0,0 +1,3 @@ +export * from './cript-json'; +export * from './output_dir_path'; +export * from './write_json_helper'; \ No newline at end of file diff --git a/scripts/typescript/typescript_scripts/AFRL/src/utils/path.ts b/scripts/typescript/src/utilities/output_dir_path.ts similarity index 73% rename from scripts/typescript/typescript_scripts/AFRL/src/utils/path.ts rename to scripts/typescript/src/utilities/output_dir_path.ts index 77970f6..ca8f777 100644 --- a/scripts/typescript/typescript_scripts/AFRL/src/utils/path.ts +++ b/scripts/typescript/src/utilities/output_dir_path.ts @@ -1,4 +1,4 @@ -import { resolve } from 'src/utils/path' +import { resolve } from 'path' const package_directory_path = resolve(); export const output_dir_path = resolve(package_directory_path, './out/'); \ No newline at end of file diff --git a/scripts/typescript/typescript_scripts/AFRL/src/utils/file.ts b/scripts/typescript/src/utilities/write_json_helper.ts similarity index 89% rename from scripts/typescript/typescript_scripts/AFRL/src/utils/file.ts rename to scripts/typescript/src/utilities/write_json_helper.ts index 24b82d0..163d88c 100644 --- a/scripts/typescript/typescript_scripts/AFRL/src/utils/file.ts +++ b/scripts/typescript/src/utilities/write_json_helper.ts @@ -1,6 +1,6 @@ import * as fs from 'fs'; -import * as path from 'src/utils/path'; -import { output_dir_path } from './path'; +import * as path from 'path'; +import { output_dir_path } from './output_dir_path'; import { CriptJSON } from './cript-json'; /** diff --git a/scripts/typescript/typescript_scripts/AFRL/tsconfig.json b/scripts/typescript/tsconfig.json similarity index 96% rename from scripts/typescript/typescript_scripts/AFRL/tsconfig.json rename to scripts/typescript/tsconfig.json index 9d93f42..9eadd15 100644 --- a/scripts/typescript/typescript_scripts/AFRL/tsconfig.json +++ b/scripts/typescript/tsconfig.json @@ -28,9 +28,10 @@ "module": "commonjs", /* Specify what module code is generated. */ "rootDir": "./src", /* Specify the root folder within your source files. */ // "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */ - // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ + //"baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ "paths": { /* Specify a set of entries that re-map imports to additional lookup locations. */ - "@cript": ["./src/types/cript", "./src/types/cript/*"] + "@cript": ["./src/types/cript", "./src/types/cript*"], + "@utilities": ["./src/utilities", "./src/utilities*"] }, // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ // "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */ @@ -106,6 +107,10 @@ /* Completeness */ // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ - "skipLibCheck": true /* Skip type checking all .d.ts files. */ + "skipLibCheck": true, /* Skip type checking all .d.ts files. */ + }, + "ts-node": { + // forward the paths to ts-node (to use @cript or @utilities ) + "require": ["tsconfig-paths/register"] } } diff --git a/scripts/typescript/typescript_scripts/AFRL/README.md b/scripts/typescript/typescript_scripts/AFRL/README.md deleted file mode 100644 index 940d716..0000000 --- a/scripts/typescript/typescript_scripts/AFRL/README.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -layout: default -title: AFRL README.md -published: false ---- - -# AFRL transformation script - -The purpose of this node script is to convert AFRL dataset to a CRIPT compatible JSON. - -# `npm i` - -Will install this npm package and dependencies. - -# Scripts - -- `afrl`: see [readme](src/afrl/README.md) -- `rcbc`: see [readme](src/rcbc/README.md) \ No newline at end of file diff --git a/scripts/typescript/typescript_scripts/afrl.md b/scripts/typescript/typescript_scripts/afrl.md deleted file mode 100644 index 817b193..0000000 --- a/scripts/typescript/typescript_scripts/afrl.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -layout: default -title: Air Force Research Lab TypeScript Script -parent: TypeScript Scripts -grand_parent: CRIPT Scripts ---- - -# Air Force Research Lab TypeScript Script - -This CRIPT Script is written in TypeScript to upload data programmatically to the -[CRIPT platform](https://criptapp.org). The [original script](../../python/AFRL.md) was written in Python, -whereas the [original Python Script](../../python/AFRL.md) was uploading nodes to [CRIPT](https://criptapp.org) -one at a time, the new TypeScript script creates a list of all nodes and uploads them to the API in one request. - -## TypeScript Script - -* [Link to TypeScript source code](https://github.com/C-Accel-CRIPT/criptscripts/tree/master/scripts/typescript/typescript_scripts/AFRL)